/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace KinesisAnalyticsV2 { namespace Model { /** */ class AddApplicationVpcConfigurationRequest : public KinesisAnalyticsV2Request { public: AWS_KINESISANALYTICSV2_API AddApplicationVpcConfigurationRequest(); // 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 "AddApplicationVpcConfiguration"; } AWS_KINESISANALYTICSV2_API Aws::String SerializePayload() const override; AWS_KINESISANALYTICSV2_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of an existing application.

*/ inline const Aws::String& GetApplicationName() const{ return m_applicationName; } /** *

The name of an existing application.

*/ inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; } /** *

The name of an existing application.

*/ inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; } /** *

The name of an existing application.

*/ inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); } /** *

The name of an existing application.

*/ inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); } /** *

The name of an existing application.

*/ inline AddApplicationVpcConfigurationRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;} /** *

The name of an existing application.

*/ inline AddApplicationVpcConfigurationRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;} /** *

The name of an existing application.

*/ inline AddApplicationVpcConfigurationRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;} /** *

The version of the application to which you want to add the VPC * configuration. You must provide the CurrentApplicationVersionId or * the ConditionalToken. You can use the DescribeApplication * operation to get the current application version. If the version specified is * not the current version, the ConcurrentModificationException is * returned. For better concurrency support, use the ConditionalToken * parameter instead of CurrentApplicationVersionId.

*/ inline long long GetCurrentApplicationVersionId() const{ return m_currentApplicationVersionId; } /** *

The version of the application to which you want to add the VPC * configuration. You must provide the CurrentApplicationVersionId or * the ConditionalToken. You can use the DescribeApplication * operation to get the current application version. If the version specified is * not the current version, the ConcurrentModificationException is * returned. For better concurrency support, use the ConditionalToken * parameter instead of CurrentApplicationVersionId.

*/ inline bool CurrentApplicationVersionIdHasBeenSet() const { return m_currentApplicationVersionIdHasBeenSet; } /** *

The version of the application to which you want to add the VPC * configuration. You must provide the CurrentApplicationVersionId or * the ConditionalToken. You can use the DescribeApplication * operation to get the current application version. If the version specified is * not the current version, the ConcurrentModificationException is * returned. For better concurrency support, use the ConditionalToken * parameter instead of CurrentApplicationVersionId.

*/ inline void SetCurrentApplicationVersionId(long long value) { m_currentApplicationVersionIdHasBeenSet = true; m_currentApplicationVersionId = value; } /** *

The version of the application to which you want to add the VPC * configuration. You must provide the CurrentApplicationVersionId or * the ConditionalToken. You can use the DescribeApplication * operation to get the current application version. If the version specified is * not the current version, the ConcurrentModificationException is * returned. For better concurrency support, use the ConditionalToken * parameter instead of CurrentApplicationVersionId.

*/ inline AddApplicationVpcConfigurationRequest& WithCurrentApplicationVersionId(long long value) { SetCurrentApplicationVersionId(value); return *this;} /** *

Description of the VPC to add to the application.

*/ inline const VpcConfiguration& GetVpcConfiguration() const{ return m_vpcConfiguration; } /** *

Description of the VPC to add to the application.

*/ inline bool VpcConfigurationHasBeenSet() const { return m_vpcConfigurationHasBeenSet; } /** *

Description of the VPC to add to the application.

*/ inline void SetVpcConfiguration(const VpcConfiguration& value) { m_vpcConfigurationHasBeenSet = true; m_vpcConfiguration = value; } /** *

Description of the VPC to add to the application.

*/ inline void SetVpcConfiguration(VpcConfiguration&& value) { m_vpcConfigurationHasBeenSet = true; m_vpcConfiguration = std::move(value); } /** *

Description of the VPC to add to the application.

*/ inline AddApplicationVpcConfigurationRequest& WithVpcConfiguration(const VpcConfiguration& value) { SetVpcConfiguration(value); return *this;} /** *

Description of the VPC to add to the application.

*/ inline AddApplicationVpcConfigurationRequest& WithVpcConfiguration(VpcConfiguration&& value) { SetVpcConfiguration(std::move(value)); return *this;} /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline const Aws::String& GetConditionalToken() const{ return m_conditionalToken; } /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline bool ConditionalTokenHasBeenSet() const { return m_conditionalTokenHasBeenSet; } /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline void SetConditionalToken(const Aws::String& value) { m_conditionalTokenHasBeenSet = true; m_conditionalToken = value; } /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline void SetConditionalToken(Aws::String&& value) { m_conditionalTokenHasBeenSet = true; m_conditionalToken = std::move(value); } /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline void SetConditionalToken(const char* value) { m_conditionalTokenHasBeenSet = true; m_conditionalToken.assign(value); } /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline AddApplicationVpcConfigurationRequest& WithConditionalToken(const Aws::String& value) { SetConditionalToken(value); return *this;} /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline AddApplicationVpcConfigurationRequest& WithConditionalToken(Aws::String&& value) { SetConditionalToken(std::move(value)); return *this;} /** *

A value you use to implement strong concurrency for application updates. You * must provide the ApplicationVersionID or the * ConditionalToken. You get the application's current * ConditionalToken using DescribeApplication. For better * concurrency support, use the ConditionalToken parameter instead of * CurrentApplicationVersionId.

*/ inline AddApplicationVpcConfigurationRequest& WithConditionalToken(const char* value) { SetConditionalToken(value); return *this;} private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; long long m_currentApplicationVersionId; bool m_currentApplicationVersionIdHasBeenSet = false; VpcConfiguration m_vpcConfiguration; bool m_vpcConfigurationHasBeenSet = false; Aws::String m_conditionalToken; bool m_conditionalTokenHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws