aws-sdk-quicksight 1.119.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 [`GetFlowPermissions`](crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`aws_account_id(impl Into<String>)`](crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the flow that you are getting permissions for.</p><br>
    ///   - [`flow_id(impl Into<String>)`](crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder::flow_id) / [`set_flow_id(Option<String>)`](crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder::set_flow_id):<br>required: **true**<br><p>The unique identifier of the flow to get permissions from.</p><br>
    /// - On success, responds with [`GetFlowPermissionsOutput`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput) with field(s):
    ///   - [`arn(String)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::arn): <p>The Amazon Resource Name (ARN) of the flow you are getting permissions against.</p>
    ///   - [`flow_id(String)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::flow_id): <p>The unique identifier of the flow with permissions.</p>
    ///   - [`permissions(Vec::<Permission>)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::permissions): <p>A structure that contains the permissions for the flow.</p>
    ///   - [`request_id(Option<String>)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
    ///   - [`status(i32)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::status): <p>The HTTP status of the request.</p>
    /// - On failure, responds with [`SdkError<GetFlowPermissionsError>`](crate::operation::get_flow_permissions::GetFlowPermissionsError)
    pub fn get_flow_permissions(&self) -> crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder {
        crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder::new(self.handle.clone())
    }
}