/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace IoTSiteWise { namespace Model { /** *

The file in Amazon S3 where your data is saved.

See Also:

* AWS * API Reference

*/ class File { public: AWS_IOTSITEWISE_API File(); AWS_IOTSITEWISE_API File(Aws::Utils::Json::JsonView jsonValue); AWS_IOTSITEWISE_API File& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_IOTSITEWISE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline const Aws::String& GetBucket() const{ return m_bucket; } /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline bool BucketHasBeenSet() const { return m_bucketHasBeenSet; } /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline void SetBucket(const Aws::String& value) { m_bucketHasBeenSet = true; m_bucket = value; } /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline void SetBucket(Aws::String&& value) { m_bucketHasBeenSet = true; m_bucket = std::move(value); } /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline void SetBucket(const char* value) { m_bucketHasBeenSet = true; m_bucket.assign(value); } /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline File& WithBucket(const Aws::String& value) { SetBucket(value); return *this;} /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline File& WithBucket(Aws::String&& value) { SetBucket(std::move(value)); return *this;} /** *

The name of the Amazon S3 bucket from which data is imported.

*/ inline File& WithBucket(const char* value) { SetBucket(value); return *this;} /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline const Aws::String& GetKey() const{ return m_key; } /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline void SetKey(const Aws::String& value) { m_keyHasBeenSet = true; m_key = value; } /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline void SetKey(Aws::String&& value) { m_keyHasBeenSet = true; m_key = std::move(value); } /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline void SetKey(const char* value) { m_keyHasBeenSet = true; m_key.assign(value); } /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline File& WithKey(const Aws::String& value) { SetKey(value); return *this;} /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline File& WithKey(Aws::String&& value) { SetKey(std::move(value)); return *this;} /** *

The key of the Amazon S3 object that contains your data. Each object has a * key that is a unique identifier. Each object has exactly one key.

*/ inline File& WithKey(const char* value) { SetKey(value); return *this;} /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline const Aws::String& GetVersionId() const{ return m_versionId; } /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline bool VersionIdHasBeenSet() const { return m_versionIdHasBeenSet; } /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline void SetVersionId(const Aws::String& value) { m_versionIdHasBeenSet = true; m_versionId = value; } /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline void SetVersionId(Aws::String&& value) { m_versionIdHasBeenSet = true; m_versionId = std::move(value); } /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline void SetVersionId(const char* value) { m_versionIdHasBeenSet = true; m_versionId.assign(value); } /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline File& WithVersionId(const Aws::String& value) { SetVersionId(value); return *this;} /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline File& WithVersionId(Aws::String&& value) { SetVersionId(std::move(value)); return *this;} /** *

The version ID to identify a specific version of the Amazon S3 object that * contains your data.

*/ inline File& WithVersionId(const char* value) { SetVersionId(value); return *this;} private: Aws::String m_bucket; bool m_bucketHasBeenSet = false; Aws::String m_key; bool m_keyHasBeenSet = false; Aws::String m_versionId; bool m_versionIdHasBeenSet = false; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws