Class: Aws::IoT::Types::S3Destination

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 S3Destination data as a hash:

{
  bucket: "S3Bucket",
  prefix: "Prefix",
}

Describes the location of updated firmware in S3.

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The S3 bucket that contains the updated firmware.

Returns:

  • (String)


8990
8991
8992
8993
8994
# File 'lib/aws-sdk-iot/types.rb', line 8990

class S3Destination < Struct.new(
  :bucket,
  :prefix)
  include Aws::Structure
end

#prefixString

The S3 prefix.

Returns:

  • (String)


8990
8991
8992
8993
8994
# File 'lib/aws-sdk-iot/types.rb', line 8990

class S3Destination < Struct.new(
  :bucket,
  :prefix)
  include Aws::Structure
end