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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStack.ElasticIpPropertystatic final classAn implementation forCfnStack.ElasticIpProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIp
The IP address. -
getName
The name, which can be a maximum of 32 characters. -
builder
- Returns:
- a
CfnStack.ElasticIpProperty.BuilderofCfnStack.ElasticIpProperty
-