interface EnvironmentConfigurationUserParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnProject.EnvironmentConfigurationUserParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnProject_EnvironmentConfigurationUserParameterProperty |
Java | software.amazon.awscdk.services.datazone.CfnProject.EnvironmentConfigurationUserParameterProperty |
Python | aws_cdk.aws_datazone.CfnProject.EnvironmentConfigurationUserParameterProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnProject » EnvironmentConfigurationUserParameterProperty |
The environment configuration user parameters.
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 environmentConfigurationUserParameterProperty: datazone.CfnProject.EnvironmentConfigurationUserParameterProperty = {
environmentConfigurationName: 'environmentConfigurationName',
environmentId: 'environmentId',
environmentParameters: [{
name: 'name',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| environment | string | The environment configuration name. |
| environment | string | The ID of the environment. |
| environment | IResolvable | (IResolvable | Environment)[] | The environment parameters. |
environmentConfigurationName?
Type:
string
(optional)
The environment configuration name.
environmentId?
Type:
string
(optional)
The ID of the environment.
environmentParameters?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The environment parameters.

.NET
Go
Java
Python
TypeScript