Interface TableConstructor

interface TableConstructor {
    new TableConstructornew (name, primaryKey?, primaryKeyType?, opts?): Table;
}

Constructors

Constructors

  • Creates a new Table.

    Parameters

    • name: string

      A unique name for the table.

    • Optional primaryKey: Input<string>

      An optional primary key name.

    • Optional primaryKeyType: Input<PrimaryKeyType>

      An optional primary key type.

    • Optional opts: ResourceOptions

      A bag of options that controls how this resource behaves.

    Returns Table

Generated using TypeDoc