Show / Hide Table of Contents

Class CfnEnvironment.EnvironmentParameterProperty

The parameter details of the environment.

Inheritance
object
CfnEnvironment.EnvironmentParameterProperty
Implements
CfnEnvironment.IEnvironmentParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environment-environmentparameter.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environment-environmentparameter.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environment-environmentparameter.html#cfn-datazone-environment-environmentparameter-name

Value

The value of the environment parameter.

public string? Value { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environment-environmentparameter.html#cfn-datazone-environment-environmentparameter-value

Implements

CfnEnvironment.IEnvironmentParameterProperty
Back to top Generated by DocFX