interface StaticIpReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Lightsail.StaticIpReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awslightsail#StaticIpReference |
Java | software.amazon.awscdk.interfaces.lightsail.StaticIpReference |
Python | aws_cdk.interfaces.aws_lightsail.StaticIpReference |
TypeScript | aws-cdk-lib » interfaces » aws_lightsail » StaticIpReference |
A reference to a StaticIp resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lightsail as interfaces_lightsail } from 'aws-cdk-lib/interfaces';
const staticIpReference: interfaces_lightsail.StaticIpReference = {
staticIpArn: 'staticIpArn',
staticIpName: 'staticIpName',
};
Properties
| Name | Type | Description |
|---|---|---|
| static | string | The ARN of the StaticIp resource. |
| static | string | The StaticIpName of the StaticIp resource. |
staticIpArn
Type:
string
The ARN of the StaticIp resource.
staticIpName
Type:
string
The StaticIpName of the StaticIp resource.

.NET
Go
Java
Python
TypeScript