Interface CfnProject.IEnvironmentConfigurationUserParameterProperty
The environment configuration user parameters.
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnProject.IEnvironmentConfigurationUserParameterProperty
Syntax (vb)
Public Interface CfnProject.IEnvironmentConfigurationUserParameterProperty
Remarks
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
Properties
| EnvironmentConfigurationName | The environment configuration name. |
| EnvironmentId | The ID of the environment. |
| EnvironmentParameters | The environment parameters. |
Properties
EnvironmentConfigurationName
The environment configuration name.
string? EnvironmentConfigurationName { get; }
Property Value
Remarks
EnvironmentId
The ID of the environment.
string? EnvironmentId { get; }
Property Value
Remarks
EnvironmentParameters
The environment parameters.
object? EnvironmentParameters { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnProject.IEnvironmentParameterProperty)[]