aws_sdk_acm/client/describe_acme_external_account_binding.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 [`DescribeAcmeExternalAccountBinding`](crate::operation::describe_acme_external_account_binding::builders::DescribeAcmeExternalAccountBindingFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`acme_external_account_binding_arn(impl Into<String>)`](crate::operation::describe_acme_external_account_binding::builders::DescribeAcmeExternalAccountBindingFluentBuilder::acme_external_account_binding_arn) / [`set_acme_external_account_binding_arn(Option<String>)`](crate::operation::describe_acme_external_account_binding::builders::DescribeAcmeExternalAccountBindingFluentBuilder::set_acme_external_account_binding_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the ACME external account binding.</p><br>
7 /// - On success, responds with [`DescribeAcmeExternalAccountBindingOutput`](crate::operation::describe_acme_external_account_binding::DescribeAcmeExternalAccountBindingOutput) with field(s):
8 /// - [`external_account_binding(Option<AcmeExternalAccountBinding>)`](crate::operation::describe_acme_external_account_binding::DescribeAcmeExternalAccountBindingOutput::external_account_binding): <p>The external account binding details.</p>
9 /// - On failure, responds with [`SdkError<DescribeAcmeExternalAccountBindingError>`](crate::operation::describe_acme_external_account_binding::DescribeAcmeExternalAccountBindingError)
10 pub fn describe_acme_external_account_binding(
11 &self,
12 ) -> crate::operation::describe_acme_external_account_binding::builders::DescribeAcmeExternalAccountBindingFluentBuilder {
13 crate::operation::describe_acme_external_account_binding::builders::DescribeAcmeExternalAccountBindingFluentBuilder::new(self.handle.clone())
14 }
15}