package awsrobomaker // Properties for defining a `CfnFleet`. // // 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" // // cfnFleetProps := &CfnFleetProps{ // Name: jsii.String("name"), // Tags: map[string]*string{ // "tagsKey": jsii.String("tags"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html // type CfnFleetProps struct { // The name of the fleet. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-name // Name *string `field:"optional" json:"name" yaml:"name"` // The list of all tags added to the fleet. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#cfn-robomaker-fleet-tags // Tags *map[string]*string `field:"optional" json:"tags" yaml:"tags"` }