Class: AWSCDK::SSM::CfnMaintenanceWindowTask::MaintenanceWindowStepFunctionsParametersProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::SSM::CfnMaintenanceWindowTask::MaintenanceWindowStepFunctionsParametersProperty
- Defined in:
- ssm/cfn_maintenance_window_task.rb
Overview
The MaintenanceWindowStepFunctionsParameters property type specifies the parameters for the execution of a STEP_FUNCTIONS task in a Systems Manager maintenance window.
MaintenanceWindowStepFunctionsParameters is a property of the TaskInvocationParameters property type.
Instance Attribute Summary collapse
-
#input ⇒ String?
readonly
The inputs for the
STEP_FUNCTIONStask. -
#name ⇒ String?
readonly
The name of the
STEP_FUNCTIONStask.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(input: nil, name: nil) ⇒ MaintenanceWindowStepFunctionsParametersProperty
constructor
A new instance of MaintenanceWindowStepFunctionsParametersProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(input: nil, name: nil) ⇒ MaintenanceWindowStepFunctionsParametersProperty
Returns a new instance of MaintenanceWindowStepFunctionsParametersProperty.
1056 1057 1058 1059 1060 1061 |
# File 'ssm/cfn_maintenance_window_task.rb', line 1056 def initialize(input: nil, name: nil) @input = input Jsii::Type.check_type(@input, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "input") unless @input.nil? @name = name Jsii::Type.check_type(@name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "name") unless @name.nil? end |
Instance Attribute Details
#input ⇒ String? (readonly)
The inputs for the STEP_FUNCTIONS task.
1067 1068 1069 |
# File 'ssm/cfn_maintenance_window_task.rb', line 1067 def input @input end |
#name ⇒ String? (readonly)
The name of the STEP_FUNCTIONS task.
1072 1073 1074 |
# File 'ssm/cfn_maintenance_window_task.rb', line 1072 def name @name end |
Class Method Details
.jsii_properties ⇒ Object
1074 1075 1076 1077 1078 1079 |
# File 'ssm/cfn_maintenance_window_task.rb', line 1074 def self.jsii_properties { :input => "input", :name => "name", } end |
Instance Method Details
#to_jsii ⇒ Object
1081 1082 1083 1084 1085 1086 1087 1088 |
# File 'ssm/cfn_maintenance_window_task.rb', line 1081 def to_jsii result = {} result.merge!({ "input" => @input, "name" => @name, }) result.compact end |