Class: Aws::Kendra::Types::S3Path
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kendra::Types::S3Path
- Includes:
- Structure
- Defined in:
- 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
-
#bucket ⇒ String
The name of the S3 bucket that contains the file.
-
#key ⇒ String
The name of the file.
Instance Attribute Details
#bucket ⇒ String
The name of the S3 bucket that contains the file.
8776 8777 8778 8779 8780 8781 |
# File 'lib/aws-sdk-kendra/types.rb', line 8776 class S3Path < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The name of the file.
8776 8777 8778 8779 8780 8781 |
# File 'lib/aws-sdk-kendra/types.rb', line 8776 class S3Path < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |