interface ElasticIpProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpsWorks.CfnStack.ElasticIpProperty |
Java | software.amazon.awscdk.services.opsworks.CfnStack.ElasticIpProperty |
Python | aws_cdk.aws_opsworks.CfnStack.ElasticIpProperty |
TypeScript | @aws-cdk/aws-opsworks » CfnStack » ElasticIpProperty |
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 * as opsworks from '@aws-cdk/aws-opsworks';
const elasticIpProperty: opsworks.CfnStack.ElasticIpProperty = {
ip: 'ip',
// the properties below are optional
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| ip | string | The IP address. |
| name? | string | The name, which can be a maximum of 32 characters. |
ip
Type:
string
The IP address.
name?
Type:
string
(optional)
The name, which can be a maximum of 32 characters.

.NET
Java
Python
TypeScript