interface EnvironmentConfigurationParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnProjectProfile.EnvironmentConfigurationParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnProjectProfile_EnvironmentConfigurationParameterProperty |
Java | software.amazon.awscdk.services.datazone.CfnProjectProfile.EnvironmentConfigurationParameterProperty |
Python | aws_cdk.aws_datazone.CfnProjectProfile.EnvironmentConfigurationParameterProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnProjectProfile » EnvironmentConfigurationParameterProperty |
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 { aws_datazone as datazone } from 'aws-cdk-lib';
const environmentConfigurationParameterProperty: datazone.CfnProjectProfile.EnvironmentConfigurationParameterProperty = {
isEditable: false,
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Specifies whether the environment parameter is editable. |
| name? | string | The name of the environment configuration parameter. |
| value? | string | The value of the environment configuration parameter. |
isEditable?
Type:
boolean | IResolvable
(optional)
Specifies whether the environment parameter is editable.
name?
Type:
string
(optional)
The name of the environment configuration parameter.
value?
Type:
string
(optional)
The value of the environment configuration parameter.

.NET
Go
Java
Python
TypeScript