interface EnvironmentConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.aws_datazone.CfnProjectProfile.EnvironmentConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnProjectProfile_EnvironmentConfigurationProperty |
![]() | software.amazon.awscdk.services.datazone.CfnProjectProfile.EnvironmentConfigurationProperty |
![]() | aws_cdk.aws_datazone.CfnProjectProfile.EnvironmentConfigurationProperty |
![]() | 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',
id: 'id',
};
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. |
id? | string | The environment ID. |
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.
id?
Type:
string
(optional)
The environment ID.