module Fog::AWS::DataPipeline::Shared

Public Instance Methods

transform_objects(objects) click to toggle source

Take a list of pipeline object hashes as specified in the Data Pipeline JSON format and transform it into the format expected by the API

# File lib/fog/aws/requests/data_pipeline/put_pipeline_definition.rb, line 42
def transform_objects(objects)
  objects.map { |object| JSONObject.new(object).to_api }
end