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)


8830
8831
8832
8833
8834
8835
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 8830

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

#keyString

The name of the file.

Returns:

  • (String)


8830
8831
8832
8833
8834
8835
# File 'gems/aws-sdk-kendra/lib/aws-sdk-kendra/types.rb', line 8830

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