Class CfnEnvironment.EnvironmentParameterProperty
The parameter details of the environment.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEnvironment.EnvironmentParameterProperty : CfnEnvironment.IEnvironmentParameterProperty
Syntax (vb)
Public Class CfnEnvironment.EnvironmentParameterProperty Implements CfnEnvironment.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.AWS.DataZone;
var environmentParameterProperty = new EnvironmentParameterProperty {
Name = "name",
Value = "value"
};
Synopsis
Constructors
| EnvironmentParameterProperty() | The parameter details of the environment. |
Properties
| Name | The name of the environment parameter. |
| Value | The value of the environment parameter. |
Constructors
EnvironmentParameterProperty()
The parameter details of the environment.
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.AWS.DataZone;
var environmentParameterProperty = new EnvironmentParameterProperty {
Name = "name",
Value = "value"
};
Properties
Name
The name of the environment parameter.
public string? Name { get; set; }
Property Value
Remarks
Value
The value of the environment parameter.
public string? Value { get; set; }