Show / Hide Table of Contents

Class CfnStackPropsMixin.UserSettingProperty

Specifies an action and whether the action is enabled or disabled for users during their streaming sessions.

Inheritance
object
CfnStackPropsMixin.UserSettingProperty
Implements
CfnStackPropsMixin.IUserSettingProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppStream
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnStackPropsMixin.UserSettingProperty : CfnStackPropsMixin.IUserSettingProperty
Syntax (vb)
Public Class CfnStackPropsMixin.UserSettingProperty Implements CfnStackPropsMixin.IUserSettingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.AppStream;

             var userSettingProperty = new UserSettingProperty {
                 Action = "action",
                 MaximumLength = 123,
                 Permission = "permission"
             };

Synopsis

Constructors

UserSettingProperty()

Specifies an action and whether the action is enabled or disabled for users during their streaming sessions.

Properties

Action

The action that is enabled or disabled.

MaximumLength

Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.

Permission

Indicates whether the action is enabled or disabled.

Constructors

UserSettingProperty()

Specifies an action and whether the action is enabled or disabled for users during their streaming sessions.

public UserSettingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.AppStream;

             var userSettingProperty = new UserSettingProperty {
                 Action = "action",
                 MaximumLength = 123,
                 Permission = "permission"
             };

Properties

Action

The action that is enabled or disabled.

public string? Action { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html#cfn-appstream-stack-usersetting-action

MaximumLength

Specifies the number of characters that can be copied by end users from the local device to the remote session, and to the local device from the remote session.

public double? MaximumLength { get; set; }
Property Value

double?

Remarks

This can be specified only for the CLIPBOARD_COPY_FROM_LOCAL_DEVICE and CLIPBOARD_COPY_TO_LOCAL_DEVICE actions.

This defaults to 20,971,520 (20 MB) when unspecified and the permission is ENABLED . This can't be specified when the permission is DISABLED .

The value can be between 1 and 20,971,520 (20 MB).

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html#cfn-appstream-stack-usersetting-maximumlength

Permission

Indicates whether the action is enabled or disabled.

public string? Permission { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-usersetting.html#cfn-appstream-stack-usersetting-permission

Implements

CfnStackPropsMixin.IUserSettingProperty
Back to top Generated by DocFX