Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Synopsis
- data CreateTable = CreateTable {}
- createTable :: Text -> [AttributeDefinition] -> KeySchema -> ProvisionedThroughput -> CreateTable
- newtype CreateTableResult = CreateTableResult {}
- data DescribeTable = DescribeTable {
- dTableName :: Text
- newtype DescribeTableResult = DescribeTableResult {}
- data UpdateTable = UpdateTable {}
- newtype UpdateTableResult = UpdateTableResult {}
- data DeleteTable = DeleteTable {}
- newtype DeleteTableResult = DeleteTableResult {}
- data ListTables = ListTables
- newtype ListTablesResult = ListTablesResult {
- tableNames :: [Text]
- data AttributeType
- data AttributeDefinition = AttributeDefinition {}
- data KeySchema
- data Projection
- data LocalSecondaryIndex = LocalSecondaryIndex {}
- data LocalSecondaryIndexStatus = LocalSecondaryIndexStatus {}
- data ProvisionedThroughput = ProvisionedThroughput {}
- data ProvisionedThroughputStatus = ProvisionedThroughputStatus {}
- data GlobalSecondaryIndex = GlobalSecondaryIndex {}
- data GlobalSecondaryIndexStatus = GlobalSecondaryIndexStatus {}
- data GlobalSecondaryIndexUpdate = GlobalSecondaryIndexUpdate {}
- data TableDescription = TableDescription {
- rTableName :: Text
- rTableSizeBytes :: Integer
- rTableStatus :: Text
- rCreationDateTime :: Maybe UTCTime
- rItemCount :: Integer
- rAttributeDefinitions :: [AttributeDefinition]
- rKeySchema :: Maybe KeySchema
- rProvisionedThroughput :: ProvisionedThroughputStatus
- rLocalSecondaryIndexes :: [LocalSecondaryIndexStatus]
- rGlobalSecondaryIndexes :: [GlobalSecondaryIndexStatus]
Commands
data CreateTable Source #
CreateTable | |
|
Instances
:: Text | Table name |
-> [AttributeDefinition] | |
-> KeySchema | |
-> ProvisionedThroughput | |
-> CreateTable |
newtype CreateTableResult Source #
Instances
FromJSON CreateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table parseJSON :: Value -> Parser CreateTableResult # parseJSONList :: Value -> Parser [CreateTableResult] # | |
AsMemoryResponse CreateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Show CreateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table showsPrec :: Int -> CreateTableResult -> ShowS # show :: CreateTableResult -> String # showList :: [CreateTableResult] -> ShowS # | |
ResponseConsumer r CreateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Transaction CreateTable CreateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type MemoryResponse CreateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type ResponseMetadata CreateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table |
data DescribeTable Source #
Instances
newtype DescribeTableResult Source #
Instances
FromJSON DescribeTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table parseJSON :: Value -> Parser DescribeTableResult # parseJSONList :: Value -> Parser [DescribeTableResult] # | |
AsMemoryResponse DescribeTableResult Source # | |
Show DescribeTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table showsPrec :: Int -> DescribeTableResult -> ShowS # show :: DescribeTableResult -> String # showList :: [DescribeTableResult] -> ShowS # | |
ResponseConsumer r DescribeTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Transaction DescribeTable DescribeTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type MemoryResponse DescribeTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type ResponseMetadata DescribeTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table |
data UpdateTable Source #
Instances
newtype UpdateTableResult Source #
Instances
FromJSON UpdateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table parseJSON :: Value -> Parser UpdateTableResult # parseJSONList :: Value -> Parser [UpdateTableResult] # | |
AsMemoryResponse UpdateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Show UpdateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table showsPrec :: Int -> UpdateTableResult -> ShowS # show :: UpdateTableResult -> String # showList :: [UpdateTableResult] -> ShowS # | |
ResponseConsumer r UpdateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Transaction UpdateTable UpdateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type MemoryResponse UpdateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type ResponseMetadata UpdateTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table |
data DeleteTable Source #
Instances
newtype DeleteTableResult Source #
Instances
FromJSON DeleteTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table parseJSON :: Value -> Parser DeleteTableResult # parseJSONList :: Value -> Parser [DeleteTableResult] # | |
AsMemoryResponse DeleteTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Show DeleteTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table showsPrec :: Int -> DeleteTableResult -> ShowS # show :: DeleteTableResult -> String # showList :: [DeleteTableResult] -> ShowS # | |
ResponseConsumer r DeleteTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Transaction DeleteTable DeleteTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type MemoryResponse DeleteTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type ResponseMetadata DeleteTableResult Source # | |
Defined in Aws.DynamoDb.Commands.Table |
data ListTables Source #
TODO: currently this does not support restarting a cutoff query because of size.
Instances
ToJSON ListTables Source # | |
Defined in Aws.DynamoDb.Commands.Table toJSON :: ListTables -> Value # toEncoding :: ListTables -> Encoding # toJSONList :: [ListTables] -> Value # toEncodingList :: [ListTables] -> Encoding # | |
SignQuery ListTables Source # | ServiceConfiguration: |
Defined in Aws.DynamoDb.Commands.Table type ServiceConfiguration ListTables :: Type -> Type Source # signQuery :: ListTables -> ServiceConfiguration ListTables queryType -> SignatureData -> SignedQuery Source # | |
Show ListTables Source # | |
Defined in Aws.DynamoDb.Commands.Table showsPrec :: Int -> ListTables -> ShowS # show :: ListTables -> String # showList :: [ListTables] -> ShowS # | |
Transaction ListTables ListTablesResult Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type ServiceConfiguration ListTables Source # | |
Defined in Aws.DynamoDb.Commands.Table |
newtype ListTablesResult Source #
Instances
Data passed in the commands
data AttributeType Source #
The type of a key attribute that appears in the table key or as a key in one of the indices.
Instances
data AttributeDefinition Source #
A key attribute that appears in the table key or as a key in one of the indices.
Instances
The key schema can either be a hash of a single attribute name or a hash attribute name and a range attribute name.
Instances
FromJSON KeySchema Source # | |
ToJSON KeySchema Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
Generic KeySchema Source # | |
Read KeySchema Source # | |
Show KeySchema Source # | |
Eq KeySchema Source # | |
Ord KeySchema Source # | |
Defined in Aws.DynamoDb.Commands.Table | |
type Rep KeySchema Source # | |
Defined in Aws.DynamoDb.Commands.Table type Rep KeySchema = D1 ('MetaData "KeySchema" "Aws.DynamoDb.Commands.Table" "aws-0.23-53MhTGUQZKYHDGpnpWUajt" 'False) (C1 ('MetaCons "HashOnly" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text)) :+: C1 ('MetaCons "HashAndRange" 'PrefixI 'False) (S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text) :*: S1 ('MetaSel ('Nothing :: Maybe Symbol) 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedLazy) (Rec0 Text))) |
data Projection Source #
This determines which attributes are projected into a secondary index.
Instances
FromJSON Projection Source # | |
Defined in Aws.DynamoDb.Commands.Table parseJSON :: Value -> Parser Projection # parseJSONList :: Value -> Parser [Projection] # | |
ToJSON Projection Source # | |
Defined in Aws.DynamoDb.Commands.Table toJSON :: Projection -> Value # toEncoding :: Projection -> Encoding # toJSONList :: [Projection] -> Value # toEncodingList :: [Projection] -> Encoding # | |
Show Projection Source # | |
Defined in Aws.DynamoDb.Commands.Table showsPrec :: Int -> Projection -> ShowS # show :: Projection -> String # showList :: [Projection] -> ShowS # |
data LocalSecondaryIndex Source #
Describes a single local secondary index. The KeySchema MUST share the same hash key attribute as the parent table, only the range key can differ.
Instances
data LocalSecondaryIndexStatus Source #
This is returned by AWS to describe the local secondary index.
Instances
data ProvisionedThroughput Source #
The target provisioned throughput you are requesting for the table or global secondary index.
Instances
data ProvisionedThroughputStatus Source #
This is returned by AWS as the status of the throughput for a table or global secondary index.
Instances
data GlobalSecondaryIndex Source #
Describes a global secondary index.
Instances
data GlobalSecondaryIndexStatus Source #
This is returned by AWS to describe the status of a global secondary index.
Instances
data GlobalSecondaryIndexUpdate Source #
This is used to request a change in the provisioned throughput of
a global secondary index as part of an UpdateTable
operation.
Instances
data TableDescription Source #
This describes the table and is the return value from AWS for all the table-related commands.
TableDescription | |
|