Show / Hide Table of Contents

Class CfnProject.EnvironmentConfigurationUserParameterProperty

The environment configuration user parameters.

Inheritance
object
CfnProject.EnvironmentConfigurationUserParameterProperty
Implements
CfnProject.IEnvironmentConfigurationUserParameterProperty
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 CfnProject.EnvironmentConfigurationUserParameterProperty : CfnProject.IEnvironmentConfigurationUserParameterProperty
Syntax (vb)
Public Class CfnProject.EnvironmentConfigurationUserParameterProperty Implements CfnProject.IEnvironmentConfigurationUserParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.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 environmentConfigurationUserParameterProperty = new EnvironmentConfigurationUserParameterProperty {
                 EnvironmentConfigurationName = "environmentConfigurationName",
                 EnvironmentId = "environmentId",
                 EnvironmentParameters = new [] { new EnvironmentParameterProperty {
                     Name = "name",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

EnvironmentConfigurationUserParameterProperty()

The environment configuration user parameters.

Properties

EnvironmentConfigurationName

The environment configuration name.

EnvironmentId

The ID of the environment.

EnvironmentParameters

The environment parameters.

Constructors

EnvironmentConfigurationUserParameterProperty()

The environment configuration user parameters.

public EnvironmentConfigurationUserParameterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.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 environmentConfigurationUserParameterProperty = new EnvironmentConfigurationUserParameterProperty {
                 EnvironmentConfigurationName = "environmentConfigurationName",
                 EnvironmentId = "environmentId",
                 EnvironmentParameters = new [] { new EnvironmentParameterProperty {
                     Name = "name",
                     Value = "value"
                 } }
             };

Properties

EnvironmentConfigurationName

The environment configuration name.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentconfigurationname

EnvironmentId

The ID of the environment.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentid

EnvironmentParameters

The environment parameters.

public object? EnvironmentParameters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-project-environmentconfigurationuserparameter.html#cfn-datazone-project-environmentconfigurationuserparameter-environmentparameters

Type union: either IResolvable or (either IResolvable or CfnProject.IEnvironmentParameterProperty)[]

Implements

CfnProject.IEnvironmentConfigurationUserParameterProperty
Back to top Generated by DocFX