Interface CfnDomainMixinProps

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

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

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.*;
 CfnDomainMixinProps cfnDomainMixinProps = CfnDomainMixinProps.builder()
         .description("description")
         .domainExecutionRole("domainExecutionRole")
         .domainVersion("domainVersion")
         .kmsKeyIdentifier("kmsKeyIdentifier")
         .name("name")
         .serviceRole("serviceRole")
         .singleSignOn(SingleSignOnProperty.builder()
                 .idcInstanceArn("idcInstanceArn")
                 .type("type")
                 .userAssignment("userAssignment")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: