describeServerlessV2PlatformVersions

abstract suspend fun describeServerlessV2PlatformVersions(input: DescribeServerlessV2PlatformVersionsRequest = DescribeServerlessV2PlatformVersionsRequest { }): DescribeServerlessV2PlatformVersionsResponse

Describes the properties of specific platform versions for Aurora Serverless v2.

Samples


fun main() { 
   //sampleStart 
   // The following example displays details about each of the serverless platform versions for the
// specified DB engine.
val resp = rdsClient.describeServerlessV2PlatformVersions {
    engine = "aurora-mysql"
} 
   //sampleEnd
}