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

The existing association identifier that uniquely identifies the resource * type and storage config for the given instance ID.

*/ inline const Aws::String& GetAssociationId() const{ return m_associationId; } /** *

The existing association identifier that uniquely identifies the resource * type and storage config for the given instance ID.

*/ inline void SetAssociationId(const Aws::String& value) { m_associationId = value; } /** *

The existing association identifier that uniquely identifies the resource * type and storage config for the given instance ID.

*/ inline void SetAssociationId(Aws::String&& value) { m_associationId = std::move(value); } /** *

The existing association identifier that uniquely identifies the resource * type and storage config for the given instance ID.

*/ inline void SetAssociationId(const char* value) { m_associationId.assign(value); } /** *

The existing association identifier that uniquely identifies the resource * type and storage config for the given instance ID.

*/ inline AssociateInstanceStorageConfigResult& WithAssociationId(const Aws::String& value) { SetAssociationId(value); return *this;} /** *

The existing association identifier that uniquely identifies the resource * type and storage config for the given instance ID.

*/ inline AssociateInstanceStorageConfigResult& WithAssociationId(Aws::String&& value) { SetAssociationId(std::move(value)); return *this;} /** *

The existing association identifier that uniquely identifies the resource * type and storage config for the given instance ID.

*/ inline AssociateInstanceStorageConfigResult& WithAssociationId(const char* value) { SetAssociationId(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 AssociateInstanceStorageConfigResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline AssociateInstanceStorageConfigResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline AssociateInstanceStorageConfigResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_associationId; Aws::String m_requestId; }; } // namespace Model } // namespace Connect } // namespace Aws