List Gateways
| bedrockagentcorecontrol_list_gateways | R Documentation |
Lists all gateways in the account¶
Description¶
Lists all gateways in the account.
Usage¶
bedrockagentcorecontrol_list_gateways(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(
items = list(
list(
gatewayId = "string",
name = "string",
status = "CREATING"|"UPDATING"|"UPDATE_UNSUCCESSFUL"|"DELETING"|"READY"|"FAILED",
description = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
),
authorizerType = "CUSTOM_JWT"|"AWS_IAM"|"NONE"|"AUTHENTICATE_ONLY",
protocolType = "MCP"
)
),
nextToken = "string"
)
Request syntax¶
svc$list_gateways(
maxResults = 123,
nextToken = "string"
)