/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace KinesisVideo { namespace Model { class DescribeMediaStorageConfigurationResult { public: AWS_KINESISVIDEO_API DescribeMediaStorageConfigurationResult(); AWS_KINESISVIDEO_API DescribeMediaStorageConfigurationResult(const Aws::AmazonWebServiceResult& result); AWS_KINESISVIDEO_API DescribeMediaStorageConfigurationResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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

*/ inline const MediaStorageConfiguration& GetMediaStorageConfiguration() const{ return m_mediaStorageConfiguration; } /** *

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

*/ inline void SetMediaStorageConfiguration(const MediaStorageConfiguration& value) { m_mediaStorageConfiguration = value; } /** *

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

*/ inline void SetMediaStorageConfiguration(MediaStorageConfiguration&& value) { m_mediaStorageConfiguration = std::move(value); } /** *

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

*/ inline DescribeMediaStorageConfigurationResult& WithMediaStorageConfiguration(const MediaStorageConfiguration& value) { SetMediaStorageConfiguration(value); return *this;} /** *

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

*/ inline DescribeMediaStorageConfigurationResult& WithMediaStorageConfiguration(MediaStorageConfiguration&& value) { SetMediaStorageConfiguration(std::move(value)); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline DescribeMediaStorageConfigurationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeMediaStorageConfigurationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeMediaStorageConfigurationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: MediaStorageConfiguration m_mediaStorageConfiguration; Aws::String m_requestId; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws