Class: Aws::BedrockAgentCoreControl::Types::S3Location

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

Overview

The Amazon S3 location for storing data. This structure defines where in Amazon S3 data is stored.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The name of the Amazon S3 bucket. This bucket contains the stored data.

Returns:

  • (String)


3988
3989
3990
3991
3992
3993
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3988

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

#prefixString

The prefix for objects in the Amazon S3 bucket. This prefix is added to the object keys to organize the data.

Returns:

  • (String)


3988
3989
3990
3991
3992
3993
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3988

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