interface CfnEnvironmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnEnvironmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnEnvironmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnEnvironmentMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnEnvironmentMixinProps |
Properties for CfnEnvironmentPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environment.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 cfnEnvironmentMixinProps: datazone_mixins.CfnEnvironmentMixinProps = {
description: 'description',
domainIdentifier: 'domainIdentifier',
environmentAccountIdentifier: 'environmentAccountIdentifier',
environmentAccountRegion: 'environmentAccountRegion',
environmentProfileIdentifier: 'environmentProfileIdentifier',
environmentRoleArn: 'environmentRoleArn',
glossaryTerms: ['glossaryTerms'],
name: 'name',
projectIdentifier: 'projectIdentifier',
userParameters: [{
name: 'name',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the environment. |
| domain | string | The identifier of the Amazon DataZone domain in which the environment is created. |
| environment | string | The identifier of the AWS account in which an environment exists. |
| environment | string | The AWS Region in which an environment exists. |
| environment | string | The identifier of the environment profile that is used to create this Amazon DataZone environment. |
| environment | string | The ARN of the environment role. |
| glossary | string[] | The glossary terms that can be used in this Amazon DataZone environment. |
| name? | string | The name of the Amazon DataZone environment. |
| project | string | The identifier of the Amazon DataZone project in which this environment is created. |
| user | IResolvable | (IResolvable | Environment)[] | The user parameters of this Amazon DataZone environment. |
description?
Type:
string
(optional)
The description of the environment.
domainIdentifier?
Type:
string
(optional)
The identifier of the Amazon DataZone domain in which the environment is created.
environmentAccountIdentifier?
Type:
string
(optional)
The identifier of the AWS account in which an environment exists.
environmentAccountRegion?
Type:
string
(optional)
The AWS Region in which an environment exists.
environmentProfileIdentifier?
Type:
string
(optional)
The identifier of the environment profile that is used to create this Amazon DataZone environment.
environmentRoleArn?
Type:
string
(optional)
The ARN of the environment role.
glossaryTerms?
Type:
string[]
(optional)
The glossary terms that can be used in this Amazon DataZone environment.
name?
Type:
string
(optional)
The name of the Amazon DataZone environment.
projectIdentifier?
Type:
string
(optional)
The identifier of the Amazon DataZone project in which this environment is created.
userParameters?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The user parameters of this Amazon DataZone environment.

.NET
Go
Java
Python
TypeScript