package awsappstream // Specifies an action and whether the action is enabled or disabled for users during their streaming sessions. // // 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" // // userSettingProperty := &UserSettingProperty{ // Action: jsii.String("action"), // Permission: jsii.String("permission"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html // type CfnStack_UserSettingProperty struct { // The action that is enabled or disabled. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html#cfn-appstream-stack-usersetting-action // Action *string `field:"required" json:"action" yaml:"action"` // Indicates whether the action is enabled or disabled. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html#cfn-appstream-stack-usersetting-permission // Permission *string `field:"required" json:"permission" yaml:"permission"` }