Class: Aws::BedrockAgentCoreControl::Types::S3Configuration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::S3Configuration
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
The Amazon S3 configuration for a gateway. This structure defines how the gateway accesses files in Amazon S3.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_owner_account_id ⇒ String
The account ID of the Amazon S3 bucket owner.
-
#uri ⇒ String
The URI of the Amazon S3 object.
Instance Attribute Details
#bucket_owner_account_id ⇒ String
The account ID of the Amazon S3 bucket owner. This ID is used for cross-account access to the bucket.
3966 3967 3968 3969 3970 3971 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3966 class S3Configuration < Struct.new( :uri, :bucket_owner_account_id) SENSITIVE = [] include Aws::Structure end |
#uri ⇒ String
The URI of the Amazon S3 object. This URI specifies the location of the object in Amazon S3.
3966 3967 3968 3969 3970 3971 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3966 class S3Configuration < Struct.new( :uri, :bucket_owner_account_id) SENSITIVE = [] include Aws::Structure end |