Interface CfnProjectProfilePropsMixin.EnvironmentConfigurationParametersDetailsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProjectProfilePropsMixin.EnvironmentConfigurationParametersDetailsProperty.Jsii$Proxy
Enclosing class:
CfnProjectProfilePropsMixin

@Stability(Stable) public static interface CfnProjectProfilePropsMixin.EnvironmentConfigurationParametersDetailsProperty extends software.amazon.jsii.JsiiSerializable
The details of the environment configuration parameter.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.datazone.*;
 EnvironmentConfigurationParametersDetailsProperty environmentConfigurationParametersDetailsProperty = EnvironmentConfigurationParametersDetailsProperty.builder()
         .parameterOverrides(List.of(EnvironmentConfigurationParameterProperty.builder()
                 .isEditable(false)
                 .name("name")
                 .value("value")
                 .build()))
         .resolvedParameters(List.of(EnvironmentConfigurationParameterProperty.builder()
                 .isEditable(false)
                 .name("name")
                 .value("value")
                 .build()))
         .ssmPath("ssmPath")
         .build();
 

See Also: