/** * 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 ACM { namespace Model { /** */ class DeleteCertificateRequest : public ACMRequest { public: AWS_ACM_API DeleteCertificateRequest(); // 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 "DeleteCertificate"; } AWS_ACM_API Aws::String SerializePayload() const override; AWS_ACM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline const Aws::String& GetCertificateArn() const{ return m_certificateArn; } /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline bool CertificateArnHasBeenSet() const { return m_certificateArnHasBeenSet; } /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline void SetCertificateArn(const Aws::String& value) { m_certificateArnHasBeenSet = true; m_certificateArn = value; } /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline void SetCertificateArn(Aws::String&& value) { m_certificateArnHasBeenSet = true; m_certificateArn = std::move(value); } /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline void SetCertificateArn(const char* value) { m_certificateArnHasBeenSet = true; m_certificateArn.assign(value); } /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline DeleteCertificateRequest& WithCertificateArn(const Aws::String& value) { SetCertificateArn(value); return *this;} /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline DeleteCertificateRequest& WithCertificateArn(Aws::String&& value) { SetCertificateArn(std::move(value)); return *this;} /** *

String that contains the ARN of the ACM certificate to be deleted. This must * be of the form:

* arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012 *

For more information about ARNs, see Amazon * Resource Names (ARNs).

*/ inline DeleteCertificateRequest& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;} private: Aws::String m_certificateArn; bool m_certificateArnHasBeenSet = false; }; } // namespace Model } // namespace ACM } // namespace Aws