static get Constants()

in source/checksum/lib/api/index.js [54:75]


  static get Constants() {
    return {
      Steps: {
        Arn: {
          Regex: /^arn:aws:states:[a-z\d-]+:\d{12}:execution:[a-zA-Z\d-_]+:[a-fA-F\d]{8}(-[a-fA-F\d]{4}){3}-[a-fA-F\d]{12}$/,
        },
      },
      S3: {
        Retrieval: {
          Tiers: [
            'Standard',
            'Bulk',
            'Expedited',
          ],
        },
      },
      Algorithms: [
        'md5',
        'sha1',
      ],
    };
  }