/** * 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 KinesisAnalyticsV2 { namespace Model { /** */ class DeleteApplicationReferenceDataSourceRequest : public KinesisAnalyticsV2Request { public: AWS_KINESISANALYTICSV2_API DeleteApplicationReferenceDataSourceRequest(); // 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 "DeleteApplicationReferenceDataSource"; } 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 DeleteApplicationReferenceDataSourceRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;} /** *

The name of an existing application.

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

The name of an existing application.

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

The current application version. 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.

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

The current application version. 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.

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

The current application version. 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.

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

The current application version. 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.

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

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline const Aws::String& GetReferenceId() const{ return m_referenceId; } /** *

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline bool ReferenceIdHasBeenSet() const { return m_referenceIdHasBeenSet; } /** *

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline void SetReferenceId(const Aws::String& value) { m_referenceIdHasBeenSet = true; m_referenceId = value; } /** *

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline void SetReferenceId(Aws::String&& value) { m_referenceIdHasBeenSet = true; m_referenceId = std::move(value); } /** *

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline void SetReferenceId(const char* value) { m_referenceIdHasBeenSet = true; m_referenceId.assign(value); } /** *

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(const Aws::String& value) { SetReferenceId(value); return *this;} /** *

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(Aws::String&& value) { SetReferenceId(std::move(value)); return *this;} /** *

The ID of the reference data source. When you add a reference data source to * your application using the AddApplicationReferenceDataSource, Kinesis * Data Analytics assigns an ID. You can use the DescribeApplication * operation to get the reference ID.

*/ inline DeleteApplicationReferenceDataSourceRequest& WithReferenceId(const char* value) { SetReferenceId(value); return *this;} private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; long long m_currentApplicationVersionId; bool m_currentApplicationVersionIdHasBeenSet = false; Aws::String m_referenceId; bool m_referenceIdHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws