describeCustomerGateways

Describes one or more of your VPN customer gateways.

For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.

Samples


fun main() { 
   //sampleStart 
   // This example describes the specified customer gateway.
val resp = ec2Client.describeCustomerGateways {
    customerGatewayIds = listOf<String>(
        "cgw-0e11f167"
    )
} 
   //sampleEnd
}