class AWS::Flow::MethodPair

Groups a method name with an associated data converter.

Attributes

data_converter[RW]

The data converter for the method pair.

method_name[RW]

The method name for the method pair.

Public Class Methods

new(method_name, data_converter) click to toggle source

Creates a new MethodPair instance.

@param method_name

The method name for the method pair.

@param data_converter

The data converter for the method pair.
# File lib/aws/decider/decider.rb, line 35
def initialize(method_name, data_converter)
  @method_name = method_name
  @data_converter = data_converter
end