/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Route53 { namespace Model { /** *

A request to update the comment for a hosted zone.

See Also:

* AWS * API Reference

*/ class UpdateHostedZoneCommentRequest : public Route53Request { public: AWS_ROUTE53_API UpdateHostedZoneCommentRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "UpdateHostedZoneComment"; } AWS_ROUTE53_API Aws::String SerializePayload() const override; /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline UpdateHostedZoneCommentRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline UpdateHostedZoneCommentRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The ID for the hosted zone that you want to update the comment for.

*/ inline UpdateHostedZoneCommentRequest& WithId(const char* value) { SetId(value); return *this;} /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline const Aws::String& GetComment() const{ return m_comment; } /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline bool CommentHasBeenSet() const { return m_commentHasBeenSet; } /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline void SetComment(const Aws::String& value) { m_commentHasBeenSet = true; m_comment = value; } /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline void SetComment(Aws::String&& value) { m_commentHasBeenSet = true; m_comment = std::move(value); } /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline void SetComment(const char* value) { m_commentHasBeenSet = true; m_comment.assign(value); } /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline UpdateHostedZoneCommentRequest& WithComment(const Aws::String& value) { SetComment(value); return *this;} /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline UpdateHostedZoneCommentRequest& WithComment(Aws::String&& value) { SetComment(std::move(value)); return *this;} /** *

The new comment for the hosted zone. If you don't specify a value for * Comment, Amazon Route 53 deletes the existing value of the * Comment element, if any.

*/ inline UpdateHostedZoneCommentRequest& WithComment(const char* value) { SetComment(value); return *this;} private: Aws::String m_id; bool m_idHasBeenSet = false; Aws::String m_comment; bool m_commentHasBeenSet = false; }; } // namespace Model } // namespace Route53 } // namespace Aws