Class: Aws::BedrockAgentCoreControl::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::S3Location
- 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
-
#bucket ⇒ String
The name of the Amazon S3 bucket.
-
#prefix ⇒ String
The prefix for objects in the Amazon S3 bucket.
-
#version_id ⇒ String
The version ID of the Amazon Amazon S3 object.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket. This bucket contains the stored data.
8082 8083 8084 8085 8086 8087 8088 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8082 class S3Location < Struct.new( :bucket, :prefix, :version_id) SENSITIVE = [] include Aws::Structure end |
#prefix ⇒ String
The prefix for objects in the Amazon S3 bucket. This prefix is added to the object keys to organize the data.
8082 8083 8084 8085 8086 8087 8088 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8082 class S3Location < Struct.new( :bucket, :prefix, :version_id) SENSITIVE = [] include Aws::Structure end |
#version_id ⇒ String
The version ID of the Amazon Amazon S3 object. If not specified, the latest version of the object is used.
8082 8083 8084 8085 8086 8087 8088 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8082 class S3Location < Struct.new( :bucket, :prefix, :version_id) SENSITIVE = [] include Aws::Structure end |