aws_sdk_workspacesweb/client/get_identity_provider.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 [`GetIdentityProvider`](crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`identity_provider_arn(impl Into<String>)`](crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder::identity_provider_arn) / [`set_identity_provider_arn(Option<String>)`](crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder::set_identity_provider_arn):<br>required: **true**<br><p>The ARN of the identity provider.</p><br>
7 /// - On success, responds with [`GetIdentityProviderOutput`](crate::operation::get_identity_provider::GetIdentityProviderOutput) with field(s):
8 /// - [`identity_provider(Option<IdentityProvider>)`](crate::operation::get_identity_provider::GetIdentityProviderOutput::identity_provider): <p>The identity provider.</p>
9 /// - On failure, responds with [`SdkError<GetIdentityProviderError>`](crate::operation::get_identity_provider::GetIdentityProviderError)
10 pub fn get_identity_provider(&self) -> crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder {
11 crate::operation::get_identity_provider::builders::GetIdentityProviderFluentBuilder::new(self.handle.clone())
12 }
13}