aws-sdk-quicksight 1.145.0

AWS SDK for Amazon QuickSight
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListSpaceResources`](crate::operation::list_space_resources::builders::ListSpaceResourcesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::list_space_resources::builders::ListSpaceResourcesFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::list_space_resources::builders::ListSpaceResourcesFluentBuilder::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::list_space_resources::builders::ListSpaceResourcesFluentBuilder::space_id) / [`set_space_id(Option<String>)`](crate::operation::list_space_resources::builders::ListSpaceResourcesFluentBuilder::set_space_id):<br>required: **true**<br><p>The ID of the space that you want to list resources for.</p><br>
    /// - On success, responds with [`ListSpaceResourcesOutput`](crate::operation::list_space_resources::ListSpaceResourcesOutput) with field(s):
    ///   - [`space_id(String)`](crate::operation::list_space_resources::ListSpaceResourcesOutput::space_id): <p>The ID of the space.</p>
    ///   - [`space_arn(Option<String>)`](crate::operation::list_space_resources::ListSpaceResourcesOutput::space_arn): <p>The ARN of the space.</p>
    ///   - [`space_resources(Vec::<SpaceResourceSummary>)`](crate::operation::list_space_resources::ListSpaceResourcesOutput::space_resources): <p>A list of resource summaries in the space.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::list_space_resources::ListSpaceResourcesOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    /// - On failure, responds with [`SdkError<ListSpaceResourcesError>`](crate::operation::list_space_resources::ListSpaceResourcesError)
    pub fn list_space_resources(&self) -> crate::operation::list_space_resources::builders::ListSpaceResourcesFluentBuilder {
        crate::operation::list_space_resources::builders::ListSpaceResourcesFluentBuilder::new(self.handle.clone())
    }
}