Delete Db Proxy
rds_delete_db_proxy | R Documentation |
Deletes an existing DB proxy¶
Description¶
Deletes an existing DB proxy.
Usage¶
Arguments¶
DBProxyName
[required] The name of the DB proxy to delete.
Value¶
A list with the following syntax:
list(
DBProxy = 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"
)
)
)