Class CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty
The parameter details of an environment profile.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty : CfnEnvironmentProfilePropsMixin.IEnvironmentParameterProperty
Syntax (vb)
Public Class CfnEnvironmentProfilePropsMixin.EnvironmentParameterProperty Implements CfnEnvironmentProfilePropsMixin.IEnvironmentParameterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins;
var environmentParameterProperty = new EnvironmentParameterProperty {
Name = "name",
Value = "value"
};
Synopsis
Constructors
| EnvironmentParameterProperty() | The parameter details of an environment profile. |
Properties
| Name | The name specified in the environment parameter. |
| Value | The value of the environment profile. |
Constructors
EnvironmentParameterProperty()
The parameter details of an environment profile.
public EnvironmentParameterProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins;
var environmentParameterProperty = new EnvironmentParameterProperty {
Name = "name",
Value = "value"
};
Properties
Name
The name specified in the environment parameter.
public string? Name { get; set; }
Property Value
Remarks
Value
The value of the environment profile.
public string? Value { get; set; }