// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetPaymentCredentialProvider`](crate::operation::get_payment_credential_provider::builders::GetPaymentCredentialProviderFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`name(impl Into<String>)`](crate::operation::get_payment_credential_provider::builders::GetPaymentCredentialProviderFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::get_payment_credential_provider::builders::GetPaymentCredentialProviderFluentBuilder::set_name):<br>required: **true**<br><p>The name of the payment credential provider to retrieve.</p><br>
/// - On success, responds with [`GetPaymentCredentialProviderOutput`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput) with field(s):
/// - [`name(String)`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput::name): <p>The name of the payment credential provider.</p>
/// - [`credential_provider_arn(String)`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput::credential_provider_arn): <p>The Amazon Resource Name (ARN) of the payment credential provider.</p>
/// - [`credential_provider_vendor(PaymentCredentialProviderVendorType)`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput::credential_provider_vendor): <p>The vendor type for the payment credential provider.</p>
/// - [`provider_configuration_output(Option<PaymentProviderConfigurationOutput>)`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput::provider_configuration_output): <p>Output configuration (contains secret ARNs, excludes actual secret values).</p>
/// - [`created_time(DateTime)`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput::created_time): <p>The timestamp when the payment credential provider was created.</p>
/// - [`last_updated_time(DateTime)`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput::last_updated_time): <p>The timestamp when the payment credential provider was last updated.</p>
/// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderOutput::tags): <p>The tags associated with the payment credential provider.</p>
/// - On failure, responds with [`SdkError<GetPaymentCredentialProviderError>`](crate::operation::get_payment_credential_provider::GetPaymentCredentialProviderError)
pub fn get_payment_credential_provider(
&self,
) -> crate::operation::get_payment_credential_provider::builders::GetPaymentCredentialProviderFluentBuilder {
crate::operation::get_payment_credential_provider::builders::GetPaymentCredentialProviderFluentBuilder::new(self.handle.clone())
}
}