class Crowbar::Client::App::Ses

A Thor based CLI wrapper for SES commands

Public Instance Methods

upload(file) click to toggle source

SES config upload command

It will upload yaml file with SES configuration to the server. Data inside this file could be used later for integrating SES cluster with other services.

@param file [String] the path to the file

# File lib/crowbar/client/app/ses.rb, line 42
def upload(file)
  Command::Ses::Upload.new(
    *command_params(
      file: file
    )
  ).execute
rescue => e
  catch_errors(e)
end