class Fog::Parsers::AWS::SES::DescribeActiveReceiptRuleSet

Public Class Methods

aws_schema() click to toggle source

docs.aws.amazon.com/ses/latest/APIReference/API_DescribeActiveReceiptRuleSet.html

# File lib/fog/aws/requests/ses/describe_active_receipt_rule_set.rb, line 7
def self.aws_schema
  {
    'Metadata' => {
      'Name' => :string,
      'CreatedTimestamp' => :time,
    },
    'Rules' => [{
      'Actions' => [{
        'AddHeaderAction' => {
          'HeaderName' => :string,
          'HeaderValue' => :string,
        },
        'BounceAction' => {
          'Message' => :string,
          'Sender' => :string,
          'SmtpReplyCode' => :string,
          'StatusCode' => :string,
          'TopicArn' => :string,
        },
        'LambdaAction' => {
          'FunctionArn' => :string,
          'InvocationType' => 'Event|RequestResponse',
          'TopicArn' => :string,
        },
        'S3Action' => {
          'BucketName' => :string,
          'KmsKeyArn' => :string,
          'ObjectKeyPrefix' => :string,
          'TopicArn' => :string,
        },
        'SNSAction' => {
          'Encoding' => 'UTF-8|Base64',
          'TopicArn' => :string,
        },
        'StopAction' => {
          'Scope' => 'RuleSet',
          'TopicArn' => :string,
        },
        'WorkmailAction' => {
          'OrganizationArn' => :string,
          'TopicArn' => :string,
        },
      }],
      'Enabled' => :boolean,
      'Name' => :string,
      'Recipients' => [:string],
      'ScanEnabled' => :boolean,
      'TlsPolicy' => 'Require|Optional',
    }]
  }
end