package awsimagebuilder // Contains a key/value pair that sets the named component parameter. // // 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" // // componentParameterProperty := &ComponentParameterProperty{ // Name: jsii.String("name"), // Value: []*string{ // jsii.String("value"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-componentparameter.html // type CfnContainerRecipe_ComponentParameterProperty struct { // The name of the component parameter to set. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-componentparameter.html#cfn-imagebuilder-containerrecipe-componentparameter-name // Name *string `field:"required" json:"name" yaml:"name"` // Sets the value for the named component parameter. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-containerrecipe-componentparameter.html#cfn-imagebuilder-containerrecipe-componentparameter-value // Value *[]*string `field:"required" json:"value" yaml:"value"` }