Show / Hide Table of Contents

Interface CfnStack.IStorageConnectorProperty

A connector that enables persistent storage for users.

Namespace: Amazon.CDK.AWS.AppStream
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnStack.IStorageConnectorProperty
Syntax (vb)
Public Interface CfnStack.IStorageConnectorProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-stack-storageconnector.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 storageConnectorProperty = new StorageConnectorProperty {
                 ConnectorType = "connectorType",

                 // the properties below are optional
                 Domains = new [] { "domains" },
                 ResourceIdentifier = "resourceIdentifier"
             };

Synopsis

Properties

ConnectorType

The type of storage connector.

Domains

The names of the domains for the account.

ResourceIdentifier

The ARN of the storage connector.

Properties

ConnectorType

The type of storage connector.

string ConnectorType { get; }
Property Value

string

Remarks

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

Domains

The names of the domains for the account.

string[]? Domains { get; }
Property Value

string[]

Remarks

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

ResourceIdentifier

The ARN of the storage connector.

string? ResourceIdentifier { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX