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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDomainMixinPropsstatic final classAn implementation forCfnDomainMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDomainMixinProps.Builderbuilder()default StringThe description of the Amazon DataZone domain.default StringThe domain execution role that is created when an Amazon DataZone domain is created.default StringThe domain version.default StringThe identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.default StringgetName()The name of the Amazon DataZone domain.default StringThe service role of the domain.default ObjectThe single sign-on details in Amazon DataZone.getTags()The tags specified for the Amazon DataZone domain.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the Amazon DataZone domain.- See Also:
-
getDomainExecutionRole
The domain execution role that is created when an Amazon DataZone domain is created.The domain execution role is created in the AWS account that houses the Amazon DataZone domain.
- See Also:
-
getDomainVersion
The domain version.- See Also:
-
getKmsKeyIdentifier
The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.- See Also:
-
getName
The name of the Amazon DataZone domain.- See Also:
-
getServiceRole
The service role of the domain.- See Also:
-
getSingleSignOn
The single sign-on details in Amazon DataZone.Returns union: either
IResolvableorCfnDomainPropsMixin.SingleSignOnProperty- See Also:
-
getTags
The tags specified for the Amazon DataZone domain.- See Also:
-
builder
- Returns:
- a
CfnDomainMixinProps.BuilderofCfnDomainMixinProps
-