Interface CfnStack.ElasticIpProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStack.ElasticIpProperty.Jsii$Proxy
Enclosing class:
CfnStack

@Stability(Stable) public static interface CfnStack.ElasticIpProperty extends software.amazon.jsii.JsiiSerializable
Describes an Elastic IP address.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.opsworks.*;
 ElasticIpProperty elasticIpProperty = ElasticIpProperty.builder()
         .ip("ip")
         // the properties below are optional
         .name("name")
         .build();