/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains the results of a successful call to the
* DescribeDBClusterSnapshotAttributes API action. Manual DB cluster
* snapshot attributes are used to authorize other Amazon accounts to copy or
* restore a manual DB cluster snapshot. For more information, see the
* ModifyDBClusterSnapshotAttribute API action.See Also:
* AWS
* API Reference
The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline const Aws::String& GetDBClusterSnapshotIdentifier() const{ return m_dBClusterSnapshotIdentifier; } /** *The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline bool DBClusterSnapshotIdentifierHasBeenSet() const { return m_dBClusterSnapshotIdentifierHasBeenSet; } /** *The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline void SetDBClusterSnapshotIdentifier(const Aws::String& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = value; } /** *The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline void SetDBClusterSnapshotIdentifier(Aws::String&& value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier = std::move(value); } /** *The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline void SetDBClusterSnapshotIdentifier(const char* value) { m_dBClusterSnapshotIdentifierHasBeenSet = true; m_dBClusterSnapshotIdentifier.assign(value); } /** *The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline DBClusterSnapshotAttributesResult& WithDBClusterSnapshotIdentifier(const Aws::String& value) { SetDBClusterSnapshotIdentifier(value); return *this;} /** *The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline DBClusterSnapshotAttributesResult& WithDBClusterSnapshotIdentifier(Aws::String&& value) { SetDBClusterSnapshotIdentifier(std::move(value)); return *this;} /** *The identifier of the manual DB cluster snapshot that the attributes apply * to.
*/ inline DBClusterSnapshotAttributesResult& WithDBClusterSnapshotIdentifier(const char* value) { SetDBClusterSnapshotIdentifier(value); return *this;} /** *The list of attributes and values for the manual DB cluster snapshot.
*/ inline const Aws::VectorThe list of attributes and values for the manual DB cluster snapshot.
*/ inline bool DBClusterSnapshotAttributesHasBeenSet() const { return m_dBClusterSnapshotAttributesHasBeenSet; } /** *The list of attributes and values for the manual DB cluster snapshot.
*/ inline void SetDBClusterSnapshotAttributes(const Aws::VectorThe list of attributes and values for the manual DB cluster snapshot.
*/ inline void SetDBClusterSnapshotAttributes(Aws::VectorThe list of attributes and values for the manual DB cluster snapshot.
*/ inline DBClusterSnapshotAttributesResult& WithDBClusterSnapshotAttributes(const Aws::VectorThe list of attributes and values for the manual DB cluster snapshot.
*/ inline DBClusterSnapshotAttributesResult& WithDBClusterSnapshotAttributes(Aws::VectorThe list of attributes and values for the manual DB cluster snapshot.
*/ inline DBClusterSnapshotAttributesResult& AddDBClusterSnapshotAttributes(const DBClusterSnapshotAttribute& value) { m_dBClusterSnapshotAttributesHasBeenSet = true; m_dBClusterSnapshotAttributes.push_back(value); return *this; } /** *The list of attributes and values for the manual DB cluster snapshot.
*/ inline DBClusterSnapshotAttributesResult& AddDBClusterSnapshotAttributes(DBClusterSnapshotAttribute&& value) { m_dBClusterSnapshotAttributesHasBeenSet = true; m_dBClusterSnapshotAttributes.push_back(std::move(value)); return *this; } private: Aws::String m_dBClusterSnapshotIdentifier; bool m_dBClusterSnapshotIdentifierHasBeenSet = false; Aws::Vector