Class: Aws::IoT::Types::DeleteOTAUpdateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::DeleteOTAUpdateRequest
- 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
-
#delete_stream ⇒ Boolean
Specifies if the stream associated with an OTA update should be deleted when the OTA update is deleted.
-
#force_delete_aws_job ⇒ Boolean
Specifies if the AWS Job associated with the OTA update should be deleted with the OTA update is deleted.
-
#ota_update_id ⇒ String
The OTA update ID to delete.
Instance Attribute Details
#delete_stream ⇒ Boolean
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_job ⇒ Boolean
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_id ⇒ String
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 |