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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucketString

The S3 bucket that contains the updated firmware.

Returns:

  • (String)


15982
15983
15984
15985
15986
15987
# File 'lib/aws-sdk-iot/types.rb', line 15982

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

#prefixString

The S3 prefix.

Returns:

  • (String)


15982
15983
15984
15985
15986
15987
# File 'lib/aws-sdk-iot/types.rb', line 15982

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