Class: Aws::Personalize::Types::S3DataConfig

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 S3DataConfig data as a hash:

{
  path: "S3Location", # required
  kms_key_arn: "KmsKeyArn",
}

The configuration details of an Amazon S3 input or output bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_arnString

The Amazon Resource Name (ARN) of the Amazon Key Management Service (KMS) key that Amazon Personalize uses to encrypt or decrypt the input and output files of a batch inference job.

Returns:

  • (String)


3595
3596
3597
3598
3599
3600
# File 'lib/aws-sdk-personalize/types.rb', line 3595

class S3DataConfig < Struct.new(
  :path,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#pathString

The file path of the Amazon S3 bucket.

Returns:

  • (String)


3595
3596
3597
3598
3599
3600
# File 'lib/aws-sdk-personalize/types.rb', line 3595

class S3DataConfig < Struct.new(
  :path,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end