aws_sdk_bedrockagentcorecontrol/client/get_payment_manager.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`GetPaymentManager`](crate::operation::get_payment_manager::builders::GetPaymentManagerFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`payment_manager_id(impl Into<String>)`](crate::operation::get_payment_manager::builders::GetPaymentManagerFluentBuilder::payment_manager_id) / [`set_payment_manager_id(Option<String>)`](crate::operation::get_payment_manager::builders::GetPaymentManagerFluentBuilder::set_payment_manager_id):<br>required: **true**<br><p>The unique identifier of the payment manager to retrieve.</p><br>
7 /// - On success, responds with [`GetPaymentManagerOutput`](crate::operation::get_payment_manager::GetPaymentManagerOutput) with field(s):
8 /// - [`payment_manager_arn(String)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::payment_manager_arn): <p>The Amazon Resource Name (ARN) of the payment manager.</p>
9 /// - [`payment_manager_id(String)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::payment_manager_id): <p>The unique identifier of the payment manager.</p>
10 /// - [`name(String)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::name): <p>The name of the payment manager.</p>
11 /// - [`description(Option<String>)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::description): <p>The description of the payment manager.</p>
12 /// - [`authorizer_type(PaymentsAuthorizerType)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::authorizer_type): <p>The type of authorizer used by the payment manager.</p> <ul> <li> <p><code>CUSTOM_JWT</code> - Authorize with a bearer token.</p></li> <li> <p><code>AWS_IAM</code> - Authorize with your Amazon Web Services IAM credentials.</p></li> </ul>
13 /// - [`authorizer_configuration(Option<AuthorizerConfiguration>)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::authorizer_configuration): <p>Represents inbound authorization configuration options used to authenticate incoming requests.</p>
14 /// - [`role_arn(String)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::role_arn): <p>The Amazon Resource Name (ARN) of the IAM role associated with the payment manager.</p>
15 /// - [`workload_identity_details(Option<WorkloadIdentityDetails>)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::workload_identity_details): <p>The information about the workload identity.</p>
16 /// - [`created_at(DateTime)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::created_at): <p>The timestamp when the payment manager was created.</p>
17 /// - [`last_updated_at(DateTime)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::last_updated_at): <p>The timestamp when the payment manager was last updated.</p>
18 /// - [`status(PaymentManagerStatus)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::status): <p>The current status of the payment manager. 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>
19 /// - [`tags(Option<HashMap::<String, String>>)`](crate::operation::get_payment_manager::GetPaymentManagerOutput::tags): <p>The tags associated with the payment manager.</p>
20 /// - On failure, responds with [`SdkError<GetPaymentManagerError>`](crate::operation::get_payment_manager::GetPaymentManagerError)
21 pub fn get_payment_manager(&self) -> crate::operation::get_payment_manager::builders::GetPaymentManagerFluentBuilder {
22 crate::operation::get_payment_manager::builders::GetPaymentManagerFluentBuilder::new(self.handle.clone())
23 }
24}