Class: Aws::Lightsail::Types::AddOnRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::AddOnRequest
- Defined in:
- gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb
Overview
Note:
When making an API call, you may pass AddOnRequest data as a hash:
{
add_on_type: "AutoSnapshot", # required, accepts AutoSnapshot
auto_snapshot_add_on_request: {
snapshot_time_of_day: "TimeOfDay",
},
}
Describes a request to enable, modify, or disable an add-on for an Amazon Lightsail resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#add_on_type ⇒ String
The add-on type.
-
#auto_snapshot_add_on_request ⇒ Types::AutoSnapshotAddOnRequest
An object that represents additional parameters when enabling or modifying the automatic snapshot add-on.
Instance Attribute Details
#add_on_type ⇒ String
The add-on type.
423 424 425 426 427 428 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 423 class AddOnRequest < Struct.new( :add_on_type, :auto_snapshot_add_on_request) SENSITIVE = [] include Aws::Structure end |
#auto_snapshot_add_on_request ⇒ Types::AutoSnapshotAddOnRequest
An object that represents additional parameters when enabling or modifying the automatic snapshot add-on.
423 424 425 426 427 428 |
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 423 class AddOnRequest < Struct.new( :add_on_type, :auto_snapshot_add_on_request) SENSITIVE = [] include Aws::Structure end |