Class: Aws::Kendra::Types::S3Path

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb

Overview

Information required to find a specific file in an Amazon S3 bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the S3 bucket that contains the file.

Returns:

  • (String)


8776
8777
8778
8779
8780
8781
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 8776

class S3Path < Struct.new(
  :bucket,
  :key)
  SENSITIVE = []
  include Aws::Structure
end

#keyString

The name of the file.

Returns:

  • (String)


8776
8777
8778
8779
8780
8781
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 8776

class S3Path < Struct.new(
  :bucket,
  :key)
  SENSITIVE = []
  include Aws::Structure
end