package awsappstream // Properties for defining a `CfnEntitlement`. // // 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" // // cfnEntitlementProps := &CfnEntitlementProps{ // AppVisibility: jsii.String("appVisibility"), // Attributes: []interface{}{ // &AttributeProperty{ // Name: jsii.String("name"), // Value: jsii.String("value"), // }, // }, // Name: jsii.String("name"), // StackName: jsii.String("stackName"), // // // the properties below are optional // Description: jsii.String("description"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html // type CfnEntitlementProps struct { // Specifies whether to entitle all apps or only selected apps. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-appvisibility // AppVisibility *string `field:"required" json:"appVisibility" yaml:"appVisibility"` // The attributes of the entitlement. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-attributes // Attributes interface{} `field:"required" json:"attributes" yaml:"attributes"` // The name of the entitlement. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-name // Name *string `field:"required" json:"name" yaml:"name"` // The name of the stack. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-stackname // StackName *string `field:"required" json:"stackName" yaml:"stackName"` // The description of the entitlement. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-entitlement.html#cfn-appstream-entitlement-description // Description *string `field:"optional" json:"description" yaml:"description"` }