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
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStack.ElasticIpProperty
static final class
An implementation forCfnStack.ElasticIpProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIp
The IP address.- See Also:
-
getName
The name, which can be a maximum of 32 characters.- See Also:
-
builder
- Returns:
- a
CfnStack.ElasticIpProperty.Builder
ofCfnStack.ElasticIpProperty
-