interface EnvironmentParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnEnvironmentProfile.EnvironmentParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnEnvironmentProfile_EnvironmentParameterProperty |
Java | software.amazon.awscdk.services.datazone.CfnEnvironmentProfile.EnvironmentParameterProperty |
Python | aws_cdk.aws_datazone.CfnEnvironmentProfile.EnvironmentParameterProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnEnvironmentProfile » EnvironmentParameterProperty |
The parameter details of an environment profile.
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 environmentParameterProperty: datazone.CfnEnvironmentProfile.EnvironmentParameterProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name specified in the environment parameter. |
| value? | string | The value of the environment profile. |
name?
Type:
string
(optional)
The name specified in the environment parameter.
value?
Type:
string
(optional)
The value of the environment profile.

.NET
Go
Java
Python
TypeScript