Class: Aws::RoboMaker::Types::S3Object
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::S3Object
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass S3Object data as a hash:
{
bucket: "S3Bucket", # required
key: "S3Key", # required
etag: "S3Etag",
}
Information about an S3 object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The bucket containing the object.
-
#etag ⇒ String
The etag of the object.
-
#key ⇒ String
The key of the object.
Instance Attribute Details
#bucket ⇒ String
The bucket containing the object.
5280 5281 5282 5283 5284 5285 5286 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 5280 class S3Object < Struct.new( :bucket, :key, :etag) SENSITIVE = [] include Aws::Structure end |