// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetPaymentConnector`](crate::operation::get_payment_connector::builders::GetPaymentConnectorFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`payment_manager_id(impl Into<String>)`](crate::operation::get_payment_connector::builders::GetPaymentConnectorFluentBuilder::payment_manager_id) / [`set_payment_manager_id(Option<String>)`](crate::operation::get_payment_connector::builders::GetPaymentConnectorFluentBuilder::set_payment_manager_id):<br>required: **true**<br><p>The unique identifier of the parent payment manager.</p><br>
/// - [`payment_connector_id(impl Into<String>)`](crate::operation::get_payment_connector::builders::GetPaymentConnectorFluentBuilder::payment_connector_id) / [`set_payment_connector_id(Option<String>)`](crate::operation::get_payment_connector::builders::GetPaymentConnectorFluentBuilder::set_payment_connector_id):<br>required: **true**<br><p>The unique identifier of the payment connector to retrieve.</p><br>
/// - On success, responds with [`GetPaymentConnectorOutput`](crate::operation::get_payment_connector::GetPaymentConnectorOutput) with field(s):
/// - [`payment_connector_id(String)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::payment_connector_id): <p>The unique identifier of the payment connector.</p>
/// - [`name(String)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::name): <p>The name of the payment connector.</p>
/// - [`description(Option<String>)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::description): <p>The description of the payment connector.</p>
/// - [`r#type(PaymentConnectorType)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::type): <p>The type of the payment connector, which determines the payment provider integration.</p>
/// - [`credential_provider_configurations(Vec::<CredentialsProviderConfiguration>)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::credential_provider_configurations): <p>The credential provider configurations for the payment connector.</p>
/// - [`created_at(DateTime)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::created_at): <p>The timestamp when the payment connector was created.</p>
/// - [`last_updated_at(DateTime)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::last_updated_at): <p>The timestamp when the payment connector was last updated.</p>
/// - [`status(PaymentConnectorStatus)`](crate::operation::get_payment_connector::GetPaymentConnectorOutput::status): <p>The current status of the payment connector. Possible values include <code>CREATING</code>, <code>READY</code>, <code>UPDATING</code>, <code>DELETING</code>, <code>CREATE_FAILED</code>, <code>UPDATE_FAILED</code>, and <code>DELETE_FAILED</code>.</p>
/// - On failure, responds with [`SdkError<GetPaymentConnectorError>`](crate::operation::get_payment_connector::GetPaymentConnectorError)
pub fn get_payment_connector(&self) -> crate::operation::get_payment_connector::builders::GetPaymentConnectorFluentBuilder {
crate::operation::get_payment_connector::builders::GetPaymentConnectorFluentBuilder::new(self.handle.clone())
}
}