Interface CfnDatasetGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatasetGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.709Z")
@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();
-
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 IAM role that has permissions to create the dataset group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the dataset group. -
getDomain
The domain of a Domain dataset group. -
getKmsKeyArn
The Amazon Resource Name (ARN) of the AWS Key Management Service (KMS) key used to encrypt the datasets. -
getRoleArn
The ARN of the IAM role that has permissions to create the dataset group. -
builder
- Returns:
- a
CfnDatasetGroupProps.BuilderofCfnDatasetGroupProps
-