List Payment Managers
| bedrockagentcorecontrol_list_payment_managers | R Documentation |
Lists all payment managers in the account¶
Description¶
Lists all payment managers in the account.
Usage¶
bedrockagentcorecontrol_list_payment_managers(maxResults, nextToken)
Arguments¶
maxResults |
The maximum number of results to return in the response. If the
total number of results is greater than this value, use the token
returned in the response in the |
nextToken |
If the total number of results is greater than the
|
Value¶
A list with the following syntax:
list(
paymentManagers = list(
list(
paymentManagerArn = "string",
paymentManagerId = "string",
name = "string",
description = "string",
authorizerType = "CUSTOM_JWT"|"AWS_IAM",
roleArn = "string",
status = "CREATING"|"UPDATING"|"DELETING"|"READY"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETE_FAILED",
createdAt = as.POSIXct(
"2015-01-01"
),
lastUpdatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_payment_managers(
maxResults = 123,
nextToken = "string"
)