Show / Hide Table of Contents

Class CfnProjectProfile.EnvironmentConfigurationParametersDetailsProperty

The details of the environment configuration parameter.

Inheritance
object
CfnProjectProfile.EnvironmentConfigurationParametersDetailsProperty
Implements
CfnProjectProfile.IEnvironmentConfigurationParametersDetailsProperty
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 CfnProjectProfile.EnvironmentConfigurationParametersDetailsProperty : CfnProjectProfile.IEnvironmentConfigurationParametersDetailsProperty
Syntax (vb)
Public Class CfnProjectProfile.EnvironmentConfigurationParametersDetailsProperty Implements CfnProjectProfile.IEnvironmentConfigurationParametersDetailsProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.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 environmentConfigurationParametersDetailsProperty = new EnvironmentConfigurationParametersDetailsProperty {
                 ParameterOverrides = new [] { new EnvironmentConfigurationParameterProperty {
                     IsEditable = false,
                     Name = "name",
                     Value = "value"
                 } },
                 ResolvedParameters = new [] { new EnvironmentConfigurationParameterProperty {
                     IsEditable = false,
                     Name = "name",
                     Value = "value"
                 } },
                 SsmPath = "ssmPath"
             };

Synopsis

Constructors

EnvironmentConfigurationParametersDetailsProperty()

The details of the environment configuration parameter.

Properties

ParameterOverrides

The parameter overrides.

ResolvedParameters

The resolved environment configuration parameters.

SsmPath

Ssm path environment configuration parameters.

Constructors

EnvironmentConfigurationParametersDetailsProperty()

The details of the environment configuration parameter.

public EnvironmentConfigurationParametersDetailsProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.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 environmentConfigurationParametersDetailsProperty = new EnvironmentConfigurationParametersDetailsProperty {
                 ParameterOverrides = new [] { new EnvironmentConfigurationParameterProperty {
                     IsEditable = false,
                     Name = "name",
                     Value = "value"
                 } },
                 ResolvedParameters = new [] { new EnvironmentConfigurationParameterProperty {
                     IsEditable = false,
                     Name = "name",
                     Value = "value"
                 } },
                 SsmPath = "ssmPath"
             };

Properties

ParameterOverrides

The parameter overrides.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-parameteroverrides

Type union: either IResolvable or (either IResolvable or CfnProjectProfile.IEnvironmentConfigurationParameterProperty)[]

ResolvedParameters

The resolved environment configuration parameters.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-resolvedparameters

Type union: either IResolvable or (either IResolvable or CfnProjectProfile.IEnvironmentConfigurationParameterProperty)[]

SsmPath

Ssm path environment configuration parameters.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-projectprofile-environmentconfigurationparametersdetails.html#cfn-datazone-projectprofile-environmentconfigurationparametersdetails-ssmpath

Implements

CfnProjectProfile.IEnvironmentConfigurationParametersDetailsProperty
Back to top Generated by DocFX