package awsec2 // Describes a load balancer target group. // // 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" // // targetGroupProperty := &TargetGroupProperty{ // Arn: jsii.String("arn"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-targetgroup.html // type CfnSpotFleet_TargetGroupProperty struct { // The Amazon Resource Name (ARN) of the target group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-targetgroup.html#cfn-ec2-spotfleet-targetgroup-arn // Arn *string `field:"required" json:"arn" yaml:"arn"` }