Class: Aws::GuardDuty::Types::S3Object
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::S3Object
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Contains information about the Amazon S3 object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#etag ⇒ String
The entity tag is a hash of the Amazon S3 object.
-
#key ⇒ String
The key of the Amazon S3 object.
-
#version_id ⇒ String
The version Id of the Amazon S3 object.
Instance Attribute Details
#etag ⇒ String
The entity tag is a hash of the Amazon S3 object. The ETag reflects changes only to the contents of an object, and not its metadata.
8217 8218 8219 8220 8221 8222 8223 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 8217 class S3Object < Struct.new( :etag, :key, :version_id) SENSITIVE = [] include Aws::Structure end |