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

A structure that encapsulates, or contains, the media storage configuration * properties.

See Also:

AWS * API Reference

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

The type of the associated resource for the kinesis video stream.

*/ inline const Aws::String& GetType() const{ return m_type; } /** *

The type of the associated resource for the kinesis video stream.

*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *

The type of the associated resource for the kinesis video stream.

*/ inline void SetType(const Aws::String& value) { m_typeHasBeenSet = true; m_type = value; } /** *

The type of the associated resource for the kinesis video stream.

*/ inline void SetType(Aws::String&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *

The type of the associated resource for the kinesis video stream.

*/ inline void SetType(const char* value) { m_typeHasBeenSet = true; m_type.assign(value); } /** *

The type of the associated resource for the kinesis video stream.

*/ inline MappedResourceConfigurationListItem& WithType(const Aws::String& value) { SetType(value); return *this;} /** *

The type of the associated resource for the kinesis video stream.

*/ inline MappedResourceConfigurationListItem& WithType(Aws::String&& value) { SetType(std::move(value)); return *this;} /** *

The type of the associated resource for the kinesis video stream.

*/ inline MappedResourceConfigurationListItem& WithType(const char* value) { SetType(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline const Aws::String& GetARN() const{ return m_aRN; } /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline bool ARNHasBeenSet() const { return m_aRNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline void SetARN(const Aws::String& value) { m_aRNHasBeenSet = true; m_aRN = value; } /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline void SetARN(Aws::String&& value) { m_aRNHasBeenSet = true; m_aRN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline void SetARN(const char* value) { m_aRNHasBeenSet = true; m_aRN.assign(value); } /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline MappedResourceConfigurationListItem& WithARN(const Aws::String& value) { SetARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline MappedResourceConfigurationListItem& WithARN(Aws::String&& value) { SetARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the Kinesis Video Stream resource, * associated with the stream.

*/ inline MappedResourceConfigurationListItem& WithARN(const char* value) { SetARN(value); return *this;} private: Aws::String m_type; bool m_typeHasBeenSet = false; Aws::String m_aRN; bool m_aRNHasBeenSet = false; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws