interface CfnEnvironmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnEnvironmentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnEnvironmentProps |
Java | software.amazon.awscdk.services.datazone.CfnEnvironmentProps |
Python | aws_cdk.aws_datazone.CfnEnvironmentProps |
TypeScript | aws-cdk-lib » aws_datazone » CfnEnvironmentProps |
Properties for defining a CfnEnvironment.
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 { aws_datazone as datazone } from 'aws-cdk-lib';
const cfnEnvironmentProps: datazone.CfnEnvironmentProps = {
domainIdentifier: 'domainIdentifier',
name: 'name',
projectIdentifier: 'projectIdentifier',
// the properties below are optional
description: 'description',
environmentAccountIdentifier: 'environmentAccountIdentifier',
environmentAccountRegion: 'environmentAccountRegion',
environmentProfileIdentifier: 'environmentProfileIdentifier',
environmentRoleArn: 'environmentRoleArn',
glossaryTerms: ['glossaryTerms'],
userParameters: [{
name: 'name',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The identifier of the Amazon DataZone domain in which the environment is created. |
| name | string | The name of the Amazon DataZone environment. |
| project | string | The identifier of the Amazon DataZone project in which this environment is created. |
| description? | string | The description of the environment. |
| 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. |
| user | IResolvable | (IResolvable | Environment)[] | The user parameters of this Amazon DataZone environment. |
domainIdentifier
Type:
string
The identifier of the Amazon DataZone domain in which the environment is created.
name
Type:
string
The name of the Amazon DataZone environment.
projectIdentifier
Type:
string
The identifier of the Amazon DataZone project in which this environment is created.
description?
Type:
string
(optional)
The description of the environment.
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.
userParameters?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The user parameters of this Amazon DataZone environment.

.NET
Go
Java
Python
TypeScript