Class: Aws::LookoutEquipment::Types::S3Object
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::S3Object
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lookoutequipment/types.rb
Overview
Contains information about an S3 bucket.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the specific S3 bucket.
-
#key ⇒ String
The Amazon Web Services Key Management Service (KMS key) key being used to encrypt the S3 object.
Instance Attribute Details
#bucket ⇒ String
The name of the specific S3 bucket.
3882 3883 3884 3885 3886 3887 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 3882 class S3Object < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The Amazon Web Services Key Management Service (KMS key) key being used to encrypt the S3 object. Without this key, data in the bucket is not accessible.
3882 3883 3884 3885 3886 3887 |
# File 'lib/aws-sdk-lookoutequipment/types.rb', line 3882 class S3Object < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |