/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
Name of an existing application.
*/ inline const Aws::String& GetApplicationName() const{ return m_applicationName; } /** *Name of an existing application.
*/ inline bool ApplicationNameHasBeenSet() const { return m_applicationNameHasBeenSet; } /** *Name of an existing application.
*/ inline void SetApplicationName(const Aws::String& value) { m_applicationNameHasBeenSet = true; m_applicationName = value; } /** *Name of an existing application.
*/ inline void SetApplicationName(Aws::String&& value) { m_applicationNameHasBeenSet = true; m_applicationName = std::move(value); } /** *Name of an existing application.
*/ inline void SetApplicationName(const char* value) { m_applicationNameHasBeenSet = true; m_applicationName.assign(value); } /** *Name of an existing application.
*/ inline AddApplicationReferenceDataSourceRequest& WithApplicationName(const Aws::String& value) { SetApplicationName(value); return *this;} /** *Name of an existing application.
*/ inline AddApplicationReferenceDataSourceRequest& WithApplicationName(Aws::String&& value) { SetApplicationName(std::move(value)); return *this;} /** *Name of an existing application.
*/ inline AddApplicationReferenceDataSourceRequest& WithApplicationName(const char* value) { SetApplicationName(value); return *this;} /** *Version of the application for which you are adding the reference data
* source. 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.
Version of the application for which you are adding the reference data
* source. 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.
Version of the application for which you are adding the reference data
* source. 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.
Version of the application for which you are adding the reference data
* source. 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.
The reference data source can be an object in your Amazon S3 bucket. Amazon * Kinesis Analytics reads the object and copies the data into the in-application * table that is created. You provide an S3 bucket, object key name, and the * resulting in-application table that is created. You must also provide an IAM * role with the necessary permissions that Amazon Kinesis Analytics can assume to * read the object from your S3 bucket on your behalf.
*/ inline const ReferenceDataSource& GetReferenceDataSource() const{ return m_referenceDataSource; } /** *The reference data source can be an object in your Amazon S3 bucket. Amazon * Kinesis Analytics reads the object and copies the data into the in-application * table that is created. You provide an S3 bucket, object key name, and the * resulting in-application table that is created. You must also provide an IAM * role with the necessary permissions that Amazon Kinesis Analytics can assume to * read the object from your S3 bucket on your behalf.
*/ inline bool ReferenceDataSourceHasBeenSet() const { return m_referenceDataSourceHasBeenSet; } /** *The reference data source can be an object in your Amazon S3 bucket. Amazon * Kinesis Analytics reads the object and copies the data into the in-application * table that is created. You provide an S3 bucket, object key name, and the * resulting in-application table that is created. You must also provide an IAM * role with the necessary permissions that Amazon Kinesis Analytics can assume to * read the object from your S3 bucket on your behalf.
*/ inline void SetReferenceDataSource(const ReferenceDataSource& value) { m_referenceDataSourceHasBeenSet = true; m_referenceDataSource = value; } /** *The reference data source can be an object in your Amazon S3 bucket. Amazon * Kinesis Analytics reads the object and copies the data into the in-application * table that is created. You provide an S3 bucket, object key name, and the * resulting in-application table that is created. You must also provide an IAM * role with the necessary permissions that Amazon Kinesis Analytics can assume to * read the object from your S3 bucket on your behalf.
*/ inline void SetReferenceDataSource(ReferenceDataSource&& value) { m_referenceDataSourceHasBeenSet = true; m_referenceDataSource = std::move(value); } /** *The reference data source can be an object in your Amazon S3 bucket. Amazon * Kinesis Analytics reads the object and copies the data into the in-application * table that is created. You provide an S3 bucket, object key name, and the * resulting in-application table that is created. You must also provide an IAM * role with the necessary permissions that Amazon Kinesis Analytics can assume to * read the object from your S3 bucket on your behalf.
*/ inline AddApplicationReferenceDataSourceRequest& WithReferenceDataSource(const ReferenceDataSource& value) { SetReferenceDataSource(value); return *this;} /** *The reference data source can be an object in your Amazon S3 bucket. Amazon * Kinesis Analytics reads the object and copies the data into the in-application * table that is created. You provide an S3 bucket, object key name, and the * resulting in-application table that is created. You must also provide an IAM * role with the necessary permissions that Amazon Kinesis Analytics can assume to * read the object from your S3 bucket on your behalf.
*/ inline AddApplicationReferenceDataSourceRequest& WithReferenceDataSource(ReferenceDataSource&& value) { SetReferenceDataSource(std::move(value)); return *this;} private: Aws::String m_applicationName; bool m_applicationNameHasBeenSet = false; long long m_currentApplicationVersionId; bool m_currentApplicationVersionIdHasBeenSet = false; ReferenceDataSource m_referenceDataSource; bool m_referenceDataSourceHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalytics } // namespace Aws