package awsservicecatalog // Properties for defining a `CfnLaunchTemplateConstraint`. // // 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" // // cfnLaunchTemplateConstraintProps := &CfnLaunchTemplateConstraintProps{ // PortfolioId: jsii.String("portfolioId"), // ProductId: jsii.String("productId"), // Rules: jsii.String("rules"), // // // the properties below are optional // AcceptLanguage: jsii.String("acceptLanguage"), // Description: jsii.String("description"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html // type CfnLaunchTemplateConstraintProps struct { // The portfolio identifier. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-portfolioid // PortfolioId *string `field:"required" json:"portfolioId" yaml:"portfolioId"` // The product identifier. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-productid // ProductId *string `field:"required" json:"productId" yaml:"productId"` // The constraint rules. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-rules // Rules *string `field:"required" json:"rules" yaml:"rules"` // The language code. // // - `jp` - Japanese // - `zh` - Chinese. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-acceptlanguage // AcceptLanguage *string `field:"optional" json:"acceptLanguage" yaml:"acceptLanguage"` // The description of the constraint. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchtemplateconstraint.html#cfn-servicecatalog-launchtemplateconstraint-description // Description *string `field:"optional" json:"description" yaml:"description"` }