Returns information about DB proxies.
rds_describe_db_proxies(DBProxyName, Filters, Marker, MaxRecords)A list with the following syntax:
list(
DBProxies = list(
list(
DBProxyName = "string",
DBProxyArn = "string",
Status = "available"|"modifying"|"incompatible-network"|"insufficient-resource-limits"|"creating"|"deleting"|"suspended"|"suspending"|"reactivating",
EngineFamily = "string",
VpcSecurityGroupIds = list(
"string"
),
VpcSubnetIds = list(
"string"
),
Auth = list(
list(
Description = "string",
UserName = "string",
AuthScheme = "SECRETS",
SecretArn = "string",
IAMAuth = "DISABLED"|"REQUIRED"
)
),
RoleArn = "string",
Endpoint = "string",
RequireTLS = TRUE|FALSE,
IdleClientTimeout = 123,
DebugLogging = TRUE|FALSE,
CreatedDate = as.POSIXct(
"2015-01-01"
),
UpdatedDate = as.POSIXct(
"2015-01-01"
)
)
),
Marker = "string"
)
The name of the DB proxy.
This parameter is not currently supported.
An optional pagination token provided by a previous request. If this
parameter is specified, the response includes only records beyond the
marker, up to the value specified by MaxRecords.
The maximum number of records to include in the response. If more
records exist than the specified MaxRecords value, a pagination token
called a marker is included in the response so that the remaining
results can be retrieved.
Default: 100
Constraints: Minimum 20, maximum 100.
svc$describe_db_proxies(
DBProxyName = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
Marker = "string",
MaxRecords = 123
)