package awsservicecatalog // Properties for defining a `CfnLaunchNotificationConstraint`. // // 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" // // cfnLaunchNotificationConstraintProps := &CfnLaunchNotificationConstraintProps{ // NotificationArns: []*string{ // jsii.String("notificationArns"), // }, // PortfolioId: jsii.String("portfolioId"), // ProductId: jsii.String("productId"), // // // 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-launchnotificationconstraint.html // type CfnLaunchNotificationConstraintProps struct { // The notification ARNs. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-notificationarns // NotificationArns *[]*string `field:"required" json:"notificationArns" yaml:"notificationArns"` // The portfolio identifier. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-portfolioid // PortfolioId *string `field:"required" json:"portfolioId" yaml:"portfolioId"` // The product identifier. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-productid // ProductId *string `field:"required" json:"productId" yaml:"productId"` // The language code. // // - `jp` - Japanese // - `zh` - Chinese. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-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-launchnotificationconstraint.html#cfn-servicecatalog-launchnotificationconstraint-description // Description *string `field:"optional" json:"description" yaml:"description"` }