/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace Appflow { namespace Model { /** */ class RegisterConnectorRequest : public AppflowRequest { public: AWS_APPFLOW_API RegisterConnectorRequest(); // 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 "RegisterConnector"; } AWS_APPFLOW_API Aws::String SerializePayload() const override; /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline const Aws::String& GetConnectorLabel() const{ return m_connectorLabel; } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline bool ConnectorLabelHasBeenSet() const { return m_connectorLabelHasBeenSet; } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline void SetConnectorLabel(const Aws::String& value) { m_connectorLabelHasBeenSet = true; m_connectorLabel = value; } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline void SetConnectorLabel(Aws::String&& value) { m_connectorLabelHasBeenSet = true; m_connectorLabel = std::move(value); } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline void SetConnectorLabel(const char* value) { m_connectorLabelHasBeenSet = true; m_connectorLabel.assign(value); } /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline RegisterConnectorRequest& WithConnectorLabel(const Aws::String& value) { SetConnectorLabel(value); return *this;} /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline RegisterConnectorRequest& WithConnectorLabel(Aws::String&& value) { SetConnectorLabel(std::move(value)); return *this;} /** *

The name of the connector. The name is unique for each * ConnectorRegistration in your Amazon Web Services account.

*/ inline RegisterConnectorRequest& WithConnectorLabel(const char* value) { SetConnectorLabel(value); return *this;} /** *

A description about the connector that's being registered.

*/ inline const Aws::String& GetDescription() const{ return m_description; } /** *

A description about the connector that's being registered.

*/ inline bool DescriptionHasBeenSet() const { return m_descriptionHasBeenSet; } /** *

A description about the connector that's being registered.

*/ inline void SetDescription(const Aws::String& value) { m_descriptionHasBeenSet = true; m_description = value; } /** *

A description about the connector that's being registered.

*/ inline void SetDescription(Aws::String&& value) { m_descriptionHasBeenSet = true; m_description = std::move(value); } /** *

A description about the connector that's being registered.

*/ inline void SetDescription(const char* value) { m_descriptionHasBeenSet = true; m_description.assign(value); } /** *

A description about the connector that's being registered.

*/ inline RegisterConnectorRequest& WithDescription(const Aws::String& value) { SetDescription(value); return *this;} /** *

A description about the connector that's being registered.

*/ inline RegisterConnectorRequest& WithDescription(Aws::String&& value) { SetDescription(std::move(value)); return *this;} /** *

A description about the connector that's being registered.

*/ inline RegisterConnectorRequest& WithDescription(const char* value) { SetDescription(value); return *this;} /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline const ConnectorProvisioningType& GetConnectorProvisioningType() const{ return m_connectorProvisioningType; } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline bool ConnectorProvisioningTypeHasBeenSet() const { return m_connectorProvisioningTypeHasBeenSet; } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline void SetConnectorProvisioningType(const ConnectorProvisioningType& value) { m_connectorProvisioningTypeHasBeenSet = true; m_connectorProvisioningType = value; } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline void SetConnectorProvisioningType(ConnectorProvisioningType&& value) { m_connectorProvisioningTypeHasBeenSet = true; m_connectorProvisioningType = std::move(value); } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline RegisterConnectorRequest& WithConnectorProvisioningType(const ConnectorProvisioningType& value) { SetConnectorProvisioningType(value); return *this;} /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline RegisterConnectorRequest& WithConnectorProvisioningType(ConnectorProvisioningType&& value) { SetConnectorProvisioningType(std::move(value)); return *this;} /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline const ConnectorProvisioningConfig& GetConnectorProvisioningConfig() const{ return m_connectorProvisioningConfig; } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline bool ConnectorProvisioningConfigHasBeenSet() const { return m_connectorProvisioningConfigHasBeenSet; } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline void SetConnectorProvisioningConfig(const ConnectorProvisioningConfig& value) { m_connectorProvisioningConfigHasBeenSet = true; m_connectorProvisioningConfig = value; } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline void SetConnectorProvisioningConfig(ConnectorProvisioningConfig&& value) { m_connectorProvisioningConfigHasBeenSet = true; m_connectorProvisioningConfig = std::move(value); } /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline RegisterConnectorRequest& WithConnectorProvisioningConfig(const ConnectorProvisioningConfig& value) { SetConnectorProvisioningConfig(value); return *this;} /** *

The provisioning type of the connector. Currently the only supported value is * LAMBDA.

*/ inline RegisterConnectorRequest& WithConnectorProvisioningConfig(ConnectorProvisioningConfig&& value) { SetConnectorProvisioningConfig(std::move(value)); return *this;} /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline const Aws::String& GetClientToken() const{ return m_clientToken; } /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline bool ClientTokenHasBeenSet() const { return m_clientTokenHasBeenSet; } /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline void SetClientToken(const Aws::String& value) { m_clientTokenHasBeenSet = true; m_clientToken = value; } /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline void SetClientToken(Aws::String&& value) { m_clientTokenHasBeenSet = true; m_clientToken = std::move(value); } /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline void SetClientToken(const char* value) { m_clientTokenHasBeenSet = true; m_clientToken.assign(value); } /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline RegisterConnectorRequest& WithClientToken(const Aws::String& value) { SetClientToken(value); return *this;} /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline RegisterConnectorRequest& WithClientToken(Aws::String&& value) { SetClientToken(std::move(value)); return *this;} /** *

The clientToken parameter is an idempotency token. It ensures * that your RegisterConnector request completes only once. You choose * the value to pass. For example, if you don't receive a response from your * request, you can safely retry the request with the same clientToken * parameter value.

If you omit a clientToken value, the Amazon * Web Services SDK that you are using inserts a value for you. This way, the SDK * can safely retry requests multiple times after a network error. You must provide * your own value for other use cases.

If you specify input parameters that * differ from your first request, an error occurs. If you use a different value * for clientToken, Amazon AppFlow considers it a new call to * RegisterConnector. The token is active for 8 hours.

*/ inline RegisterConnectorRequest& WithClientToken(const char* value) { SetClientToken(value); return *this;} private: Aws::String m_connectorLabel; bool m_connectorLabelHasBeenSet = false; Aws::String m_description; bool m_descriptionHasBeenSet = false; ConnectorProvisioningType m_connectorProvisioningType; bool m_connectorProvisioningTypeHasBeenSet = false; ConnectorProvisioningConfig m_connectorProvisioningConfig; bool m_connectorProvisioningConfigHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws