Interface CfnDomainProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDomainProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-06T14:43:16.934Z")
@Stability(Stable)
public interface CfnDomainProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDomain
.
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.*; CfnDomainProps cfnDomainProps = CfnDomainProps.builder() .domainExecutionRole("domainExecutionRole") .name("name") // the properties below are optional .description("description") .kmsKeyIdentifier("kmsKeyIdentifier") .singleSignOn(SingleSignOnProperty.builder() .type("type") .userAssignment("userAssignment") .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDomainProps
static final class
An implementation forCfnDomainProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDomainProps.Builder
builder()
default String
The description of the Amazon DataZone domain.The domain execution role that is created when an Amazon DataZone domain is created.default String
The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.getName()
The name of the Amazon DataZone domain.default Object
The 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
-
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:
-
getName
The name of the Amazon DataZone domain.- See Also:
-
getDescription
The description of the Amazon DataZone domain.- 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:
-
getSingleSignOn
The single sign-on details in Amazon DataZone.- See Also:
-
getTags
The tags specified for the Amazon DataZone domain.- See Also:
-
builder
- Returns:
- a
CfnDomainProps.Builder
ofCfnDomainProps
-