package awsgamelift import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnLocation`. // // 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" // // cfnLocationProps := &CfnLocationProps{ // LocationName: jsii.String("locationName"), // // // the properties below are optional // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-location.html // type CfnLocationProps struct { // The location's name. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-location.html#cfn-gamelift-location-locationname // LocationName *string `field:"required" json:"locationName" yaml:"locationName"` // An array of key-value pairs to apply to this resource. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-location.html#cfn-gamelift-location-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }