/** * 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 GroundStation { namespace Model { /** *

Details about an S3 recording Config used in a * contact.

See Also:

AWS * API Reference

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

ARN of the bucket used.

*/ inline const Aws::String& GetBucketArn() const{ return m_bucketArn; } /** *

ARN of the bucket used.

*/ inline bool BucketArnHasBeenSet() const { return m_bucketArnHasBeenSet; } /** *

ARN of the bucket used.

*/ inline void SetBucketArn(const Aws::String& value) { m_bucketArnHasBeenSet = true; m_bucketArn = value; } /** *

ARN of the bucket used.

*/ inline void SetBucketArn(Aws::String&& value) { m_bucketArnHasBeenSet = true; m_bucketArn = std::move(value); } /** *

ARN of the bucket used.

*/ inline void SetBucketArn(const char* value) { m_bucketArnHasBeenSet = true; m_bucketArn.assign(value); } /** *

ARN of the bucket used.

*/ inline S3RecordingDetails& WithBucketArn(const Aws::String& value) { SetBucketArn(value); return *this;} /** *

ARN of the bucket used.

*/ inline S3RecordingDetails& WithBucketArn(Aws::String&& value) { SetBucketArn(std::move(value)); return *this;} /** *

ARN of the bucket used.

*/ inline S3RecordingDetails& WithBucketArn(const char* value) { SetBucketArn(value); return *this;} /** *

Key template used for the S3 Recording Configuration

*/ inline const Aws::String& GetKeyTemplate() const{ return m_keyTemplate; } /** *

Key template used for the S3 Recording Configuration

*/ inline bool KeyTemplateHasBeenSet() const { return m_keyTemplateHasBeenSet; } /** *

Key template used for the S3 Recording Configuration

*/ inline void SetKeyTemplate(const Aws::String& value) { m_keyTemplateHasBeenSet = true; m_keyTemplate = value; } /** *

Key template used for the S3 Recording Configuration

*/ inline void SetKeyTemplate(Aws::String&& value) { m_keyTemplateHasBeenSet = true; m_keyTemplate = std::move(value); } /** *

Key template used for the S3 Recording Configuration

*/ inline void SetKeyTemplate(const char* value) { m_keyTemplateHasBeenSet = true; m_keyTemplate.assign(value); } /** *

Key template used for the S3 Recording Configuration

*/ inline S3RecordingDetails& WithKeyTemplate(const Aws::String& value) { SetKeyTemplate(value); return *this;} /** *

Key template used for the S3 Recording Configuration

*/ inline S3RecordingDetails& WithKeyTemplate(Aws::String&& value) { SetKeyTemplate(std::move(value)); return *this;} /** *

Key template used for the S3 Recording Configuration

*/ inline S3RecordingDetails& WithKeyTemplate(const char* value) { SetKeyTemplate(value); return *this;} private: Aws::String m_bucketArn; bool m_bucketArnHasBeenSet = false; Aws::String m_keyTemplate; bool m_keyTemplateHasBeenSet = false; }; } // namespace Model } // namespace GroundStation } // namespace Aws