Class: Aws::BedrockRuntime::Types::S3Location

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

Overview

A storage location in an S3 bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_ownerString

If the bucket belongs to another AWS account, specify that account’s ID.

Returns:

  • (String)


2452
2453
2454
2455
2456
2457
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2452

class S3Location < Struct.new(
  :uri,
  :bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end

#uriString

An object URI starting with ‘s3://`.

Returns:

  • (String)


2452
2453
2454
2455
2456
2457
# File 'lib/aws-sdk-bedrockruntime/types.rb', line 2452

class S3Location < Struct.new(
  :uri,
  :bucket_owner)
  SENSITIVE = []
  include Aws::Structure
end