aws_sdk_appfabric/client/get_app_authorization.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 [`GetAppAuthorization`](crate::operation::get_app_authorization::builders::GetAppAuthorizationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`app_bundle_identifier(impl Into<String>)`](crate::operation::get_app_authorization::builders::GetAppAuthorizationFluentBuilder::app_bundle_identifier) / [`set_app_bundle_identifier(Option<String>)`](crate::operation::get_app_authorization::builders::GetAppAuthorizationFluentBuilder::set_app_bundle_identifier):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.</p><br>
7 /// - [`app_authorization_identifier(impl Into<String>)`](crate::operation::get_app_authorization::builders::GetAppAuthorizationFluentBuilder::app_authorization_identifier) / [`set_app_authorization_identifier(Option<String>)`](crate::operation::get_app_authorization::builders::GetAppAuthorizationFluentBuilder::set_app_authorization_identifier):<br>required: **true**<br><p>The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.</p><br>
8 /// - On success, responds with [`GetAppAuthorizationOutput`](crate::operation::get_app_authorization::GetAppAuthorizationOutput) with field(s):
9 /// - [`app_authorization(Option<AppAuthorization>)`](crate::operation::get_app_authorization::GetAppAuthorizationOutput::app_authorization): <p>Contains information about an app authorization.</p>
10 /// - On failure, responds with [`SdkError<GetAppAuthorizationError>`](crate::operation::get_app_authorization::GetAppAuthorizationError)
11 pub fn get_app_authorization(&self) -> crate::operation::get_app_authorization::builders::GetAppAuthorizationFluentBuilder {
12 crate::operation::get_app_authorization::builders::GetAppAuthorizationFluentBuilder::new(self.handle.clone())
13 }
14}