Show / Hide Table of Contents

Class CfnStackProps

Properties for defining a CfnStack.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.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.AWS.AppStream;

             var cfnStackProps = new CfnStackProps {
                 AccessEndpoints = new [] { new AccessEndpointProperty {
                     EndpointType = "endpointType",
                     VpceId = "vpceId"
                 } },
                 ApplicationSettings = new ApplicationSettingsProperty {
                     Enabled = false,

                     // the properties below are optional
                     SettingsGroup = "settingsGroup"
                 },
                 AttributesToDelete = new [] { "attributesToDelete" },
                 DeleteStorageConnectors = false,
                 Description = "description",
                 DisplayName = "displayName",
                 EmbedHostDomains = new [] { "embedHostDomains" },
                 FeedbackUrl = "feedbackUrl",
                 Name = "name",
                 RedirectUrl = "redirectUrl",
                 StorageConnectors = new [] { new StorageConnectorProperty {
                     ConnectorType = "connectorType",

                     // the properties below are optional
                     Domains = new [] { "domains" },
                     ResourceIdentifier = "resourceIdentifier"
                 } },
                 StreamingExperienceSettings = new StreamingExperienceSettingsProperty {
                     PreferredProtocol = "preferredProtocol"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 UserSettings = new [] { new UserSettingProperty {
                     Action = "action",
                     Permission = "permission",

                     // the properties below are optional
                     MaximumLength = 123
                 } }
             };

Synopsis

Constructors

CfnStackProps()

Properties for defining a CfnStack.

Properties

AccessEndpoints

The list of virtual private cloud (VPC) interface endpoint objects.

ApplicationSettings

The persistent application settings for users of the stack.

AttributesToDelete

The stack attributes to delete.

DeleteStorageConnectors

This parameter has been deprecated..

Description

The description to display.

DisplayName

The stack name to display.

EmbedHostDomains

The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.

FeedbackUrl

The URL that users are redirected to after they click the Send Feedback link.

Name

The name of the stack.

RedirectUrl

The URL that users are redirected to after their streaming session ends.

StorageConnectors

The storage connectors to enable.

StreamingExperienceSettings

The streaming protocol that you want your stack to prefer.

Tags

An array of key-value pairs.

UserSettings

The actions that are enabled or disabled for users during their streaming sessions.

Constructors

CfnStackProps()

Properties for defining a CfnStack.

public CfnStackProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.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.AWS.AppStream;

             var cfnStackProps = new CfnStackProps {
                 AccessEndpoints = new [] { new AccessEndpointProperty {
                     EndpointType = "endpointType",
                     VpceId = "vpceId"
                 } },
                 ApplicationSettings = new ApplicationSettingsProperty {
                     Enabled = false,

                     // the properties below are optional
                     SettingsGroup = "settingsGroup"
                 },
                 AttributesToDelete = new [] { "attributesToDelete" },
                 DeleteStorageConnectors = false,
                 Description = "description",
                 DisplayName = "displayName",
                 EmbedHostDomains = new [] { "embedHostDomains" },
                 FeedbackUrl = "feedbackUrl",
                 Name = "name",
                 RedirectUrl = "redirectUrl",
                 StorageConnectors = new [] { new StorageConnectorProperty {
                     ConnectorType = "connectorType",

                     // the properties below are optional
                     Domains = new [] { "domains" },
                     ResourceIdentifier = "resourceIdentifier"
                 } },
                 StreamingExperienceSettings = new StreamingExperienceSettingsProperty {
                     PreferredProtocol = "preferredProtocol"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } },
                 UserSettings = new [] { new UserSettingProperty {
                     Action = "action",
                     Permission = "permission",

                     // the properties below are optional
                     MaximumLength = 123
                 } }
             };

Properties

AccessEndpoints

The list of virtual private cloud (VPC) interface endpoint objects.

public object? AccessEndpoints { get; set; }
Property Value

object

Remarks

Users of the stack can connect to AppStream 2.0 only through the specified endpoints.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-accessendpoints

ApplicationSettings

The persistent application settings for users of the stack.

public object? ApplicationSettings { get; set; }
Property Value

object

Remarks

When these settings are enabled, changes that users make to applications and Windows settings are automatically saved after each session and applied to the next session.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-applicationsettings

AttributesToDelete

The stack attributes to delete.

public string[]? AttributesToDelete { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-attributestodelete

DeleteStorageConnectors

This parameter has been deprecated..

public object? DeleteStorageConnectors { get; set; }
Property Value

object

Remarks

Deletes the storage connectors currently enabled for the stack.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-deletestorageconnectors

Description

The description to display.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-description

DisplayName

The stack name to display.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-displayname

EmbedHostDomains

The domains where AppStream 2.0 streaming sessions can be embedded in an iframe. You must approve the domains that you want to host embedded AppStream 2.0 streaming sessions.

public string[]? EmbedHostDomains { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-embedhostdomains

FeedbackUrl

The URL that users are redirected to after they click the Send Feedback link.

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

string

Remarks

If no URL is specified, no Send Feedback link is displayed.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-feedbackurl

Name

The name of the stack.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-name

RedirectUrl

The URL that users are redirected to after their streaming session ends.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-redirecturl

StorageConnectors

The storage connectors to enable.

public object? StorageConnectors { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-storageconnectors

StreamingExperienceSettings

The streaming protocol that you want your stack to prefer.

public object? StreamingExperienceSettings { get; set; }
Property Value

object

Remarks

This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-streamingexperiencesettings

Tags

An array of key-value pairs.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-tags

UserSettings

The actions that are enabled or disabled for users during their streaming sessions.

public object? UserSettings { get; set; }
Property Value

object

Remarks

By default, these actions are enabled.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-stack.html#cfn-appstream-stack-usersettings

Implements

ICfnStackProps
Back to top Generated by DocFX