aws-sdk-bedrockagentcorecontrol 1.53.0

AWS SDK for Amazon Bedrock AgentCore Control
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`CreatePaymentCredentialProvider`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`name(impl Into<String>)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::set_name):<br>required: **true**<br>Unique name for the payment credential provider<br>
    ///   - [`credential_provider_vendor(PaymentCredentialProviderVendorType)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::credential_provider_vendor) / [`set_credential_provider_vendor(Option<PaymentCredentialProviderVendorType>)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::set_credential_provider_vendor):<br>required: **true**<br>The vendor type (e.g., CoinbaseCDP)<br>
    ///   - [`provider_configuration_input(PaymentProviderConfigurationInput)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::provider_configuration_input) / [`set_provider_configuration_input(Option<PaymentProviderConfigurationInput>)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::set_provider_configuration_input):<br>required: **true**<br>Configuration specific to the vendor, including API credentials<br>
    ///   - [`tags(impl Into<String>, impl Into<String>)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::tags) / [`set_tags(Option<HashMap::<String, String>>)`](crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::set_tags):<br>required: **false**<br>Optional tags for resource organization<br>
    /// - On success, responds with [`CreatePaymentCredentialProviderOutput`](crate::operation::create_payment_credential_provider::CreatePaymentCredentialProviderOutput) with field(s):
    ///   - [`name(String)`](crate::operation::create_payment_credential_provider::CreatePaymentCredentialProviderOutput::name): <p>The name of the created payment credential provider.</p>
    ///   - [`credential_provider_vendor(PaymentCredentialProviderVendorType)`](crate::operation::create_payment_credential_provider::CreatePaymentCredentialProviderOutput::credential_provider_vendor): Supported vendor types for payment providers using non-standard auth protocols
    ///   - [`credential_provider_arn(String)`](crate::operation::create_payment_credential_provider::CreatePaymentCredentialProviderOutput::credential_provider_arn): <p>The Amazon Resource Name (ARN) of the created payment credential provider.</p>
    ///   - [`provider_configuration_output(Option<PaymentProviderConfigurationOutput>)`](crate::operation::create_payment_credential_provider::CreatePaymentCredentialProviderOutput::provider_configuration_output): Output configuration (contains secret ARNs, excludes actual secret values)
    /// - On failure, responds with [`SdkError<CreatePaymentCredentialProviderError>`](crate::operation::create_payment_credential_provider::CreatePaymentCredentialProviderError)
    pub fn create_payment_credential_provider(
        &self,
    ) -> crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder {
        crate::operation::create_payment_credential_provider::builders::CreatePaymentCredentialProviderFluentBuilder::new(self.handle.clone())
    }
}