Interface CfnDatasetGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:29.052Z")
@Stability(Stable)
public interface CfnDatasetGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnDatasetGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.personalize.mixins.*;
CfnDatasetGroupMixinProps cfnDatasetGroupMixinProps = CfnDatasetGroupMixinProps.builder()
.domain("domain")
.kmsKeyArn("kmsKeyArn")
.name("name")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetGroupMixinPropsstatic final classAn implementation forCfnDatasetGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe domain of a Domain dataset group.default StringThe Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets.default StringgetName()The name of the dataset group.default StringThe ARN of the AWS Identity and Access Management (IAM) role that has permissions to access the AWS Key Management Service (KMS) key.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomain
The domain of a Domain dataset group.- See Also:
-
getKmsKeyArn
The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets.- See Also:
-
getName
The name of the dataset group.- See Also:
-
getRoleArn
The ARN of the AWS Identity and Access Management (IAM) role that has permissions to access the AWS Key Management Service (KMS) key.Supplying an IAM role is only valid when also specifying a KMS key.
- See Also:
-
builder
- Returns:
- a
CfnDatasetGroupMixinProps.BuilderofCfnDatasetGroupMixinProps
-