aws-sdk-organizations 1.119.1

AWS SDK for AWS Organizations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeCreateAccountStatus`](crate::operation::describe_create_account_status::builders::DescribeCreateAccountStatusFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`create_account_request_id(impl Into<String>)`](crate::operation::describe_create_account_status::builders::DescribeCreateAccountStatusFluentBuilder::create_account_request_id) / [`set_create_account_request_id(Option<String>)`](crate::operation::describe_create_account_status::builders::DescribeCreateAccountStatusFluentBuilder::set_create_account_request_id):<br>required: **true**<br><p>Specifies the <code>Id</code> value that uniquely identifies the <code>CreateAccount</code> request. You can get the value from the <code>CreateAccountStatus.Id</code> response in an earlier <code>CreateAccount</code> request, or from the <code>ListCreateAccountStatus</code> operation.</p> <p>The <a href="http://wikipedia.org/wiki/regex">regex pattern</a> for a create account request ID string requires "car-" followed by from 8 to 32 lowercase letters or digits.</p><br>
    /// - On success, responds with [`DescribeCreateAccountStatusOutput`](crate::operation::describe_create_account_status::DescribeCreateAccountStatusOutput) with field(s):
    ///   - [`create_account_status(Option<CreateAccountStatus>)`](crate::operation::describe_create_account_status::DescribeCreateAccountStatusOutput::create_account_status): <p>A structure that contains the current status of an account creation request.</p>
    /// - On failure, responds with [`SdkError<DescribeCreateAccountStatusError>`](crate::operation::describe_create_account_status::DescribeCreateAccountStatusError)
    pub fn describe_create_account_status(
        &self,
    ) -> crate::operation::describe_create_account_status::builders::DescribeCreateAccountStatusFluentBuilder {
        crate::operation::describe_create_account_status::builders::DescribeCreateAccountStatusFluentBuilder::new(self.handle.clone())
    }
}