class Aws::Rails::ActionMailbox::RSpec::SubscriptionConfirmation

@api private

def authentic?

def authentic?
  @authentic
end

def headers

def headers
  { 'content-type' => 'application/json' }
end

def initialize(authentic: true, topic: 'topic:arn:default')

def initialize(authentic: true, topic: 'topic:arn:default')
  @authentic = authentic
  @topic = topic
end

def params

def params
  {
    'Type' => 'SubscriptionConfirmation',
    'TopicArn' => @topic,
    'SubscribeURL' => 'http://example.com/subscribe'
  }
end

def url

def url
  '/rails/action_mailbox/ses/inbound_emails'
end