interface EnvironmentConfigurationParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnProjectProfilePropsMixin.EnvironmentConfigurationParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnProjectProfilePropsMixin_EnvironmentConfigurationParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnProjectProfilePropsMixin.EnvironmentConfigurationParameterProperty |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnProjectProfilePropsMixin.EnvironmentConfigurationParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnProjectProfilePropsMixin » 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 { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const environmentConfigurationParameterProperty: datazone_mixins.CfnProjectProfilePropsMixin.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