interface CfnStaticIpMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lightsail.Mixins.CfnStaticIpMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslightsail/mixins#CfnStaticIpMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.lightsail.mixins.CfnStaticIpMixinProps |
Python | aws_cdk.mixins_preview.aws_lightsail.mixins.CfnStaticIpMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_lightsail » mixins » CfnStaticIpMixinProps |
Properties for CfnStaticIpPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-staticip.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lightsail_mixins } from '@aws-cdk/mixins-preview/aws-lightsail';
const cfnStaticIpMixinProps: lightsail_mixins.CfnStaticIpMixinProps = {
attachedTo: 'attachedTo',
staticIpName: 'staticIpName',
};
Properties
| Name | Type | Description |
|---|---|---|
| attached | string | The instance that the static IP is attached to. |
| static | string | The name of the static IP. |
attachedTo?
Type:
string
(optional)
The instance that the static IP is attached to.
staticIpName?
Type:
string
(optional)
The name of the static IP.

.NET
Go
Java
Python
TypeScript