describeDhcpOptions

Describes one or more of your DHCP options sets.

For more information, see DHCP options sets in the Amazon VPC User Guide.

Samples


fun main() { 
   //sampleStart 
   // This example describes the specified DHCP options set.
val resp = ec2Client.describeDhcpOptions {
    dhcpOptionsIds = listOf<String>(
        "dopt-d9070ebb"
    )
} 
   //sampleEnd
}