interface EnvironmentConfigurationParametersDetailsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnProjectProfilePropsMixin.EnvironmentConfigurationParametersDetailsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnProjectProfilePropsMixin_EnvironmentConfigurationParametersDetailsProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnProjectProfilePropsMixin.EnvironmentConfigurationParametersDetailsProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnProjectProfilePropsMixin.EnvironmentConfigurationParametersDetailsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnProjectProfilePropsMixin » EnvironmentConfigurationParametersDetailsProperty |
The details of the environment configuration parameter.
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 environmentConfigurationParametersDetailsProperty: datazone_mixins.CfnProjectProfilePropsMixin.EnvironmentConfigurationParametersDetailsProperty = {
parameterOverrides: [{
isEditable: false,
name: 'name',
value: 'value',
}],
resolvedParameters: [{
isEditable: false,
name: 'name',
value: 'value',
}],
ssmPath: 'ssmPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | IResolvable | (IResolvable | Environment)[] | The parameter overrides. |
| resolved | IResolvable | (IResolvable | Environment)[] | The resolved environment configuration parameters. |
| ssm | string | Ssm path environment configuration parameters. |
parameterOverrides?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The parameter overrides.
resolvedParameters?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The resolved environment configuration parameters.
ssmPath?
Type:
string
(optional)
Ssm path environment configuration parameters.

.NET
Go
Java
Python
TypeScript