Describe Db Proxies
rds_describe_db_proxies | R Documentation |
Returns information about DB proxies¶
Description¶
Returns information about DB proxies.
Usage¶
Arguments¶
DBProxyName
The name of the DB proxy. If you omit this parameter, the output includes information about all DB proxies owned by your Amazon Web Services account ID.
Filters
This parameter is not currently supported.
Marker
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
.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.
Value¶
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",
VpcId = "string",
VpcSecurityGroupIds = list(
"string"
),
VpcSubnetIds = list(
"string"
),
Auth = list(
list(
Description = "string",
UserName = "string",
AuthScheme = "SECRETS",
SecretArn = "string",
IAMAuth = "DISABLED"|"REQUIRED"|"ENABLED",
ClientPasswordAuthType = "MYSQL_NATIVE_PASSWORD"|"POSTGRES_SCRAM_SHA_256"|"POSTGRES_MD5"|"SQL_SERVER_AUTHENTICATION"
)
),
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"
)