Struct aws_sdk_acm::input::delete_certificate_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeleteCertificateInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn certificate_arn(self, input: impl Into<String>) -> Self
pub fn certificate_arn(self, input: impl Into<String>) -> Self
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).
sourcepub fn set_certificate_arn(self, input: Option<String>) -> Self
pub fn set_certificate_arn(self, input: Option<String>) -> Self
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).
sourcepub fn build(self) -> Result<DeleteCertificateInput, BuildError>
pub fn build(self) -> Result<DeleteCertificateInput, BuildError>
Consumes the builder and constructs a DeleteCertificateInput
.