Class: Aws::IoT::Types::S3Location

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The S3 bucket.

Returns:

  • (String)


9019
9020
9021
9022
9023
9024
# File 'lib/aws-sdk-iot/types.rb', line 9019

class S3Location < Struct.new(
  :bucket,
  :key,
  :version)
  include Aws::Structure
end

#keyString

The S3 key.

Returns:

  • (String)


9019
9020
9021
9022
9023
9024
# File 'lib/aws-sdk-iot/types.rb', line 9019

class S3Location < Struct.new(
  :bucket,
  :key,
  :version)
  include Aws::Structure
end

#versionString

The S3 bucket version.

Returns:

  • (String)


9019
9020
9021
9022
9023
9024
# File 'lib/aws-sdk-iot/types.rb', line 9019

class S3Location < Struct.new(
  :bucket,
  :key,
  :version)
  include Aws::Structure
end