Show / Hide Table of Contents

Interface ICfnDomainProps

Properties for defining a CfnDomain.

Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDomainProps
Syntax (vb)
Public Interface ICfnDomainProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.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.DataZone;

             var cfnDomainProps = new CfnDomainProps {
                 Name = "name",

                 // the properties below are optional
                 Description = "description",
                 DomainExecutionRole = "domainExecutionRole",
                 DomainVersion = "domainVersion",
                 KmsKeyIdentifier = "kmsKeyIdentifier",
                 ServiceRole = "serviceRole",
                 SingleSignOn = new SingleSignOnProperty {
                     IdcInstanceArn = "idcInstanceArn",
                     Type = "type",
                     UserAssignment = "userAssignment"
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Description

The description of the Amazon DataZone domain.

DomainExecutionRole

The domain execution role that is created when an Amazon DataZone domain is created.

DomainVersion

The domain version.

KmsKeyIdentifier

The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.

Name

The name of the Amazon DataZone domain.

ServiceRole

The service role of the domain.

SingleSignOn

The single sign-on details in Amazon DataZone.

Tags

The tags specified for the Amazon DataZone domain.

Properties

Description

The description of the Amazon DataZone domain.

string? Description { get; }
Property Value

string

Remarks

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

DomainExecutionRole

The domain execution role that is created when an Amazon DataZone domain is created.

string? DomainExecutionRole { get; }
Property Value

string

Remarks

The domain execution role is created in the AWS account that houses the Amazon DataZone domain.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#cfn-datazone-domain-domainexecutionrole

DomainVersion

The domain version.

string? DomainVersion { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#cfn-datazone-domain-domainversion

KmsKeyIdentifier

The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.

string? KmsKeyIdentifier { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#cfn-datazone-domain-kmskeyidentifier

Name

The name of the Amazon DataZone domain.

string Name { get; }
Property Value

string

Remarks

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

ServiceRole

The service role of the domain.

string? ServiceRole { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#cfn-datazone-domain-servicerole

SingleSignOn

The single sign-on details in Amazon DataZone.

object? SingleSignOn { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html#cfn-datazone-domain-singlesignon

Type union: either IResolvable or CfnDomain.ISingleSignOnProperty

Tags

The tags specified for the Amazon DataZone domain.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX