batchGetSecurityControls
abstract suspend fun batchGetSecurityControls(input: BatchGetSecurityControlsRequest): BatchGetSecurityControlsResponse
Provides details about a batch of security controls for the current Amazon Web Services account and Amazon Web Services Region.
Samples
fun main() {
//sampleStart
// The following example gets details for the specified controls in the current AWS account and AWS
// Region.
val resp = securityHubClient.batchGetSecurityControls {
securityControlIds = listOf<String>(
"ACM.1",
"APIGateway.1"
)
}
//sampleEnd
}