// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetApiKeyCredentialProvider`](crate::operation::get_api_key_credential_provider::builders::GetApiKeyCredentialProviderFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`name(impl Into<String>)`](crate::operation::get_api_key_credential_provider::builders::GetApiKeyCredentialProviderFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_api_key_credential_provider::builders::GetApiKeyCredentialProviderFluentBuilder::set_name):<br>required: **true**<br><p>The name of the API key credential provider to retrieve.</p><br>
/// - On success, responds with [`GetApiKeyCredentialProviderOutput`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput) with field(s):
/// - [`api_key_secret_arn(Option<Secret>)`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput::api_key_secret_arn): <p>The Amazon Resource Name (ARN) of the API key secret in AWS Secrets Manager.</p>
/// - [`api_key_secret_json_key(Option<String>)`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput::api_key_secret_json_key): <p>The JSON key used to extract the API key value from the AWS Secrets Manager secret.</p>
/// - [`api_key_secret_source(Option<SecretSourceType>)`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput::api_key_secret_source): <p>The source type of the API key secret. Either <code>MANAGED</code> if the secret is managed by the service, or <code>EXTERNAL</code> if managed by the user in AWS Secrets Manager.</p>
/// - [`name(String)`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput::name): <p>The name of the API key credential provider.</p>
/// - [`credential_provider_arn(String)`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput::credential_provider_arn): <p>The Amazon Resource Name (ARN) of the API key credential provider.</p>
/// - [`created_time(DateTime)`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput::created_time): <p>The timestamp when the API key credential provider was created.</p>
/// - [`last_updated_time(DateTime)`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderOutput::last_updated_time): <p>The timestamp when the API key credential provider was last updated.</p>
/// - On failure, responds with [`SdkError<GetApiKeyCredentialProviderError>`](crate::operation::get_api_key_credential_provider::GetApiKeyCredentialProviderError)
pub fn get_api_key_credential_provider(
&self,
) -> crate::operation::get_api_key_credential_provider::builders::GetApiKeyCredentialProviderFluentBuilder {
crate::operation::get_api_key_credential_provider::builders::GetApiKeyCredentialProviderFluentBuilder::new(self.handle.clone())
}
}