/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The information for a change request.See Also:
AWS
* API Reference
Optional: Any comments you want to include about a change batch * request.
*/ inline const Aws::String& GetComment() const{ return m_comment; } /** *Optional: Any comments you want to include about a change batch * request.
*/ inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; } /** *Optional: Any comments you want to include about a change batch * request.
*/ inline void SetComment(const Aws::String& value) { m_commentHasBeenSet = true; m_comment = value; } /** *Optional: Any comments you want to include about a change batch * request.
*/ inline void SetComment(Aws::String&& value) { m_commentHasBeenSet = true; m_comment = std::move(value); } /** *Optional: Any comments you want to include about a change batch * request.
*/ inline void SetComment(const char* value) { m_commentHasBeenSet = true; m_comment.assign(value); } /** *Optional: Any comments you want to include about a change batch * request.
*/ inline ChangeBatch& WithComment(const Aws::String& value) { SetComment(value); return *this;} /** *Optional: Any comments you want to include about a change batch * request.
*/ inline ChangeBatch& WithComment(Aws::String&& value) { SetComment(std::move(value)); return *this;} /** *Optional: Any comments you want to include about a change batch * request.
*/ inline ChangeBatch& WithComment(const char* value) { SetComment(value); return *this;} /** *Information about the changes to make to the record sets.
*/ inline const Aws::VectorInformation about the changes to make to the record sets.
*/ inline bool ChangesHasBeenSet() const { return m_changesHasBeenSet; } /** *Information about the changes to make to the record sets.
*/ inline void SetChanges(const Aws::VectorInformation about the changes to make to the record sets.
*/ inline void SetChanges(Aws::VectorInformation about the changes to make to the record sets.
*/ inline ChangeBatch& WithChanges(const Aws::VectorInformation about the changes to make to the record sets.
*/ inline ChangeBatch& WithChanges(Aws::VectorInformation about the changes to make to the record sets.
*/ inline ChangeBatch& AddChanges(const Change& value) { m_changesHasBeenSet = true; m_changes.push_back(value); return *this; } /** *Information about the changes to make to the record sets.
*/ inline ChangeBatch& AddChanges(Change&& value) { m_changesHasBeenSet = true; m_changes.push_back(std::move(value)); return *this; } private: Aws::String m_comment; bool m_commentHasBeenSet = false; Aws::Vector