aws-sdk-quicksight 1.136.0

AWS SDK for Amazon QuickSight
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreateSpace`](crate::operation::create_space::builders::CreateSpaceFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the space.</p><br>
    ///   - [`space_id(impl Into<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::space_id) / [`set_space_id(Option<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::set_space_id):<br>required: **true**<br><p>The ID of the space. This ID is unique per Amazon Web Services Region for each Amazon Web Services account.</p><br>
    ///   - [`name(impl Into<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::set_name):<br>required: **true**<br><p>A display name for the space.</p><br>
    ///   - [`description(impl Into<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::description) / [`set_description(Option<String>)`](crate::operation::create_space::builders::CreateSpaceFluentBuilder::set_description):<br>required: **false**<br><p>A description of the space.</p><br>
    /// - On success, responds with [`CreateSpaceOutput`](crate::operation::create_space::CreateSpaceOutput) with field(s):
    ///   - [`space_id(String)`](crate::operation::create_space::CreateSpaceOutput::space_id): <p>The ID of the space.</p>
    ///   - [`space_arn(Option<String>)`](crate::operation::create_space::CreateSpaceOutput::space_arn): <p>The ARN of the space.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::create_space::CreateSpaceOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<CreateSpaceError>`](crate::operation::create_space::CreateSpaceError)
    pub fn create_space(&self) -> crate::operation::create_space::builders::CreateSpaceFluentBuilder {
        crate::operation::create_space::builders::CreateSpaceFluentBuilder::new(self.handle.clone())
    }
}