Show / Hide Table of Contents

Interface CfnProjectProfile.IEnvironmentConfigurationParametersDetailsProperty

The details of the environment configuration parameter.

Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnProjectProfile.IEnvironmentConfigurationParametersDetailsProperty
Syntax (vb)
Public Interface 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

Properties

ParameterOverrides

The parameter overrides.

ResolvedParameters

The resolved environment configuration parameters.

SsmPath

Ssm path environment configuration parameters.

Properties

ParameterOverrides

The parameter overrides.

object? ParameterOverrides { get; }
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.

object? ResolvedParameters { get; }
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.

string? SsmPath { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX