Class: Aws::Personalize::Types::CreateDatasetGroupRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-personalize/types.rb

Overview

Note:

When making an API call, you may pass CreateDatasetGroupRequest data as a hash:

{
  name: "Name", # required
  role_arn: "RoleArn",
  kms_key_arn: "KmsKeyArn",
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_arnString

The Amazon Resource Name (ARN) of a KMS key used to encrypt the datasets.

Returns:

  • (String)


794
795
796
797
798
799
800
# File 'lib/aws-sdk-personalize/types.rb', line 794

class CreateDatasetGroupRequest < Struct.new(
  :name,
  :role_arn,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name for the new dataset group.

Returns:

  • (String)


794
795
796
797
798
799
800
# File 'lib/aws-sdk-personalize/types.rb', line 794

class CreateDatasetGroupRequest < Struct.new(
  :name,
  :role_arn,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

The ARN of the IAM role that has permissions to access the KMS key. Supplying an IAM role is only valid when also specifying a KMS key.

Returns:

  • (String)


794
795
796
797
798
799
800
# File 'lib/aws-sdk-personalize/types.rb', line 794

class CreateDatasetGroupRequest < Struct.new(
  :name,
  :role_arn,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end