Class: Aws::IoT::Types::S3Location
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::S3Location
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass S3Location data as a hash:
{
bucket: "S3Bucket",
key: "S3Key",
version: "S3Version",
}
The S3 location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket ⇒ String
The S3 bucket.
-
#key ⇒ String
The S3 key.
-
#version ⇒ String
The S3 bucket version.
Instance Attribute Details
#bucket ⇒ String
The S3 bucket.
16172 16173 16174 16175 16176 16177 16178 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16172 class S3Location < Struct.new( :bucket, :key, :version) SENSITIVE = [] include Aws::Structure end |
#key ⇒ String
The S3 key.
16172 16173 16174 16175 16176 16177 16178 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16172 class S3Location < Struct.new( :bucket, :key, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ String
The S3 bucket version.
16172 16173 16174 16175 16176 16177 16178 |
# File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 16172 class S3Location < Struct.new( :bucket, :key, :version) SENSITIVE = [] include Aws::Structure end |