Interface CfnProject.EnvironmentConfigurationUserParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProject.EnvironmentConfigurationUserParameterProperty.Jsii$Proxy
- Enclosing class:
CfnProject
@Stability(Stable)
public static interface CfnProject.EnvironmentConfigurationUserParameterProperty
extends software.amazon.jsii.JsiiSerializable
The environment configuration user parameters.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.datazone.*;
EnvironmentConfigurationUserParameterProperty environmentConfigurationUserParameterProperty = EnvironmentConfigurationUserParameterProperty.builder()
.environmentConfigurationName("environmentConfigurationName")
.environmentId("environmentId")
.environmentParameters(List.of(EnvironmentParameterProperty.builder()
.name("name")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProject.EnvironmentConfigurationUserParameterPropertystatic final classAn implementation forCfnProject.EnvironmentConfigurationUserParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnvironmentConfigurationName
The environment configuration name.- See Also:
-
getEnvironmentId
The ID of the environment.- See Also:
-
getEnvironmentParameters
The environment parameters.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnProject.EnvironmentParameterProperty>- See Also:
-
builder
@Stability(Stable) static CfnProject.EnvironmentConfigurationUserParameterProperty.Builder builder()
-