interface CfnDomainProps
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_datazone.CfnDomainProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnDomainProps |
![]() | software.amazon.awscdk.services.datazone.CfnDomainProps |
![]() | aws_cdk.aws_datazone.CfnDomainProps |
![]() | aws-cdk-lib » aws_datazone » CfnDomainProps |
Properties for defining a CfnDomain
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-domain.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const cfnDomainProps: datazone.CfnDomainProps = {
domainExecutionRole: 'domainExecutionRole',
name: 'name',
// the properties below are optional
description: 'description',
kmsKeyIdentifier: 'kmsKeyIdentifier',
singleSignOn: {
type: 'type',
userAssignment: 'userAssignment',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
domain | string | The domain execution role that is created when an Amazon DataZone domain is created. |
name | string | The name of the Amazon DataZone domain. |
description? | string | The description of the Amazon DataZone domain. |
kms | string | The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data. |
single | IResolvable | Single | The single sign-on details in Amazon DataZone. |
tags? | Cfn [] | The tags specified for the Amazon DataZone domain. |
domainExecutionRole
Type:
string
The domain execution role that is created when an Amazon DataZone domain is created.
The domain execution role is created in the AWS account that houses the Amazon DataZone domain.
name
Type:
string
The name of the Amazon DataZone domain.
description?
Type:
string
(optional)
The description of the Amazon DataZone domain.
kmsKeyIdentifier?
Type:
string
(optional)
The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
singleSignOn?
Type:
IResolvable
|
Single
(optional)
The single sign-on details in Amazon DataZone.
tags?
Type:
Cfn
[]
(optional)
The tags specified for the Amazon DataZone domain.