Sha256: 2548236852ac8d7a3e8f6a2c9be1e820db7061b854bf69dfeac3b808f76e5201
Contents?: true
Size: 1.54 KB
Versions: 62
Compression:
Stored size: 1.54 KB
Contents
Resources: JobsTable: Type: AWS::DynamoDB::Table Properties: TableName: ${self:custom.funktor.JobsTableName} AttributeDefinitions: - AttributeName: jobShard AttributeType: S - AttributeName: jobId AttributeType: S - AttributeName: category AttributeType: S - AttributeName: performAt AttributeType: S - AttributeName: queueable AttributeType: S KeySchema: - AttributeName: jobShard KeyType: HASH - AttributeName: jobId KeyType: RANGE GlobalSecondaryIndexes: - IndexName: performAtIndex KeySchema: - AttributeName: queueable KeyType: HASH - AttributeName: performAt KeyType: RANGE Projection: NonKeyAttributes: - jobId - payload - category ProjectionType: INCLUDE - IndexName: categoryIndex KeySchema: - AttributeName: category KeyType: HASH - AttributeName: performAt KeyType: RANGE Projection: NonKeyAttributes: - jobId - payload - category ProjectionType: INCLUDE BillingMode: PAY_PER_REQUEST # Set the capacity based on the stage #ProvisionedThroughput: #ReadCapacityUnits: ${self:custom.tableThroughput} #WriteCapacityUnits: ${self:custom.tableThroughput} Outputs: JobsTable: Value: Ref: JobsTable
Version data entries
62 entries across 31 versions & 1 rubygems