Skip to main content

aws_sdk_acm/client/
revoke_acme_account.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`RevokeAcmeAccount`](crate::operation::revoke_acme_account::builders::RevokeAcmeAccountFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`acme_endpoint_arn(impl Into<String>)`](crate::operation::revoke_acme_account::builders::RevokeAcmeAccountFluentBuilder::acme_endpoint_arn) / [`set_acme_endpoint_arn(Option<String>)`](crate::operation::revoke_acme_account::builders::RevokeAcmeAccountFluentBuilder::set_acme_endpoint_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the ACME endpoint.</p><br>
7    ///   - [`account_url(impl Into<String>)`](crate::operation::revoke_acme_account::builders::RevokeAcmeAccountFluentBuilder::account_url) / [`set_account_url(Option<String>)`](crate::operation::revoke_acme_account::builders::RevokeAcmeAccountFluentBuilder::set_account_url):<br>required: **true**<br><p>The URL of the ACME account to revoke.</p><br>
8    /// - On success, responds with [`RevokeAcmeAccountOutput`](crate::operation::revoke_acme_account::RevokeAcmeAccountOutput)
9    /// - On failure, responds with [`SdkError<RevokeAcmeAccountError>`](crate::operation::revoke_acme_account::RevokeAcmeAccountError)
10    pub fn revoke_acme_account(&self) -> crate::operation::revoke_acme_account::builders::RevokeAcmeAccountFluentBuilder {
11        crate::operation::revoke_acme_account::builders::RevokeAcmeAccountFluentBuilder::new(self.handle.clone())
12    }
13}