package awsopsworks // 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 "github.com/aws/aws-cdk-go/awscdk" // // elasticIpProperty := &ElasticIpProperty{ // Ip: jsii.String("ip"), // // // the properties below are optional // Name: jsii.String("name"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-elasticip.html // type CfnStack_ElasticIpProperty struct { // The IP address. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-elasticip.html#cfn-opsworks-stack-elasticip-ip // Ip *string `field:"required" json:"ip" yaml:"ip"` // The name, which can be a maximum of 32 characters. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-stack-elasticip.html#cfn-opsworks-stack-elasticip-name // Name *string `field:"optional" json:"name" yaml:"name"` }