Entradas

Mostrando las entradas con la etiqueta Stack to create a table with DynamoDB in AWS

Stack to create a table with DynamoDB in AWS

Stack to create a table with DynamoDB in AWS Cloudformation: Description: Table for create an user Parameters: Stage: Description: Environment Name Type: String DynamodbTableName: Description: Table name Type: String Resources: SATContractsDBTable: Type: AWS::DynamoDB::Table Properties: TableName: !Sub "${DynamodbTableName}" BillingMode: PAY_PER_REQUEST AttributeDefinitions: - AttributeName: id AttributeType: N - AttributeName: username AttributeType: S KeySchema: - AttributeName: id KeyType: HASH - AttributeName: username KeyType: RANGE Tags: -