interface EnvironmentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnProjectProfile.EnvironmentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnProjectProfile_EnvironmentConfigurationProperty |
Java | software.amazon.awscdk.services.datazone.CfnProjectProfile.EnvironmentConfigurationProperty |
Python | aws_cdk.aws_datazone.CfnProjectProfile.EnvironmentConfigurationProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnProjectProfile » EnvironmentConfigurationProperty |
The configuration of an environment.
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 environmentConfigurationProperty: datazone.CfnProjectProfile.EnvironmentConfigurationProperty = {
awsRegion: {
regionName: 'regionName',
},
environmentBlueprintId: 'environmentBlueprintId',
name: 'name',
// the properties below are optional
awsAccount: {
awsAccountId: 'awsAccountId',
},
configurationParameters: {
parameterOverrides: [{
isEditable: false,
name: 'name',
value: 'value',
}],
resolvedParameters: [{
isEditable: false,
name: 'name',
value: 'value',
}],
ssmPath: 'ssmPath',
},
deploymentMode: 'deploymentMode',
deploymentOrder: 123,
description: 'description',
environmentConfigurationId: 'environmentConfigurationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | IResolvable | Region | The AWS Region of the environment. |
| environment | string | The environment blueprint ID. |
| name | string | The environment name. |
| aws | IResolvable | Aws | The AWS account of the environment. |
| configuration | IResolvable | Environment | The configuration parameters of the environment. |
| deployment | string | The deployment mode of the environment. |
| deployment | number | The deployment order of the environment. |
| description? | string | The environment description. |
| environment | string |
awsRegion
Type:
IResolvable | Region
The AWS Region of the environment.
environmentBlueprintId
Type:
string
The environment blueprint ID.
name
Type:
string
The environment name.
awsAccount?
Type:
IResolvable | Aws
(optional)
The AWS account of the environment.
configurationParameters?
Type:
IResolvable | Environment
(optional)
The configuration parameters of the environment.
deploymentMode?
Type:
string
(optional)
The deployment mode of the environment.
deploymentOrder?
Type:
number
(optional)
The deployment order of the environment.
description?
Type:
string
(optional)
The environment description.
environmentConfigurationId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript