interface EnvironmentConfigurationUserParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DataZone.CfnProjectPropsMixin.EnvironmentConfigurationUserParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdatazone#CfnProjectPropsMixin_EnvironmentConfigurationUserParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.datazone.CfnProjectPropsMixin.EnvironmentConfigurationUserParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_datazone.CfnProjectPropsMixin.EnvironmentConfigurationUserParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_datazone » CfnProjectPropsMixin » 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/cfn-property-mixins';
const environmentConfigurationUserParameterProperty: datazone.CfnProjectPropsMixin.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