Sha256: 7b2bb481a55ffd7eb4cb9279b41b35d32c0e3e1083c8bdb737cd40124c218b0b

Contents?: true

Size: 1.08 KB

Versions: 13

Compression:

Stored size: 1.08 KB

Contents

# frozen_string_literal: true

Aws.config[:ses] = {
  stub_responses: {
    list_identities: {
      identities: [
        'example.com'
      ]
    },
    list_identity_policies: {
      policy_names: [
        'my-identity-policy-name'
      ]
    },
    get_identity_dkim_attributes: {
      dkim_attributes: {
        'example.com' => {
          dkim_enabled: false,
          dkim_verification_status: 'NotStarted',
          dkim_tokens: []
        }
      }
    },
    get_identity_notification_attributes: {
      notification_attributes: {
        'example.com' => {
          bounce_topic: 'arn:aws:sns:us-east-1:1234567890:my-sns-topic',
          complaint_topic: 'arn:aws:sns:us-east-1:1234567890:my-sns-topic',
          delivery_topic: 'arn:aws:sns:us-east-1:1234567890:my-sns-topic',
          forwarding_enabled: true
        }
      }
    },
    get_identity_verification_attributes: {
      verification_attributes: {
        'example.com' => {
          verification_status: 'Success',
          verification_token: 'XXXXXXXXXXXXXXXABCXXXXXXXXXXXXXXX'
        }
      }
    }
  }
}

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
awspec-1.31.0 lib/awspec/stub/ses_identity.rb
awspec-1.30.0 lib/awspec/stub/ses_identity.rb
awspec-1.29.3 lib/awspec/stub/ses_identity.rb
awspec-1.29.2 lib/awspec/stub/ses_identity.rb
awspec-1.29.1 lib/awspec/stub/ses_identity.rb
awspec-1.29.0 lib/awspec/stub/ses_identity.rb
awspec-1.28.2 lib/awspec/stub/ses_identity.rb
awspec-1.28.1 lib/awspec/stub/ses_identity.rb
awspec-1.28.0 lib/awspec/stub/ses_identity.rb
awspec-1.27.1 lib/awspec/stub/ses_identity.rb
awspec-1.27.0 lib/awspec/stub/ses_identity.rb
awspec-1.26.0 lib/awspec/stub/ses_identity.rb
awspec-1.25.2 lib/awspec/stub/ses_identity.rb