interface CfnDomainMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnDomainMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnDomainMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnDomainMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnDomainMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnDomainMixinProps |
Properties for CfnDomainPropsMixin.
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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const cfnDomainMixinProps: datazone_mixins.CfnDomainMixinProps = {
description: 'description',
domainExecutionRole: 'domainExecutionRole',
domainVersion: 'domainVersion',
kmsKeyIdentifier: 'kmsKeyIdentifier',
name: 'name',
serviceRole: 'serviceRole',
singleSignOn: {
idcInstanceArn: 'idcInstanceArn',
type: 'type',
userAssignment: 'userAssignment',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the Amazon DataZone domain. |
| domain | string | The domain execution role that is created when an Amazon DataZone domain is created. |
| domain | string | The domain version. |
| 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. |
| name? | string | The name of the Amazon DataZone domain. |
| service | string | The service role of the domain. |
| single | IResolvable | Single | The single sign-on details in Amazon DataZone. |
| tags? | Cfn[] | The tags specified for the Amazon DataZone domain. |
description?
Type:
string
(optional)
The description of the Amazon DataZone domain.
domainExecutionRole?
Type:
string
(optional)
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.
domainVersion?
Type:
string
(optional)
The domain version.
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.
name?
Type:
string
(optional)
The name of the Amazon DataZone domain.
serviceRole?
Type:
string
(optional)
The service role of the domain.
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.

.NET
Go
Java
Python
TypeScript