/** * 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 Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace RoboMaker { namespace Model { /** *

Information about a source configuration.

See Also:

AWS * API Reference

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

The Amazon S3 bucket name.

*/ inline const Aws::String& GetS3Bucket() const{ return m_s3Bucket; } /** *

The Amazon S3 bucket name.

*/ inline bool S3BucketHasBeenSet() const { return m_s3BucketHasBeenSet; } /** *

The Amazon S3 bucket name.

*/ inline void SetS3Bucket(const Aws::String& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = value; } /** *

The Amazon S3 bucket name.

*/ inline void SetS3Bucket(Aws::String&& value) { m_s3BucketHasBeenSet = true; m_s3Bucket = std::move(value); } /** *

The Amazon S3 bucket name.

*/ inline void SetS3Bucket(const char* value) { m_s3BucketHasBeenSet = true; m_s3Bucket.assign(value); } /** *

The Amazon S3 bucket name.

*/ inline SourceConfig& WithS3Bucket(const Aws::String& value) { SetS3Bucket(value); return *this;} /** *

The Amazon S3 bucket name.

*/ inline SourceConfig& WithS3Bucket(Aws::String&& value) { SetS3Bucket(std::move(value)); return *this;} /** *

The Amazon S3 bucket name.

*/ inline SourceConfig& WithS3Bucket(const char* value) { SetS3Bucket(value); return *this;} /** *

The s3 object key.

*/ inline const Aws::String& GetS3Key() const{ return m_s3Key; } /** *

The s3 object key.

*/ inline bool S3KeyHasBeenSet() const { return m_s3KeyHasBeenSet; } /** *

The s3 object key.

*/ inline void SetS3Key(const Aws::String& value) { m_s3KeyHasBeenSet = true; m_s3Key = value; } /** *

The s3 object key.

*/ inline void SetS3Key(Aws::String&& value) { m_s3KeyHasBeenSet = true; m_s3Key = std::move(value); } /** *

The s3 object key.

*/ inline void SetS3Key(const char* value) { m_s3KeyHasBeenSet = true; m_s3Key.assign(value); } /** *

The s3 object key.

*/ inline SourceConfig& WithS3Key(const Aws::String& value) { SetS3Key(value); return *this;} /** *

The s3 object key.

*/ inline SourceConfig& WithS3Key(Aws::String&& value) { SetS3Key(std::move(value)); return *this;} /** *

The s3 object key.

*/ inline SourceConfig& WithS3Key(const char* value) { SetS3Key(value); return *this;} /** *

The target processor architecture for the application.

*/ inline const Architecture& GetArchitecture() const{ return m_architecture; } /** *

The target processor architecture for the application.

*/ inline bool ArchitectureHasBeenSet() const { return m_architectureHasBeenSet; } /** *

The target processor architecture for the application.

*/ inline void SetArchitecture(const Architecture& value) { m_architectureHasBeenSet = true; m_architecture = value; } /** *

The target processor architecture for the application.

*/ inline void SetArchitecture(Architecture&& value) { m_architectureHasBeenSet = true; m_architecture = std::move(value); } /** *

The target processor architecture for the application.

*/ inline SourceConfig& WithArchitecture(const Architecture& value) { SetArchitecture(value); return *this;} /** *

The target processor architecture for the application.

*/ inline SourceConfig& WithArchitecture(Architecture&& value) { SetArchitecture(std::move(value)); return *this;} private: Aws::String m_s3Bucket; bool m_s3BucketHasBeenSet = false; Aws::String m_s3Key; bool m_s3KeyHasBeenSet = false; Architecture m_architecture; bool m_architectureHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws