Interface CfnEnvironmentProfileProps

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

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-23T05:56:14.494Z") @Stability(Stable) public interface CfnEnvironmentProfileProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnEnvironmentProfile.

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.*;
 CfnEnvironmentProfileProps cfnEnvironmentProfileProps = CfnEnvironmentProfileProps.builder()
         .awsAccountId("awsAccountId")
         .awsAccountRegion("awsAccountRegion")
         .domainIdentifier("domainIdentifier")
         .environmentBlueprintIdentifier("environmentBlueprintIdentifier")
         .name("name")
         .projectIdentifier("projectIdentifier")
         // the properties below are optional
         .description("description")
         .userParameters(List.of(EnvironmentParameterProperty.builder()
                 .name("name")
                 .value("value")
                 .build()))
         .build();
 

See Also: