aws_sdk_quicksight/client/get_flow_permissions.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 [`GetFlowPermissions`](crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`GetFlowPermissionsOutput`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput) with field(s):
9 /// - [`arn(String)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::arn): <p>The Amazon Resource Name (ARN) of the flow you are getting permissions against.</p>
10 /// - [`flow_id(String)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::flow_id): <p>The unique identifier of the flow with permissions.</p>
11 /// - [`permissions(Vec::<Permission>)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::permissions): <p>A structure that contains the permissions for the flow.</p>
12 /// - [`request_id(Option<String>)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
13 /// - [`status(i32)`](crate::operation::get_flow_permissions::GetFlowPermissionsOutput::status): <p>The HTTP status of the request.</p>
14 /// - On failure, responds with [`SdkError<GetFlowPermissionsError>`](crate::operation::get_flow_permissions::GetFlowPermissionsError)
15 pub fn get_flow_permissions(&self) -> crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder {
16 crate::operation::get_flow_permissions::builders::GetFlowPermissionsFluentBuilder::new(self.handle.clone())
17 }
18}