/** * 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 MediaStore { namespace Model { class DescribeContainerResult { public: AWS_MEDIASTORE_API DescribeContainerResult(); AWS_MEDIASTORE_API DescribeContainerResult(const Aws::AmazonWebServiceResult& result); AWS_MEDIASTORE_API DescribeContainerResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The name of the queried container.

*/ inline const Container& GetContainer() const{ return m_container; } /** *

The name of the queried container.

*/ inline void SetContainer(const Container& value) { m_container = value; } /** *

The name of the queried container.

*/ inline void SetContainer(Container&& value) { m_container = std::move(value); } /** *

The name of the queried container.

*/ inline DescribeContainerResult& WithContainer(const Container& value) { SetContainer(value); return *this;} /** *

The name of the queried container.

*/ inline DescribeContainerResult& WithContainer(Container&& value) { SetContainer(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 DescribeContainerResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeContainerResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeContainerResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Container m_container; Aws::String m_requestId; }; } // namespace Model } // namespace MediaStore } // namespace Aws