Class: Aws::QBusiness::Types::S3

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

Overview

Information required for Amazon Q Business 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)


6581
6582
6583
6584
6585
6586
# File 'lib/aws-sdk-qbusiness/types.rb', line 6581

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

#keyString

The name of the file.

Returns:

  • (String)


6581
6582
6583
6584
6585
6586
# File 'lib/aws-sdk-qbusiness/types.rb', line 6581

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