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
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.
4397 4398 4399 4400 4401 4402 4403 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 4397 class S3Object < Struct.new( :bucket, :key, :etag) SENSITIVE = [] include Aws::Structure end |