/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Resource Schema for AWS::Personalize::DatasetGroup. */ export interface AwsPersonalizeDatasetgroup { /** * The Amazon Resource Name (ARN) of the dataset group. */ DatasetGroupArn?: string; /** * The name for the new dataset group. */ Name: string; /** * The Amazon Resource Name(ARN) of a AWS Key Management Service (KMS) key used to encrypt the datasets. */ KmsKeyArn?: string; /** * 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. */ RoleArn?: string; /** * The domain of a Domain dataset group. */ Domain?: "ECOMMERCE" | "VIDEO_ON_DEMAND"; }