/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace ACM { namespace Model { /** */ class UpdateCertificateOptionsRequest : public ACMRequest { public: AWS_ACM_API UpdateCertificateOptionsRequest(); // 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 "UpdateCertificateOptions"; } AWS_ACM_API Aws::String SerializePayload() const override; AWS_ACM_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

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

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

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

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

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

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

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

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

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

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

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

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

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

ARN of the requested certificate to update. This must be of the form:

* arn:aws:acm:us-east-1:account:certificate/12345678-1234-1234-1234-123456789012 *

*/ inline UpdateCertificateOptionsRequest& WithCertificateArn(const char* value) { SetCertificateArn(value); return *this;} /** *

Use to update the options for your certificate. Currently, you can specify * whether to add your certificate to a transparency log. Certificate transparency * makes it possible to detect SSL/TLS certificates that have been mistakenly or * maliciously issued. Certificates that have not been logged typically produce an * error message in a browser.

*/ inline const CertificateOptions& GetOptions() const{ return m_options; } /** *

Use to update the options for your certificate. Currently, you can specify * whether to add your certificate to a transparency log. Certificate transparency * makes it possible to detect SSL/TLS certificates that have been mistakenly or * maliciously issued. Certificates that have not been logged typically produce an * error message in a browser.

*/ inline bool OptionsHasBeenSet() const { return m_optionsHasBeenSet; } /** *

Use to update the options for your certificate. Currently, you can specify * whether to add your certificate to a transparency log. Certificate transparency * makes it possible to detect SSL/TLS certificates that have been mistakenly or * maliciously issued. Certificates that have not been logged typically produce an * error message in a browser.

*/ inline void SetOptions(const CertificateOptions& value) { m_optionsHasBeenSet = true; m_options = value; } /** *

Use to update the options for your certificate. Currently, you can specify * whether to add your certificate to a transparency log. Certificate transparency * makes it possible to detect SSL/TLS certificates that have been mistakenly or * maliciously issued. Certificates that have not been logged typically produce an * error message in a browser.

*/ inline void SetOptions(CertificateOptions&& value) { m_optionsHasBeenSet = true; m_options = std::move(value); } /** *

Use to update the options for your certificate. Currently, you can specify * whether to add your certificate to a transparency log. Certificate transparency * makes it possible to detect SSL/TLS certificates that have been mistakenly or * maliciously issued. Certificates that have not been logged typically produce an * error message in a browser.

*/ inline UpdateCertificateOptionsRequest& WithOptions(const CertificateOptions& value) { SetOptions(value); return *this;} /** *

Use to update the options for your certificate. Currently, you can specify * whether to add your certificate to a transparency log. Certificate transparency * makes it possible to detect SSL/TLS certificates that have been mistakenly or * maliciously issued. Certificates that have not been logged typically produce an * error message in a browser.

*/ inline UpdateCertificateOptionsRequest& WithOptions(CertificateOptions&& value) { SetOptions(std::move(value)); return *this;} private: Aws::String m_certificateArn; bool m_certificateArnHasBeenSet = false; CertificateOptions m_options; bool m_optionsHasBeenSet = false; }; } // namespace Model } // namespace ACM } // namespace Aws