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