package awsservicecatalog // Properties for defining a `CfnAcceptedPortfolioShare`. // // 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" // // cfnAcceptedPortfolioShareProps := &CfnAcceptedPortfolioShareProps{ // PortfolioId: jsii.String("portfolioId"), // // // the properties below are optional // AcceptLanguage: jsii.String("acceptLanguage"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html // type CfnAcceptedPortfolioShareProps struct { // The portfolio identifier. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-portfolioid // PortfolioId *string `field:"required" json:"portfolioId" yaml:"portfolioId"` // The language code. // // - `jp` - Japanese // - `zh` - Chinese. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-acceptedportfolioshare.html#cfn-servicecatalog-acceptedportfolioshare-acceptlanguage // AcceptLanguage *string `field:"optional" json:"acceptLanguage" yaml:"acceptLanguage"` }