class AWS::SNS::Subscription

def confirmation_authenticated?

Returns:
  • (Boolean) - Returns true if the subscription confirmation
def confirmation_authenticated?
  return true if @authenticated
  if authenticated = get_attributes['ConfirmationWasAuthenticated']
    @authenticated = true
  else
    false
  end
end