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

The name of the connector. The name is unique for each connector registration * in your AWS account.

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

The name of the connector. The name is unique for each connector registration * in your AWS account.

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

The name of the connector. The name is unique for each connector registration * in your AWS 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 connector registration * in your AWS 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 connector registration * in your AWS 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 connector registration * in your AWS account.

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

The name of the connector. The name is unique for each connector registration * in your AWS account.

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

The name of the connector. The name is unique for each connector registration * in your AWS account.

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

A description about the update that you're applying to the connector.

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

A description about the update that you're applying to the connector.

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

A description about the update that you're applying to the connector.

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

A description about the update that you're applying to the connector.

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

A description about the update that you're applying to the connector.

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

A description about the update that you're applying to the connector.

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

A description about the update that you're applying to the connector.

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

A description about the update that you're applying to the connector.

*/ inline UpdateConnectorRegistrationRequest& WithDescription(const char* value) { SetDescription(value); return *this;} inline const ConnectorProvisioningConfig& GetConnectorProvisioningConfig() const{ return m_connectorProvisioningConfig; } inline bool ConnectorProvisioningConfigHasBeenSet() const { return m_connectorProvisioningConfigHasBeenSet; } inline void SetConnectorProvisioningConfig(const ConnectorProvisioningConfig& value) { m_connectorProvisioningConfigHasBeenSet = true; m_connectorProvisioningConfig = value; } inline void SetConnectorProvisioningConfig(ConnectorProvisioningConfig&& value) { m_connectorProvisioningConfigHasBeenSet = true; m_connectorProvisioningConfig = std::move(value); } inline UpdateConnectorRegistrationRequest& WithConnectorProvisioningConfig(const ConnectorProvisioningConfig& value) { SetConnectorProvisioningConfig(value); return *this;} inline UpdateConnectorRegistrationRequest& WithConnectorProvisioningConfig(ConnectorProvisioningConfig&& value) { SetConnectorProvisioningConfig(std::move(value)); return *this;} /** *

The clientToken parameter is an idempotency token. It ensures * that your UpdateConnectorRegistration 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 * UpdateConnectorRegistration. 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 UpdateConnectorRegistration 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 * UpdateConnectorRegistration. 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 UpdateConnectorRegistration 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 * UpdateConnectorRegistration. 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 UpdateConnectorRegistration 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 * UpdateConnectorRegistration. 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 UpdateConnectorRegistration 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 * UpdateConnectorRegistration. 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 UpdateConnectorRegistration 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 * UpdateConnectorRegistration. The token is active for 8 hours.

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

The clientToken parameter is an idempotency token. It ensures * that your UpdateConnectorRegistration 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 * UpdateConnectorRegistration. The token is active for 8 hours.

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

The clientToken parameter is an idempotency token. It ensures * that your UpdateConnectorRegistration 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 * UpdateConnectorRegistration. The token is active for 8 hours.

*/ inline UpdateConnectorRegistrationRequest& 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; ConnectorProvisioningConfig m_connectorProvisioningConfig; bool m_connectorProvisioningConfigHasBeenSet = false; Aws::String m_clientToken; bool m_clientTokenHasBeenSet = false; }; } // namespace Model } // namespace Appflow } // namespace Aws