Class: Humidifier::SSM::MaintenanceWindowTask
- Defined in:
- lib/humidifier/magic.rb
Overview
A dynamically-defined class that represents an AWS::SSM::MaintenanceWindowTask resource
Constant Summary
Constants inherited from Resource
Instance Method Summary collapse
-
#cutoff_behavior ⇒ Object
returns the CutoffBehavior property.
-
#cutoff_behavior=(value) ⇒ Object
sets the CutoffBehavior property (String).
-
#description ⇒ Object
returns the Description property.
-
#description=(value) ⇒ Object
sets the Description property (String).
-
#logging_info ⇒ Object
returns the LoggingInfo property.
-
#logging_info=(value) ⇒ Object
sets the LoggingInfo property (Structure).
-
#max_concurrency ⇒ Object
returns the MaxConcurrency property.
-
#max_concurrency=(value) ⇒ Object
sets the MaxConcurrency property (String).
-
#max_errors ⇒ Object
returns the MaxErrors property.
-
#max_errors=(value) ⇒ Object
sets the MaxErrors property (String).
-
#name ⇒ Object
returns the Name property.
-
#name=(value) ⇒ Object
sets the Name property (String).
-
#priority ⇒ Object
returns the Priority property.
-
#priority=(value) ⇒ Object
sets the Priority property (Integer).
-
#service_role_arn ⇒ Object
returns the ServiceRoleArn property.
-
#service_role_arn=(value) ⇒ Object
sets the ServiceRoleArn property (String).
-
#targets ⇒ Object
returns the Targets property.
-
#targets=(value) ⇒ Object
sets the Targets property (List).
-
#task_arn ⇒ Object
returns the TaskArn property.
-
#task_arn=(value) ⇒ Object
sets the TaskArn property (String).
-
#task_invocation_parameters ⇒ Object
returns the TaskInvocationParameters property.
-
#task_invocation_parameters=(value) ⇒ Object
sets the TaskInvocationParameters property (Structure).
-
#task_parameters ⇒ Object
returns the TaskParameters property.
-
#task_parameters=(value) ⇒ Object
sets the TaskParameters property (Json).
-
#task_type ⇒ Object
returns the TaskType property.
-
#task_type=(value) ⇒ Object
sets the TaskType property (String).
-
#window_id ⇒ Object
returns the WindowId property.
-
#window_id=(value) ⇒ Object
sets the WindowId property (String).
Methods inherited from Resource
#initialize, #method_missing, prop?, #respond_to_missing?, #to_cf, #update, #update_attributes, #update_property
Constructor Details
This class inherits a constructor from Humidifier::Resource
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Humidifier::Resource
Instance Method Details
#cutoff_behavior ⇒ Object
returns the CutoffBehavior property
10 11 12 |
# File 'lib/humidifier/magic.rb', line 10 def cutoff_behavior properties['cutoff_behavior'] end |
#cutoff_behavior=(value) ⇒ Object
sets the CutoffBehavior property (String)
15 16 17 |
# File 'lib/humidifier/magic.rb', line 15 def cutoff_behavior=(value) update_property('cutoff_behavior', value) end |
#description ⇒ Object
returns the Description property
20 21 22 |
# File 'lib/humidifier/magic.rb', line 20 def description properties['description'] end |
#description=(value) ⇒ Object
sets the Description property (String)
25 26 27 |
# File 'lib/humidifier/magic.rb', line 25 def description=(value) update_property('description', value) end |
#logging_info ⇒ Object
returns the LoggingInfo property
30 31 32 |
# File 'lib/humidifier/magic.rb', line 30 def logging_info properties['logging_info'] end |
#logging_info=(value) ⇒ Object
sets the LoggingInfo property (Structure)
35 36 37 |
# File 'lib/humidifier/magic.rb', line 35 def logging_info=(value) update_property('logging_info', value) end |
#max_concurrency ⇒ Object
returns the MaxConcurrency property
40 41 42 |
# File 'lib/humidifier/magic.rb', line 40 def max_concurrency properties['max_concurrency'] end |
#max_concurrency=(value) ⇒ Object
sets the MaxConcurrency property (String)
45 46 47 |
# File 'lib/humidifier/magic.rb', line 45 def max_concurrency=(value) update_property('max_concurrency', value) end |
#max_errors ⇒ Object
returns the MaxErrors property
50 51 52 |
# File 'lib/humidifier/magic.rb', line 50 def max_errors properties['max_errors'] end |
#max_errors=(value) ⇒ Object
sets the MaxErrors property (String)
55 56 57 |
# File 'lib/humidifier/magic.rb', line 55 def max_errors=(value) update_property('max_errors', value) end |
#name ⇒ Object
returns the Name property
60 61 62 |
# File 'lib/humidifier/magic.rb', line 60 def name properties['name'] end |
#name=(value) ⇒ Object
sets the Name property (String)
65 66 67 |
# File 'lib/humidifier/magic.rb', line 65 def name=(value) update_property('name', value) end |
#priority ⇒ Object
returns the Priority property
70 71 72 |
# File 'lib/humidifier/magic.rb', line 70 def priority properties['priority'] end |
#priority=(value) ⇒ Object
sets the Priority property (Integer)
75 76 77 |
# File 'lib/humidifier/magic.rb', line 75 def priority=(value) update_property('priority', value) end |
#service_role_arn ⇒ Object
returns the ServiceRoleArn property
80 81 82 |
# File 'lib/humidifier/magic.rb', line 80 def service_role_arn properties['service_role_arn'] end |
#service_role_arn=(value) ⇒ Object
sets the ServiceRoleArn property (String)
85 86 87 |
# File 'lib/humidifier/magic.rb', line 85 def service_role_arn=(value) update_property('service_role_arn', value) end |
#targets ⇒ Object
returns the Targets property
90 91 92 |
# File 'lib/humidifier/magic.rb', line 90 def targets properties['targets'] end |
#targets=(value) ⇒ Object
sets the Targets property (List)
95 96 97 |
# File 'lib/humidifier/magic.rb', line 95 def targets=(value) update_property('targets', value) end |
#task_arn ⇒ Object
returns the TaskArn property
100 101 102 |
# File 'lib/humidifier/magic.rb', line 100 def task_arn properties['task_arn'] end |
#task_arn=(value) ⇒ Object
sets the TaskArn property (String)
105 106 107 |
# File 'lib/humidifier/magic.rb', line 105 def task_arn=(value) update_property('task_arn', value) end |
#task_invocation_parameters ⇒ Object
returns the TaskInvocationParameters property
110 111 112 |
# File 'lib/humidifier/magic.rb', line 110 def task_invocation_parameters properties['task_invocation_parameters'] end |
#task_invocation_parameters=(value) ⇒ Object
sets the TaskInvocationParameters property (Structure)
115 116 117 |
# File 'lib/humidifier/magic.rb', line 115 def task_invocation_parameters=(value) update_property('task_invocation_parameters', value) end |
#task_parameters ⇒ Object
returns the TaskParameters property
120 121 122 |
# File 'lib/humidifier/magic.rb', line 120 def task_parameters properties['task_parameters'] end |
#task_parameters=(value) ⇒ Object
sets the TaskParameters property (Json)
125 126 127 |
# File 'lib/humidifier/magic.rb', line 125 def task_parameters=(value) update_property('task_parameters', value) end |
#task_type ⇒ Object
returns the TaskType property
130 131 132 |
# File 'lib/humidifier/magic.rb', line 130 def task_type properties['task_type'] end |
#task_type=(value) ⇒ Object
sets the TaskType property (String)
135 136 137 |
# File 'lib/humidifier/magic.rb', line 135 def task_type=(value) update_property('task_type', value) end |
#window_id ⇒ Object
returns the WindowId property
140 141 142 |
# File 'lib/humidifier/magic.rb', line 140 def window_id properties['window_id'] end |
#window_id=(value) ⇒ Object
sets the WindowId property (String)
145 146 147 |
# File 'lib/humidifier/magic.rb', line 145 def window_id=(value) update_property('window_id', value) end |