Show / Hide Table of Contents

Interface ICfnDirectoryConfigMixinProps

Properties for CfnDirectoryConfigPropsMixin.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppStream
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface ICfnDirectoryConfigMixinProps
Syntax (vb)
Public Interface ICfnDirectoryConfigMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appstream-directoryconfig.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 cfnDirectoryConfigMixinProps = new CfnDirectoryConfigMixinProps {
                 CertificateBasedAuthProperties = new CertificateBasedAuthPropertiesProperty {
                     CertificateAuthorityArn = "certificateAuthorityArn",
                     Status = "status"
                 },
                 DirectoryName = "directoryName",
                 OrganizationalUnitDistinguishedNames = new [] { "organizationalUnitDistinguishedNames" },
                 ServiceAccountCredentials = new ServiceAccountCredentialsProperty {
                     AccountName = "accountName",
                     AccountPassword = "accountPassword"
                 }
             };

Synopsis

Properties

CertificateBasedAuthProperties

The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.

DirectoryName

The fully qualified name of the directory (for example, corp.example.com).

OrganizationalUnitDistinguishedNames

The distinguished names of the organizational units for computer accounts.

ServiceAccountCredentials

The credentials for the service account used by the streaming instance to connect to the directory.

Properties

CertificateBasedAuthProperties

The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.

object? CertificateBasedAuthProperties { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnDirectoryConfigPropsMixin.ICertificateBasedAuthPropertiesProperty

DirectoryName

The fully qualified name of the directory (for example, corp.example.com).

string? DirectoryName { get; }
Property Value

string

Remarks

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

OrganizationalUnitDistinguishedNames

The distinguished names of the organizational units for computer accounts.

string[]? OrganizationalUnitDistinguishedNames { get; }
Property Value

string[]

Remarks

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

ServiceAccountCredentials

The credentials for the service account used by the streaming instance to connect to the directory.

object? ServiceAccountCredentials { get; }
Property Value

object

Remarks

Do not use this parameter directly. Use ServiceAccountCredentials as an input parameter with noEcho as shown in the Parameters . For best practices information, see Do Not Embed Credentials in Your Templates .

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

Type union: either IResolvable or CfnDirectoryConfigPropsMixin.IServiceAccountCredentialsProperty

Back to top Generated by DocFX