1 /** 2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 3 * SPDX-License-Identifier: Apache-2.0. 4 */ 5 6 #pragma once 7 #include <aws/route53domains/Route53Domains_EXPORTS.h> 8 #include <aws/route53domains/Route53DomainsRequest.h> 9 #include <aws/core/utils/memory/stl/AWSString.h> 10 #include <utility> 11 12 namespace Aws 13 { 14 namespace Route53Domains 15 { 16 namespace Model 17 { 18 19 /** 20 * <p>The CancelDomainTransferToAnotherAwsAccount request includes the following 21 * element.</p><p><h3>See Also:</h3> <a 22 * href="http://docs.aws.amazon.com/goto/WebAPI/route53domains-2014-05-15/CancelDomainTransferToAnotherAwsAccountRequest">AWS 23 * API Reference</a></p> 24 */ 25 class AWS_ROUTE53DOMAINS_API CancelDomainTransferToAnotherAwsAccountRequest : public Route53DomainsRequest 26 { 27 public: 28 CancelDomainTransferToAnotherAwsAccountRequest(); 29 30 // Service request name is the Operation name which will send this request out, 31 // each operation should has unique request name, so that we can get operation's name from this request. 32 // Note: this is not true for response, multiple operations may have the same response name, 33 // so we can not get operation's name from response. GetServiceRequestName()34 inline virtual const char* GetServiceRequestName() const override { return "CancelDomainTransferToAnotherAwsAccount"; } 35 36 Aws::String SerializePayload() const override; 37 38 Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; 39 40 41 /** 42 * <p>The name of the domain for which you want to cancel the transfer to another 43 * AWS account.</p> 44 */ GetDomainName()45 inline const Aws::String& GetDomainName() const{ return m_domainName; } 46 47 /** 48 * <p>The name of the domain for which you want to cancel the transfer to another 49 * AWS account.</p> 50 */ DomainNameHasBeenSet()51 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } 52 53 /** 54 * <p>The name of the domain for which you want to cancel the transfer to another 55 * AWS account.</p> 56 */ SetDomainName(const Aws::String & value)57 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } 58 59 /** 60 * <p>The name of the domain for which you want to cancel the transfer to another 61 * AWS account.</p> 62 */ SetDomainName(Aws::String && value)63 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } 64 65 /** 66 * <p>The name of the domain for which you want to cancel the transfer to another 67 * AWS account.</p> 68 */ SetDomainName(const char * value)69 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } 70 71 /** 72 * <p>The name of the domain for which you want to cancel the transfer to another 73 * AWS account.</p> 74 */ WithDomainName(const Aws::String & value)75 inline CancelDomainTransferToAnotherAwsAccountRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} 76 77 /** 78 * <p>The name of the domain for which you want to cancel the transfer to another 79 * AWS account.</p> 80 */ WithDomainName(Aws::String && value)81 inline CancelDomainTransferToAnotherAwsAccountRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} 82 83 /** 84 * <p>The name of the domain for which you want to cancel the transfer to another 85 * AWS account.</p> 86 */ WithDomainName(const char * value)87 inline CancelDomainTransferToAnotherAwsAccountRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} 88 89 private: 90 91 Aws::String m_domainName; 92 bool m_domainNameHasBeenSet; 93 }; 94 95 } // namespace Model 96 } // namespace Route53Domains 97 } // namespace Aws 98