Describe Serverless V2 Platform Versions
| rds_describe_serverless_v2_platform_versions | R Documentation |
Describes the properties of specific platform versions for Aurora Serverless v2¶
Description¶
Describes the properties of specific platform versions for Aurora Serverless v2.
Usage¶
rds_describe_serverless_v2_platform_versions(
ServerlessV2PlatformVersion, Engine, Filters, DefaultOnly, IncludeAll,
MaxRecords, Marker)
Arguments¶
ServerlessV2PlatformVersion |
A specific platform version to return details for. Example: |
Engine |
The database engine to return platform version details for. Valid Values:
|
Filters |
This parameter isn't currently supported. |
DefaultOnly |
Specifies whether to return only the default platform versions for each engine. The default platform version is the version used for new DB clusters. |
IncludeAll |
Specifies whether to also include platform versions which are no longer in use. |
MaxRecords |
The maximum number of records to include in the response. If more
than the Default: 20 Constraints: Minimum 1, maximum 200. |
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
|
Value¶
A list with the following syntax:
list(
Marker = "string",
ServerlessV2PlatformVersions = list(
list(
ServerlessV2PlatformVersion = "string",
ServerlessV2PlatformVersionDescription = "string",
Engine = "string",
ServerlessV2FeaturesSupport = list(
MinCapacity = 123.0,
MaxCapacity = 123.0
),
Status = "string",
IsDefault = TRUE|FALSE
)
)
)
Request syntax¶
svc$describe_serverless_v2_platform_versions(
ServerlessV2PlatformVersion = "string",
Engine = "string",
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
DefaultOnly = TRUE|FALSE,
IncludeAll = TRUE|FALSE,
MaxRecords = 123,
Marker = "string"
)