describeNetworkAcls
inline suspend fun Ec2Client.describeNetworkAcls(crossinline block: DescribeNetworkAclsRequest.Builder.() -> Unit): DescribeNetworkAclsResponse
Describes one or more of your network ACLs.
For more information, see Network ACLs in the Amazon VPC User Guide.
Samples
fun main() {
//sampleStart
// This example describes the specified network ACL.
val resp = ec2Client.describeNetworkAcls {
networkAclIds = listOf<String>(
"acl-5fb85d36"
)
}
//sampleEnd
}