Interface CfnDatasetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:46.316Z")
@Stability(Stable)
public interface CfnDatasetGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnDatasetGroup.
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.personalize.*;
CfnDatasetGroupProps cfnDatasetGroupProps = CfnDatasetGroupProps.builder()
.name("name")
// the properties below are optional
.domain("domain")
.kmsKeyArn("kmsKeyArn")
.roleArn("roleArn")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatasetGroupPropsstatic final classAn implementation forCfnDatasetGroupProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnDatasetGroupProps.Builderbuilder()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.getName()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
-
getName
The name of the dataset group.- See Also:
-
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:
-
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
CfnDatasetGroupProps.BuilderofCfnDatasetGroupProps
-