This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-kinesisanalytics/include/aws/kinesisanalytics/model/S3ReferenceDataSourceDescription.h

194 lines
6.5 KiB
C
Raw Normal View History

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/kinesisanalytics/KinesisAnalytics_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace KinesisAnalytics
{
namespace Model
{
/**
* <p>Provides the bucket name and object key name that stores the reference
* data.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/kinesisanalytics-2015-08-14/S3ReferenceDataSourceDescription">AWS
* API Reference</a></p>
*/
class AWS_KINESISANALYTICS_API S3ReferenceDataSourceDescription
{
public:
S3ReferenceDataSourceDescription();
S3ReferenceDataSourceDescription(Aws::Utils::Json::JsonView jsonValue);
S3ReferenceDataSourceDescription& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline const Aws::String& GetBucketARN() const{ return m_bucketARN; }
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline bool BucketARNHasBeenSet() const { return m_bucketARNHasBeenSet; }
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline void SetBucketARN(const Aws::String& value) { m_bucketARNHasBeenSet = true; m_bucketARN = value; }
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline void SetBucketARN(Aws::String&& value) { m_bucketARNHasBeenSet = true; m_bucketARN = std::move(value); }
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline void SetBucketARN(const char* value) { m_bucketARNHasBeenSet = true; m_bucketARN.assign(value); }
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline S3ReferenceDataSourceDescription& WithBucketARN(const Aws::String& value) { SetBucketARN(value); return *this;}
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline S3ReferenceDataSourceDescription& WithBucketARN(Aws::String&& value) { SetBucketARN(std::move(value)); return *this;}
/**
* <p>Amazon Resource Name (ARN) of the S3 bucket.</p>
*/
inline S3ReferenceDataSourceDescription& WithBucketARN(const char* value) { SetBucketARN(value); return *this;}
/**
* <p>Amazon S3 object key name.</p>
*/
inline const Aws::String& GetFileKey() const{ return m_fileKey; }
/**
* <p>Amazon S3 object key name.</p>
*/
inline bool FileKeyHasBeenSet() const { return m_fileKeyHasBeenSet; }
/**
* <p>Amazon S3 object key name.</p>
*/
inline void SetFileKey(const Aws::String& value) { m_fileKeyHasBeenSet = true; m_fileKey = value; }
/**
* <p>Amazon S3 object key name.</p>
*/
inline void SetFileKey(Aws::String&& value) { m_fileKeyHasBeenSet = true; m_fileKey = std::move(value); }
/**
* <p>Amazon S3 object key name.</p>
*/
inline void SetFileKey(const char* value) { m_fileKeyHasBeenSet = true; m_fileKey.assign(value); }
/**
* <p>Amazon S3 object key name.</p>
*/
inline S3ReferenceDataSourceDescription& WithFileKey(const Aws::String& value) { SetFileKey(value); return *this;}
/**
* <p>Amazon S3 object key name.</p>
*/
inline S3ReferenceDataSourceDescription& WithFileKey(Aws::String&& value) { SetFileKey(std::move(value)); return *this;}
/**
* <p>Amazon S3 object key name.</p>
*/
inline S3ReferenceDataSourceDescription& WithFileKey(const char* value) { SetFileKey(value); return *this;}
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline const Aws::String& GetReferenceRoleARN() const{ return m_referenceRoleARN; }
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline bool ReferenceRoleARNHasBeenSet() const { return m_referenceRoleARNHasBeenSet; }
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline void SetReferenceRoleARN(const Aws::String& value) { m_referenceRoleARNHasBeenSet = true; m_referenceRoleARN = value; }
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline void SetReferenceRoleARN(Aws::String&& value) { m_referenceRoleARNHasBeenSet = true; m_referenceRoleARN = std::move(value); }
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline void SetReferenceRoleARN(const char* value) { m_referenceRoleARNHasBeenSet = true; m_referenceRoleARN.assign(value); }
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline S3ReferenceDataSourceDescription& WithReferenceRoleARN(const Aws::String& value) { SetReferenceRoleARN(value); return *this;}
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline S3ReferenceDataSourceDescription& WithReferenceRoleARN(Aws::String&& value) { SetReferenceRoleARN(std::move(value)); return *this;}
/**
* <p>ARN of the IAM role that Amazon Kinesis Analytics can assume to read the
* Amazon S3 object on your behalf to populate the in-application reference
* table.</p>
*/
inline S3ReferenceDataSourceDescription& WithReferenceRoleARN(const char* value) { SetReferenceRoleARN(value); return *this;}
private:
Aws::String m_bucketARN;
bool m_bucketARNHasBeenSet;
Aws::String m_fileKey;
bool m_fileKeyHasBeenSet;
Aws::String m_referenceRoleARN;
bool m_referenceRoleARNHasBeenSet;
};
} // namespace Model
} // namespace KinesisAnalytics
} // namespace Aws