describeStandards
abstract suspend fun describeStandards(input: DescribeStandardsRequest = DescribeStandardsRequest { }): DescribeStandardsResponse
Returns a list of the available standards in Security Hub.
For each standard, the results include the standard ARN, the name, and a description.
Samples
fun main() {
//sampleStart
// The following example returns a list of available security standards in Security Hub.
val resp = securityHubClient.describeStandards()
//sampleEnd
}