amazonka-dynamodb-2.0: Amazon DynamoDB SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.DynamoDB.Types.TableCreationParameters

Description

 
Synopsis

Documentation

data TableCreationParameters Source #

The parameters for the table created as part of the import operation.

See: newTableCreationParameters smart constructor.

Constructors

TableCreationParameters' 

Fields

Instances

Instances details
FromJSON TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

ToJSON TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

Generic TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

Associated Types

type Rep TableCreationParameters :: Type -> Type #

Read TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

Show TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

NFData TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

Methods

rnf :: TableCreationParameters -> () #

Eq TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

Hashable TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

type Rep TableCreationParameters Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.TableCreationParameters

type Rep TableCreationParameters = D1 ('MetaData "TableCreationParameters" "Amazonka.DynamoDB.Types.TableCreationParameters" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "TableCreationParameters'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "billingMode") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe BillingMode)) :*: (S1 ('MetaSel ('Just "globalSecondaryIndexes") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [GlobalSecondaryIndex])) :*: S1 ('MetaSel ('Just "provisionedThroughput") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe ProvisionedThroughput)))) :*: ((S1 ('MetaSel ('Just "sSESpecification") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SSESpecification)) :*: S1 ('MetaSel ('Just "tableName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)) :*: (S1 ('MetaSel ('Just "attributeDefinitions") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [AttributeDefinition]) :*: S1 ('MetaSel ('Just "keySchema") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty KeySchemaElement))))))

newTableCreationParameters Source #

Create a value of TableCreationParameters with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:billingMode:TableCreationParameters', tableCreationParameters_billingMode - The billing mode for provisioning the table created as part of the import operation.

$sel:globalSecondaryIndexes:TableCreationParameters', tableCreationParameters_globalSecondaryIndexes - The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.

TableCreationParameters, tableCreationParameters_provisionedThroughput - Undocumented member.

$sel:sSESpecification:TableCreationParameters', tableCreationParameters_sSESpecification - Undocumented member.

$sel:tableName:TableCreationParameters', tableCreationParameters_tableName - The name of the table created as part of the import operation.

$sel:attributeDefinitions:TableCreationParameters', tableCreationParameters_attributeDefinitions - The attributes of the table created as part of the import operation.

TableCreationParameters, tableCreationParameters_keySchema - The primary key and option sort key of the table created as part of the import operation.

tableCreationParameters_billingMode :: Lens' TableCreationParameters (Maybe BillingMode) Source #

The billing mode for provisioning the table created as part of the import operation.

tableCreationParameters_globalSecondaryIndexes :: Lens' TableCreationParameters (Maybe [GlobalSecondaryIndex]) Source #

The Global Secondary Indexes (GSI) of the table to be created as part of the import operation.

tableCreationParameters_tableName :: Lens' TableCreationParameters Text Source #

The name of the table created as part of the import operation.

tableCreationParameters_attributeDefinitions :: Lens' TableCreationParameters [AttributeDefinition] Source #

The attributes of the table created as part of the import operation.

tableCreationParameters_keySchema :: Lens' TableCreationParameters (NonEmpty KeySchemaElement) Source #

The primary key and option sort key of the table created as part of the import operation.