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 */ 21 class AWS_ROUTE53DOMAINS_API DisableDomainAutoRenewRequest : public Route53DomainsRequest 22 { 23 public: 24 DisableDomainAutoRenewRequest(); 25 26 // Service request name is the Operation name which will send this request out, 27 // each operation should has unique request name, so that we can get operation's name from this request. 28 // Note: this is not true for response, multiple operations may have the same response name, 29 // so we can not get operation's name from response. GetServiceRequestName()30 inline virtual const char* GetServiceRequestName() const override { return "DisableDomainAutoRenew"; } 31 32 Aws::String SerializePayload() const override; 33 34 Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; 35 36 37 /** 38 * <p>The name of the domain that you want to disable automatic renewal for.</p> 39 */ GetDomainName()40 inline const Aws::String& GetDomainName() const{ return m_domainName; } 41 42 /** 43 * <p>The name of the domain that you want to disable automatic renewal for.</p> 44 */ DomainNameHasBeenSet()45 inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } 46 47 /** 48 * <p>The name of the domain that you want to disable automatic renewal for.</p> 49 */ SetDomainName(const Aws::String & value)50 inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } 51 52 /** 53 * <p>The name of the domain that you want to disable automatic renewal for.</p> 54 */ SetDomainName(Aws::String && value)55 inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } 56 57 /** 58 * <p>The name of the domain that you want to disable automatic renewal for.</p> 59 */ SetDomainName(const char * value)60 inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } 61 62 /** 63 * <p>The name of the domain that you want to disable automatic renewal for.</p> 64 */ WithDomainName(const Aws::String & value)65 inline DisableDomainAutoRenewRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} 66 67 /** 68 * <p>The name of the domain that you want to disable automatic renewal for.</p> 69 */ WithDomainName(Aws::String && value)70 inline DisableDomainAutoRenewRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} 71 72 /** 73 * <p>The name of the domain that you want to disable automatic renewal for.</p> 74 */ WithDomainName(const char * value)75 inline DisableDomainAutoRenewRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} 76 77 private: 78 79 Aws::String m_domainName; 80 bool m_domainNameHasBeenSet; 81 }; 82 83 } // namespace Model 84 } // namespace Route53Domains 85 } // namespace Aws 86