package awsecs // A key-value pair object. // // 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" // // keyValuePairProperty := &KeyValuePairProperty{ // Name: jsii.String("name"), // Value: jsii.String("value"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-keyvaluepair.html // type CfnTaskDefinition_KeyValuePairProperty struct { // The name of the key-value pair. // // For environment variables, this is the name of the environment variable. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-keyvaluepair.html#cfn-ecs-taskdefinition-keyvaluepair-name // Name *string `field:"optional" json:"name" yaml:"name"` // The value of the key-value pair. // // For environment variables, this is the value of the environment variable. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-taskdefinition-keyvaluepair.html#cfn-ecs-taskdefinition-keyvaluepair-value // Value *string `field:"optional" json:"value" yaml:"value"` }