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.
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket. This bucket contains the stored data.
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 |
#prefix ⇒ String
The prefix for objects in the Amazon S3 bucket. This prefix is added to the object keys to organize the data.
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 |