Interface CfnProjectProfileMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProjectProfileMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-03-11T13:19:57.980Z") @Stability(Stable) public interface CfnProjectProfileMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnProjectProfilePropsMixin.

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.*;
 CfnProjectProfileMixinProps cfnProjectProfileMixinProps = CfnProjectProfileMixinProps.builder()
         .description("description")
         .domainIdentifier("domainIdentifier")
         .domainUnitIdentifier("domainUnitIdentifier")
         .environmentConfigurations(List.of(EnvironmentConfigurationProperty.builder()
                 .awsAccount(AwsAccountProperty.builder()
                         .awsAccountId("awsAccountId")
                         .build())
                 .awsRegion(RegionProperty.builder()
                         .regionName("regionName")
                         .build())
                 .configurationParameters(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())
                 .deploymentMode("deploymentMode")
                 .deploymentOrder(123)
                 .description("description")
                 .environmentBlueprintId("environmentBlueprintId")
                 .environmentConfigurationId("environmentConfigurationId")
                 .name("name")
                 .build()))
         .name("name")
         .status("status")
         .useDefaultConfigurations(false)
         .build();
 

See Also: