Class: Aws::IoT::Types::DeleteOTAUpdateRequest

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

{
  ota_update_id: "OTAUpdateId", # required
  delete_stream: false,
  force_delete_aws_job: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#delete_streamBoolean

Specifies if the stream associated with an OTA update should be deleted when the OTA update is deleted.



3316
3317
3318
3319
3320
3321
# File 'lib/aws-sdk-iot/types.rb', line 3316

class DeleteOTAUpdateRequest < Struct.new(
  :ota_update_id,
  :delete_stream,
  :force_delete_aws_job)
  include Aws::Structure
end

#force_delete_aws_jobBoolean

Specifies if the AWS Job associated with the OTA update should be deleted with the OTA update is deleted.



3316
3317
3318
3319
3320
3321
# File 'lib/aws-sdk-iot/types.rb', line 3316

class DeleteOTAUpdateRequest < Struct.new(
  :ota_update_id,
  :delete_stream,
  :force_delete_aws_job)
  include Aws::Structure
end

#ota_update_idString

The OTA update ID to delete.



3316
3317
3318
3319
3320
3321
# File 'lib/aws-sdk-iot/types.rb', line 3316

class DeleteOTAUpdateRequest < Struct.new(
  :ota_update_id,
  :delete_stream,
  :force_delete_aws_job)
  include Aws::Structure
end