Class: AWSCDK::SSM::CfnMaintenanceWindowTask::MaintenanceWindowStepFunctionsParametersProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(input: nil, name: nil) ⇒ MaintenanceWindowStepFunctionsParametersProperty

Returns a new instance of MaintenanceWindowStepFunctionsParametersProperty.

Parameters:

  • input (String, nil) (defaults to: nil)

    The inputs for the STEP_FUNCTIONS task.

  • name (String, nil) (defaults to: nil)

    The name of the STEP_FUNCTIONS task.



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

#inputString? (readonly)

The inputs for the STEP_FUNCTIONS task.



1067
1068
1069
# File 'ssm/cfn_maintenance_window_task.rb', line 1067

def input
  @input
end

#nameString? (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_propertiesObject



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_jsiiObject



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