interface EIPAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EC2.EIPAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsec2#EIPAssociationReference |
Java | software.amazon.awscdk.interfaces.ec2.EIPAssociationReference |
Python | aws_cdk.interfaces.aws_ec2.EIPAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_ec2 » EIPAssociationReference |
A reference to a EIPAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as interfaces_ec2 } from 'aws-cdk-lib/interfaces';
const eIPAssociationReference: interfaces_ec2.EIPAssociationReference = {
eipAssociationId: 'eipAssociationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| eip | string | The Id of the EIPAssociation resource. |
eipAssociationId
Type:
string
The Id of the EIPAssociation resource.

.NET
Go
Java
Python
TypeScript