/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Athena { namespace Model { /** */ class CreateNotebookRequest : public AthenaRequest { public: AWS_ATHENA_API CreateNotebookRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "CreateNotebook"; } AWS_ATHENA_API Aws::String SerializePayload() const override; AWS_ATHENA_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline const Aws::String& GetWorkGroup() const{ return m_workGroup; } /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline bool WorkGroupHasBeenSet() const { return m_workGroupHasBeenSet; } /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline void SetWorkGroup(const Aws::String& value) { m_workGroupHasBeenSet = true; m_workGroup = value; } /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline void SetWorkGroup(Aws::String&& value) { m_workGroupHasBeenSet = true; m_workGroup = std::move(value); } /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline void SetWorkGroup(const char* value) { m_workGroupHasBeenSet = true; m_workGroup.assign(value); } /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline CreateNotebookRequest& WithWorkGroup(const Aws::String& value) { SetWorkGroup(value); return *this;} /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline CreateNotebookRequest& WithWorkGroup(Aws::String&& value) { SetWorkGroup(std::move(value)); return *this;} /** *

The name of the Spark enabled workgroup in which the notebook will be * created.

*/ inline CreateNotebookRequest& WithWorkGroup(const char* value) { SetWorkGroup(value); return *this;} /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline CreateNotebookRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline CreateNotebookRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the ipynb file to be created in the Spark workgroup, * without the .ipynb extension.

*/ inline CreateNotebookRequest& WithName(const char* value) { SetName(value); return *this;} /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline const Aws::String& GetClientRequestToken() const{ return m_clientRequestToken; } /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline bool ClientRequestTokenHasBeenSet() const { return m_clientRequestTokenHasBeenSet; } /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline void SetClientRequestToken(const Aws::String& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = value; } /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline void SetClientRequestToken(Aws::String&& value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken = std::move(value); } /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline void SetClientRequestToken(const char* value) { m_clientRequestTokenHasBeenSet = true; m_clientRequestToken.assign(value); } /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline CreateNotebookRequest& WithClientRequestToken(const Aws::String& value) { SetClientRequestToken(value); return *this;} /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline CreateNotebookRequest& WithClientRequestToken(Aws::String&& value) { SetClientRequestToken(std::move(value)); return *this;} /** *

A unique case-sensitive string used to ensure the request to create the * notebook is idempotent (executes only once).

This token is * listed as not required because Amazon Web Services SDKs (for example the Amazon * Web Services SDK for Java) auto-generate the token for you. If you are not using * the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide * this token or the action will fail.

*/ inline CreateNotebookRequest& WithClientRequestToken(const char* value) { SetClientRequestToken(value); return *this;} private: Aws::String m_workGroup; bool m_workGroupHasBeenSet = false; Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_clientRequestToken; bool m_clientRequestTokenHasBeenSet = false; }; } // namespace Model } // namespace Athena } // namespace Aws