Show / Hide Table of Contents

Class CfnEnvironmentProfile.EnvironmentParameterProperty

The parameter details of an environment profile.

Inheritance
object
CfnEnvironmentProfile.EnvironmentParameterProperty
Implements
CfnEnvironmentProfile.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 CfnEnvironmentProfile.EnvironmentParameterProperty : CfnEnvironmentProfile.IEnvironmentParameterProperty
Syntax (vb)
Public Class CfnEnvironmentProfile.EnvironmentParameterProperty Implements CfnEnvironmentProfile.IEnvironmentParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentprofile-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 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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-environmentprofile-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 specified in the environment parameter.

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

string

Remarks

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

Value

The value of the environment profile.

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

string

Remarks

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

Implements

CfnEnvironmentProfile.IEnvironmentParameterProperty
Back to top Generated by DocFX