// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetOpenIDConnectProvider`](crate::operation::get_open_id_connect_provider::builders::GetOpenIDConnectProviderFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`open_id_connect_provider_arn(impl Into<String>)`](crate::operation::get_open_id_connect_provider::builders::GetOpenIDConnectProviderFluentBuilder::open_id_connect_provider_arn) / [`set_open_id_connect_provider_arn(Option<String>)`](crate::operation::get_open_id_connect_provider::builders::GetOpenIDConnectProviderFluentBuilder::set_open_id_connect_provider_arn):<br>required: **true**<br><p>The Amazon Resource Name (ARN) of the OIDC provider resource object in IAM to get information for. You can get a list of OIDC provider resource ARNs by using the <code>ListOpenIDConnectProviders</code> operation.</p> <p>For more information about ARNs, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> in the <i>Amazon Web Services General Reference</i>.</p><br>
/// - On success, responds with [`GetOpenIdConnectProviderOutput`](crate::operation::get_open_id_connect_provider::GetOpenIdConnectProviderOutput) with field(s):
/// - [`url(Option<String>)`](crate::operation::get_open_id_connect_provider::GetOpenIdConnectProviderOutput::url): <p>The URL that the IAM OIDC provider resource object is associated with. For more information, see <code>CreateOpenIDConnectProvider</code>.</p>
/// - [`client_id_list(Option<Vec::<String>>)`](crate::operation::get_open_id_connect_provider::GetOpenIdConnectProviderOutput::client_id_list): <p>A list of client IDs (also known as audiences) that are associated with the specified IAM OIDC provider resource object. For more information, see <code>CreateOpenIDConnectProvider</code>.</p>
/// - [`thumbprint_list(Option<Vec::<String>>)`](crate::operation::get_open_id_connect_provider::GetOpenIdConnectProviderOutput::thumbprint_list): <p>A list of certificate thumbprints that are associated with the specified IAM OIDC provider resource object. For more information, see <code>CreateOpenIDConnectProvider</code>. </p>
/// - [`create_date(Option<DateTime>)`](crate::operation::get_open_id_connect_provider::GetOpenIdConnectProviderOutput::create_date): <p>The date and time when the IAM OIDC provider resource object was created in the Amazon Web Services account.</p>
/// - [`tags(Option<Vec::<Tag>>)`](crate::operation::get_open_id_connect_provider::GetOpenIdConnectProviderOutput::tags): <p>A list of tags that are attached to the specified IAM OIDC provider. The returned list of tags is sorted by tag key. For more information about tagging, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html">Tagging IAM resources</a> in the <i>IAM User Guide</i>.</p>
/// - On failure, responds with [`SdkError<GetOpenIDConnectProviderError>`](crate::operation::get_open_id_connect_provider::GetOpenIDConnectProviderError)
pub fn get_open_id_connect_provider(&self) -> crate::operation::get_open_id_connect_provider::builders::GetOpenIDConnectProviderFluentBuilder {
crate::operation::get_open_id_connect_provider::builders::GetOpenIDConnectProviderFluentBuilder::new(self.handle.clone())
}
}