Versions in this module Expand all Collapse all v1 v1.0.0 Sep 8, 2020 Changes in this version + type MockBatch struct + func NewMockBatch(ctrl *gomock.Controller) *MockBatch + func (m *MockBatch) EXPECT() *MockBatchMockRecorder + func (m *MockBatch) Get(keys ...dynamo.Keyed) dynamodb.BatchGet + func (m *MockBatch) Write() dynamodb.BatchWrite + type MockBatchGet struct + func NewMockBatchGet(ctrl *gomock.Controller) *MockBatchGet + func (m *MockBatchGet) All(out interface{}) error + func (m *MockBatchGet) AllWithContext(ctx aws.Context, out interface{}) error + func (m *MockBatchGet) And(keys ...dynamo.Keyed) dynamodb.BatchGet + func (m *MockBatchGet) Consistent(on bool) dynamodb.BatchGet + func (m *MockBatchGet) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.BatchGet + func (m *MockBatchGet) EXPECT() *MockBatchGetMockRecorder + func (m *MockBatchGet) Iter() dynamo.Iter + type MockBatchGetMockRecorder struct + func (mr *MockBatchGetMockRecorder) All(out interface{}) *gomock.Call + func (mr *MockBatchGetMockRecorder) AllWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockBatchGetMockRecorder) And(keys ...interface{}) *gomock.Call + func (mr *MockBatchGetMockRecorder) Consistent(on interface{}) *gomock.Call + func (mr *MockBatchGetMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockBatchGetMockRecorder) Iter() *gomock.Call + type MockBatchMockRecorder struct + func (mr *MockBatchMockRecorder) Get(keys ...interface{}) *gomock.Call + func (mr *MockBatchMockRecorder) Write() *gomock.Call + type MockBatchWrite struct + func NewMockBatchWrite(ctrl *gomock.Controller) *MockBatchWrite + func (m *MockBatchWrite) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.BatchWrite + func (m *MockBatchWrite) Delete(keys ...dynamo.Keyed) dynamodb.BatchWrite + func (m *MockBatchWrite) EXPECT() *MockBatchWriteMockRecorder + func (m *MockBatchWrite) Put(items ...interface{}) dynamodb.BatchWrite + func (m *MockBatchWrite) Run() (int, error) + func (m *MockBatchWrite) RunWithContext(ctx aws.Context) (int, error) + type MockBatchWriteMockRecorder struct + func (mr *MockBatchWriteMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockBatchWriteMockRecorder) Delete(keys ...interface{}) *gomock.Call + func (mr *MockBatchWriteMockRecorder) Put(items ...interface{}) *gomock.Call + func (mr *MockBatchWriteMockRecorder) Run() *gomock.Call + func (mr *MockBatchWriteMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockConditionCheck struct + func NewMockConditionCheck(ctrl *gomock.Controller) *MockConditionCheck + func (m *MockConditionCheck) EXPECT() *MockConditionCheckMockRecorder + func (m *MockConditionCheck) If(expr string, args ...interface{}) dynamodb.ConditionCheck + func (m *MockConditionCheck) IfExists() dynamodb.ConditionCheck + func (m *MockConditionCheck) IfNotExists() dynamodb.ConditionCheck + func (m *MockConditionCheck) Range(rangeKey string, value interface{}) dynamodb.ConditionCheck + type MockConditionCheckMockRecorder struct + func (mr *MockConditionCheckMockRecorder) If(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockConditionCheckMockRecorder) IfExists() *gomock.Call + func (mr *MockConditionCheckMockRecorder) IfNotExists() *gomock.Call + func (mr *MockConditionCheckMockRecorder) Range(rangeKey, value interface{}) *gomock.Call + type MockCreateTable struct + func NewMockCreateTable(ctrl *gomock.Controller) *MockCreateTable + func (m *MockCreateTable) EXPECT() *MockCreateTableMockRecorder + func (m *MockCreateTable) Index(index dynamo.Index) dynamodb.CreateTable + func (m *MockCreateTable) OnDemand(enabled bool) dynamodb.CreateTable + func (m *MockCreateTable) Project(index string, projection dynamo.IndexProjection, includeAttribs ...string) dynamodb.CreateTable + func (m *MockCreateTable) Provision(readUnits, writeUnits int64) dynamodb.CreateTable + func (m *MockCreateTable) ProvisionIndex(index string, readUnits, writeUnits int64) dynamodb.CreateTable + func (m *MockCreateTable) Run() error + func (m *MockCreateTable) RunWithContext(ctx aws.Context) error + func (m *MockCreateTable) Stream(view dynamo.StreamView) dynamodb.CreateTable + func (m *MockCreateTable) Tag(key, value string) dynamodb.CreateTable + type MockCreateTableMockRecorder struct + func (mr *MockCreateTableMockRecorder) Index(index interface{}) *gomock.Call + func (mr *MockCreateTableMockRecorder) OnDemand(enabled interface{}) *gomock.Call + func (mr *MockCreateTableMockRecorder) Project(index, projection interface{}, includeAttribs ...interface{}) *gomock.Call + func (mr *MockCreateTableMockRecorder) Provision(readUnits, writeUnits interface{}) *gomock.Call + func (mr *MockCreateTableMockRecorder) ProvisionIndex(index, readUnits, writeUnits interface{}) *gomock.Call + func (mr *MockCreateTableMockRecorder) Run() *gomock.Call + func (mr *MockCreateTableMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + func (mr *MockCreateTableMockRecorder) Stream(view interface{}) *gomock.Call + func (mr *MockCreateTableMockRecorder) Tag(key, value interface{}) *gomock.Call + type MockDB struct + func NewMockDB(ctrl *gomock.Controller) *MockDB + func (m *MockDB) Client() dynamodbiface.DynamoDBAPI + func (m *MockDB) CreateTable(name string, from interface{}) dynamodb.CreateTable + func (m *MockDB) EXPECT() *MockDBMockRecorder + func (m *MockDB) GetTx() dynamodb.GetTx + func (m *MockDB) ListTables() dynamodb.ListTables + func (m *MockDB) Table(name string) dynamodb.Table + func (m *MockDB) WriteTx() dynamodb.WriteTx + type MockDBMockRecorder struct + func (mr *MockDBMockRecorder) Client() *gomock.Call + func (mr *MockDBMockRecorder) CreateTable(name, from interface{}) *gomock.Call + func (mr *MockDBMockRecorder) GetTx() *gomock.Call + func (mr *MockDBMockRecorder) ListTables() *gomock.Call + func (mr *MockDBMockRecorder) Table(name interface{}) *gomock.Call + func (mr *MockDBMockRecorder) WriteTx() *gomock.Call + type MockDelete struct + func NewMockDelete(ctrl *gomock.Controller) *MockDelete + func (m *MockDelete) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.Delete + func (m *MockDelete) EXPECT() *MockDeleteMockRecorder + func (m *MockDelete) If(expr string, args ...interface{}) dynamodb.Delete + func (m *MockDelete) OldValue(out interface{}) error + func (m *MockDelete) OldValueWithContext(ctx aws.Context, out interface{}) error + func (m *MockDelete) Range(name string, value interface{}) dynamodb.Delete + func (m *MockDelete) Run() error + func (m *MockDelete) RunWithContext(ctx aws.Context) error + type MockDeleteMockRecorder struct + func (mr *MockDeleteMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockDeleteMockRecorder) If(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockDeleteMockRecorder) OldValue(out interface{}) *gomock.Call + func (mr *MockDeleteMockRecorder) OldValueWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockDeleteMockRecorder) Range(name, value interface{}) *gomock.Call + func (mr *MockDeleteMockRecorder) Run() *gomock.Call + func (mr *MockDeleteMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockDeleteTable struct + func NewMockDeleteTable(ctrl *gomock.Controller) *MockDeleteTable + func (m *MockDeleteTable) EXPECT() *MockDeleteTableMockRecorder + func (m *MockDeleteTable) Run() error + func (m *MockDeleteTable) RunWithContext(ctx aws.Context) error + type MockDeleteTableMockRecorder struct + func (mr *MockDeleteTableMockRecorder) Run() *gomock.Call + func (mr *MockDeleteTableMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockDescribeTTL struct + func NewMockDescribeTTL(ctrl *gomock.Controller) *MockDescribeTTL + func (m *MockDescribeTTL) EXPECT() *MockDescribeTTLMockRecorder + func (m *MockDescribeTTL) Run() (dynamo.TTLDescription, error) + func (m *MockDescribeTTL) RunWithContext(ctx aws.Context) (dynamo.TTLDescription, error) + type MockDescribeTTLMockRecorder struct + func (mr *MockDescribeTTLMockRecorder) Run() *gomock.Call + func (mr *MockDescribeTTLMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockDescribeTable struct + func NewMockDescribeTable(ctrl *gomock.Controller) *MockDescribeTable + func (m *MockDescribeTable) EXPECT() *MockDescribeTableMockRecorder + func (m *MockDescribeTable) Run() (dynamo.Description, error) + func (m *MockDescribeTable) RunWithContext(ctx aws.Context) (dynamo.Description, error) + type MockDescribeTableMockRecorder struct + func (mr *MockDescribeTableMockRecorder) Run() *gomock.Call + func (mr *MockDescribeTableMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockDynamoDBAPI struct + func NewMockDynamoDBAPI(ctrl *gomock.Controller) *MockDynamoDBAPI + func (m *MockDynamoDBAPI) BatchGetItem(arg0 *dynamodb.BatchGetItemInput) (*dynamodb.BatchGetItemOutput, error) + func (m *MockDynamoDBAPI) BatchGetItemPages(arg0 *dynamodb.BatchGetItemInput, ...) error + func (m *MockDynamoDBAPI) BatchGetItemPagesWithContext(arg0 aws.Context, arg1 *dynamodb.BatchGetItemInput, ...) error + func (m *MockDynamoDBAPI) BatchGetItemRequest(arg0 *dynamodb.BatchGetItemInput) (*request.Request, *dynamodb.BatchGetItemOutput) + func (m *MockDynamoDBAPI) BatchGetItemWithContext(arg0 aws.Context, arg1 *dynamodb.BatchGetItemInput, arg2 ...request.Option) (*dynamodb.BatchGetItemOutput, error) + func (m *MockDynamoDBAPI) BatchWriteItem(arg0 *dynamodb.BatchWriteItemInput) (*dynamodb.BatchWriteItemOutput, error) + func (m *MockDynamoDBAPI) BatchWriteItemRequest(arg0 *dynamodb.BatchWriteItemInput) (*request.Request, *dynamodb.BatchWriteItemOutput) + func (m *MockDynamoDBAPI) BatchWriteItemWithContext(arg0 aws.Context, arg1 *dynamodb.BatchWriteItemInput, arg2 ...request.Option) (*dynamodb.BatchWriteItemOutput, error) + func (m *MockDynamoDBAPI) CreateBackup(arg0 *dynamodb.CreateBackupInput) (*dynamodb.CreateBackupOutput, error) + func (m *MockDynamoDBAPI) CreateBackupRequest(arg0 *dynamodb.CreateBackupInput) (*request.Request, *dynamodb.CreateBackupOutput) + func (m *MockDynamoDBAPI) CreateBackupWithContext(arg0 aws.Context, arg1 *dynamodb.CreateBackupInput, arg2 ...request.Option) (*dynamodb.CreateBackupOutput, error) + func (m *MockDynamoDBAPI) CreateGlobalTable(arg0 *dynamodb.CreateGlobalTableInput) (*dynamodb.CreateGlobalTableOutput, error) + func (m *MockDynamoDBAPI) CreateGlobalTableRequest(arg0 *dynamodb.CreateGlobalTableInput) (*request.Request, *dynamodb.CreateGlobalTableOutput) + func (m *MockDynamoDBAPI) CreateGlobalTableWithContext(arg0 aws.Context, arg1 *dynamodb.CreateGlobalTableInput, ...) (*dynamodb.CreateGlobalTableOutput, error) + func (m *MockDynamoDBAPI) CreateTable(arg0 *dynamodb.CreateTableInput) (*dynamodb.CreateTableOutput, error) + func (m *MockDynamoDBAPI) CreateTableRequest(arg0 *dynamodb.CreateTableInput) (*request.Request, *dynamodb.CreateTableOutput) + func (m *MockDynamoDBAPI) CreateTableWithContext(arg0 aws.Context, arg1 *dynamodb.CreateTableInput, arg2 ...request.Option) (*dynamodb.CreateTableOutput, error) + func (m *MockDynamoDBAPI) DeleteBackup(arg0 *dynamodb.DeleteBackupInput) (*dynamodb.DeleteBackupOutput, error) + func (m *MockDynamoDBAPI) DeleteBackupRequest(arg0 *dynamodb.DeleteBackupInput) (*request.Request, *dynamodb.DeleteBackupOutput) + func (m *MockDynamoDBAPI) DeleteBackupWithContext(arg0 aws.Context, arg1 *dynamodb.DeleteBackupInput, arg2 ...request.Option) (*dynamodb.DeleteBackupOutput, error) + func (m *MockDynamoDBAPI) DeleteItem(arg0 *dynamodb.DeleteItemInput) (*dynamodb.DeleteItemOutput, error) + func (m *MockDynamoDBAPI) DeleteItemRequest(arg0 *dynamodb.DeleteItemInput) (*request.Request, *dynamodb.DeleteItemOutput) + func (m *MockDynamoDBAPI) DeleteItemWithContext(arg0 aws.Context, arg1 *dynamodb.DeleteItemInput, arg2 ...request.Option) (*dynamodb.DeleteItemOutput, error) + func (m *MockDynamoDBAPI) DeleteTable(arg0 *dynamodb.DeleteTableInput) (*dynamodb.DeleteTableOutput, error) + func (m *MockDynamoDBAPI) DeleteTableRequest(arg0 *dynamodb.DeleteTableInput) (*request.Request, *dynamodb.DeleteTableOutput) + func (m *MockDynamoDBAPI) DeleteTableWithContext(arg0 aws.Context, arg1 *dynamodb.DeleteTableInput, arg2 ...request.Option) (*dynamodb.DeleteTableOutput, error) + func (m *MockDynamoDBAPI) DescribeBackup(arg0 *dynamodb.DescribeBackupInput) (*dynamodb.DescribeBackupOutput, error) + func (m *MockDynamoDBAPI) DescribeBackupRequest(arg0 *dynamodb.DescribeBackupInput) (*request.Request, *dynamodb.DescribeBackupOutput) + func (m *MockDynamoDBAPI) DescribeBackupWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeBackupInput, arg2 ...request.Option) (*dynamodb.DescribeBackupOutput, error) + func (m *MockDynamoDBAPI) DescribeContinuousBackups(arg0 *dynamodb.DescribeContinuousBackupsInput) (*dynamodb.DescribeContinuousBackupsOutput, error) + func (m *MockDynamoDBAPI) DescribeContinuousBackupsRequest(arg0 *dynamodb.DescribeContinuousBackupsInput) (*request.Request, *dynamodb.DescribeContinuousBackupsOutput) + func (m *MockDynamoDBAPI) DescribeContinuousBackupsWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeContinuousBackupsInput, ...) (*dynamodb.DescribeContinuousBackupsOutput, error) + func (m *MockDynamoDBAPI) DescribeContributorInsights(arg0 *dynamodb.DescribeContributorInsightsInput) (*dynamodb.DescribeContributorInsightsOutput, error) + func (m *MockDynamoDBAPI) DescribeContributorInsightsRequest(arg0 *dynamodb.DescribeContributorInsightsInput) (*request.Request, *dynamodb.DescribeContributorInsightsOutput) + func (m *MockDynamoDBAPI) DescribeContributorInsightsWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeContributorInsightsInput, ...) (*dynamodb.DescribeContributorInsightsOutput, error) + func (m *MockDynamoDBAPI) DescribeEndpoints(arg0 *dynamodb.DescribeEndpointsInput) (*dynamodb.DescribeEndpointsOutput, error) + func (m *MockDynamoDBAPI) DescribeEndpointsRequest(arg0 *dynamodb.DescribeEndpointsInput) (*request.Request, *dynamodb.DescribeEndpointsOutput) + func (m *MockDynamoDBAPI) DescribeEndpointsWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeEndpointsInput, ...) (*dynamodb.DescribeEndpointsOutput, error) + func (m *MockDynamoDBAPI) DescribeGlobalTable(arg0 *dynamodb.DescribeGlobalTableInput) (*dynamodb.DescribeGlobalTableOutput, error) + func (m *MockDynamoDBAPI) DescribeGlobalTableRequest(arg0 *dynamodb.DescribeGlobalTableInput) (*request.Request, *dynamodb.DescribeGlobalTableOutput) + func (m *MockDynamoDBAPI) DescribeGlobalTableSettings(arg0 *dynamodb.DescribeGlobalTableSettingsInput) (*dynamodb.DescribeGlobalTableSettingsOutput, error) + func (m *MockDynamoDBAPI) DescribeGlobalTableSettingsRequest(arg0 *dynamodb.DescribeGlobalTableSettingsInput) (*request.Request, *dynamodb.DescribeGlobalTableSettingsOutput) + func (m *MockDynamoDBAPI) DescribeGlobalTableSettingsWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeGlobalTableSettingsInput, ...) (*dynamodb.DescribeGlobalTableSettingsOutput, error) + func (m *MockDynamoDBAPI) DescribeGlobalTableWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeGlobalTableInput, ...) (*dynamodb.DescribeGlobalTableOutput, error) + func (m *MockDynamoDBAPI) DescribeLimits(arg0 *dynamodb.DescribeLimitsInput) (*dynamodb.DescribeLimitsOutput, error) + func (m *MockDynamoDBAPI) DescribeLimitsRequest(arg0 *dynamodb.DescribeLimitsInput) (*request.Request, *dynamodb.DescribeLimitsOutput) + func (m *MockDynamoDBAPI) DescribeLimitsWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeLimitsInput, arg2 ...request.Option) (*dynamodb.DescribeLimitsOutput, error) + func (m *MockDynamoDBAPI) DescribeTable(arg0 *dynamodb.DescribeTableInput) (*dynamodb.DescribeTableOutput, error) + func (m *MockDynamoDBAPI) DescribeTableReplicaAutoScaling(arg0 *dynamodb.DescribeTableReplicaAutoScalingInput) (*dynamodb.DescribeTableReplicaAutoScalingOutput, error) + func (m *MockDynamoDBAPI) DescribeTableReplicaAutoScalingRequest(arg0 *dynamodb.DescribeTableReplicaAutoScalingInput) (*request.Request, *dynamodb.DescribeTableReplicaAutoScalingOutput) + func (m *MockDynamoDBAPI) DescribeTableReplicaAutoScalingWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeTableReplicaAutoScalingInput, ...) (*dynamodb.DescribeTableReplicaAutoScalingOutput, error) + func (m *MockDynamoDBAPI) DescribeTableRequest(arg0 *dynamodb.DescribeTableInput) (*request.Request, *dynamodb.DescribeTableOutput) + func (m *MockDynamoDBAPI) DescribeTableWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeTableInput, arg2 ...request.Option) (*dynamodb.DescribeTableOutput, error) + func (m *MockDynamoDBAPI) DescribeTimeToLive(arg0 *dynamodb.DescribeTimeToLiveInput) (*dynamodb.DescribeTimeToLiveOutput, error) + func (m *MockDynamoDBAPI) DescribeTimeToLiveRequest(arg0 *dynamodb.DescribeTimeToLiveInput) (*request.Request, *dynamodb.DescribeTimeToLiveOutput) + func (m *MockDynamoDBAPI) DescribeTimeToLiveWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeTimeToLiveInput, ...) (*dynamodb.DescribeTimeToLiveOutput, error) + func (m *MockDynamoDBAPI) EXPECT() *MockDynamoDBAPIMockRecorder + func (m *MockDynamoDBAPI) GetItem(arg0 *dynamodb.GetItemInput) (*dynamodb.GetItemOutput, error) + func (m *MockDynamoDBAPI) GetItemRequest(arg0 *dynamodb.GetItemInput) (*request.Request, *dynamodb.GetItemOutput) + func (m *MockDynamoDBAPI) GetItemWithContext(arg0 aws.Context, arg1 *dynamodb.GetItemInput, arg2 ...request.Option) (*dynamodb.GetItemOutput, error) + func (m *MockDynamoDBAPI) ListBackups(arg0 *dynamodb.ListBackupsInput) (*dynamodb.ListBackupsOutput, error) + func (m *MockDynamoDBAPI) ListBackupsRequest(arg0 *dynamodb.ListBackupsInput) (*request.Request, *dynamodb.ListBackupsOutput) + func (m *MockDynamoDBAPI) ListBackupsWithContext(arg0 aws.Context, arg1 *dynamodb.ListBackupsInput, arg2 ...request.Option) (*dynamodb.ListBackupsOutput, error) + func (m *MockDynamoDBAPI) ListContributorInsights(arg0 *dynamodb.ListContributorInsightsInput) (*dynamodb.ListContributorInsightsOutput, error) + func (m *MockDynamoDBAPI) ListContributorInsightsPages(arg0 *dynamodb.ListContributorInsightsInput, ...) error + func (m *MockDynamoDBAPI) ListContributorInsightsPagesWithContext(arg0 aws.Context, arg1 *dynamodb.ListContributorInsightsInput, ...) error + func (m *MockDynamoDBAPI) ListContributorInsightsRequest(arg0 *dynamodb.ListContributorInsightsInput) (*request.Request, *dynamodb.ListContributorInsightsOutput) + func (m *MockDynamoDBAPI) ListContributorInsightsWithContext(arg0 aws.Context, arg1 *dynamodb.ListContributorInsightsInput, ...) (*dynamodb.ListContributorInsightsOutput, error) + func (m *MockDynamoDBAPI) ListGlobalTables(arg0 *dynamodb.ListGlobalTablesInput) (*dynamodb.ListGlobalTablesOutput, error) + func (m *MockDynamoDBAPI) ListGlobalTablesRequest(arg0 *dynamodb.ListGlobalTablesInput) (*request.Request, *dynamodb.ListGlobalTablesOutput) + func (m *MockDynamoDBAPI) ListGlobalTablesWithContext(arg0 aws.Context, arg1 *dynamodb.ListGlobalTablesInput, arg2 ...request.Option) (*dynamodb.ListGlobalTablesOutput, error) + func (m *MockDynamoDBAPI) ListTables(arg0 *dynamodb.ListTablesInput) (*dynamodb.ListTablesOutput, error) + func (m *MockDynamoDBAPI) ListTablesPages(arg0 *dynamodb.ListTablesInput, ...) error + func (m *MockDynamoDBAPI) ListTablesPagesWithContext(arg0 aws.Context, arg1 *dynamodb.ListTablesInput, ...) error + func (m *MockDynamoDBAPI) ListTablesRequest(arg0 *dynamodb.ListTablesInput) (*request.Request, *dynamodb.ListTablesOutput) + func (m *MockDynamoDBAPI) ListTablesWithContext(arg0 aws.Context, arg1 *dynamodb.ListTablesInput, arg2 ...request.Option) (*dynamodb.ListTablesOutput, error) + func (m *MockDynamoDBAPI) ListTagsOfResource(arg0 *dynamodb.ListTagsOfResourceInput) (*dynamodb.ListTagsOfResourceOutput, error) + func (m *MockDynamoDBAPI) ListTagsOfResourceRequest(arg0 *dynamodb.ListTagsOfResourceInput) (*request.Request, *dynamodb.ListTagsOfResourceOutput) + func (m *MockDynamoDBAPI) ListTagsOfResourceWithContext(arg0 aws.Context, arg1 *dynamodb.ListTagsOfResourceInput, ...) (*dynamodb.ListTagsOfResourceOutput, error) + func (m *MockDynamoDBAPI) PutItem(arg0 *dynamodb.PutItemInput) (*dynamodb.PutItemOutput, error) + func (m *MockDynamoDBAPI) PutItemRequest(arg0 *dynamodb.PutItemInput) (*request.Request, *dynamodb.PutItemOutput) + func (m *MockDynamoDBAPI) PutItemWithContext(arg0 aws.Context, arg1 *dynamodb.PutItemInput, arg2 ...request.Option) (*dynamodb.PutItemOutput, error) + func (m *MockDynamoDBAPI) Query(arg0 *dynamodb.QueryInput) (*dynamodb.QueryOutput, error) + func (m *MockDynamoDBAPI) QueryPages(arg0 *dynamodb.QueryInput, arg1 func(*dynamodb.QueryOutput, bool) bool) error + func (m *MockDynamoDBAPI) QueryPagesWithContext(arg0 aws.Context, arg1 *dynamodb.QueryInput, ...) error + func (m *MockDynamoDBAPI) QueryRequest(arg0 *dynamodb.QueryInput) (*request.Request, *dynamodb.QueryOutput) + func (m *MockDynamoDBAPI) QueryWithContext(arg0 aws.Context, arg1 *dynamodb.QueryInput, arg2 ...request.Option) (*dynamodb.QueryOutput, error) + func (m *MockDynamoDBAPI) RestoreTableFromBackup(arg0 *dynamodb.RestoreTableFromBackupInput) (*dynamodb.RestoreTableFromBackupOutput, error) + func (m *MockDynamoDBAPI) RestoreTableFromBackupRequest(arg0 *dynamodb.RestoreTableFromBackupInput) (*request.Request, *dynamodb.RestoreTableFromBackupOutput) + func (m *MockDynamoDBAPI) RestoreTableFromBackupWithContext(arg0 aws.Context, arg1 *dynamodb.RestoreTableFromBackupInput, ...) (*dynamodb.RestoreTableFromBackupOutput, error) + func (m *MockDynamoDBAPI) RestoreTableToPointInTime(arg0 *dynamodb.RestoreTableToPointInTimeInput) (*dynamodb.RestoreTableToPointInTimeOutput, error) + func (m *MockDynamoDBAPI) RestoreTableToPointInTimeRequest(arg0 *dynamodb.RestoreTableToPointInTimeInput) (*request.Request, *dynamodb.RestoreTableToPointInTimeOutput) + func (m *MockDynamoDBAPI) RestoreTableToPointInTimeWithContext(arg0 aws.Context, arg1 *dynamodb.RestoreTableToPointInTimeInput, ...) (*dynamodb.RestoreTableToPointInTimeOutput, error) + func (m *MockDynamoDBAPI) Scan(arg0 *dynamodb.ScanInput) (*dynamodb.ScanOutput, error) + func (m *MockDynamoDBAPI) ScanPages(arg0 *dynamodb.ScanInput, arg1 func(*dynamodb.ScanOutput, bool) bool) error + func (m *MockDynamoDBAPI) ScanPagesWithContext(arg0 aws.Context, arg1 *dynamodb.ScanInput, ...) error + func (m *MockDynamoDBAPI) ScanRequest(arg0 *dynamodb.ScanInput) (*request.Request, *dynamodb.ScanOutput) + func (m *MockDynamoDBAPI) ScanWithContext(arg0 aws.Context, arg1 *dynamodb.ScanInput, arg2 ...request.Option) (*dynamodb.ScanOutput, error) + func (m *MockDynamoDBAPI) TagResource(arg0 *dynamodb.TagResourceInput) (*dynamodb.TagResourceOutput, error) + func (m *MockDynamoDBAPI) TagResourceRequest(arg0 *dynamodb.TagResourceInput) (*request.Request, *dynamodb.TagResourceOutput) + func (m *MockDynamoDBAPI) TagResourceWithContext(arg0 aws.Context, arg1 *dynamodb.TagResourceInput, arg2 ...request.Option) (*dynamodb.TagResourceOutput, error) + func (m *MockDynamoDBAPI) TransactGetItems(arg0 *dynamodb.TransactGetItemsInput) (*dynamodb.TransactGetItemsOutput, error) + func (m *MockDynamoDBAPI) TransactGetItemsRequest(arg0 *dynamodb.TransactGetItemsInput) (*request.Request, *dynamodb.TransactGetItemsOutput) + func (m *MockDynamoDBAPI) TransactGetItemsWithContext(arg0 aws.Context, arg1 *dynamodb.TransactGetItemsInput, arg2 ...request.Option) (*dynamodb.TransactGetItemsOutput, error) + func (m *MockDynamoDBAPI) TransactWriteItems(arg0 *dynamodb.TransactWriteItemsInput) (*dynamodb.TransactWriteItemsOutput, error) + func (m *MockDynamoDBAPI) TransactWriteItemsRequest(arg0 *dynamodb.TransactWriteItemsInput) (*request.Request, *dynamodb.TransactWriteItemsOutput) + func (m *MockDynamoDBAPI) TransactWriteItemsWithContext(arg0 aws.Context, arg1 *dynamodb.TransactWriteItemsInput, ...) (*dynamodb.TransactWriteItemsOutput, error) + func (m *MockDynamoDBAPI) UntagResource(arg0 *dynamodb.UntagResourceInput) (*dynamodb.UntagResourceOutput, error) + func (m *MockDynamoDBAPI) UntagResourceRequest(arg0 *dynamodb.UntagResourceInput) (*request.Request, *dynamodb.UntagResourceOutput) + func (m *MockDynamoDBAPI) UntagResourceWithContext(arg0 aws.Context, arg1 *dynamodb.UntagResourceInput, arg2 ...request.Option) (*dynamodb.UntagResourceOutput, error) + func (m *MockDynamoDBAPI) UpdateContinuousBackups(arg0 *dynamodb.UpdateContinuousBackupsInput) (*dynamodb.UpdateContinuousBackupsOutput, error) + func (m *MockDynamoDBAPI) UpdateContinuousBackupsRequest(arg0 *dynamodb.UpdateContinuousBackupsInput) (*request.Request, *dynamodb.UpdateContinuousBackupsOutput) + func (m *MockDynamoDBAPI) UpdateContinuousBackupsWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateContinuousBackupsInput, ...) (*dynamodb.UpdateContinuousBackupsOutput, error) + func (m *MockDynamoDBAPI) UpdateContributorInsights(arg0 *dynamodb.UpdateContributorInsightsInput) (*dynamodb.UpdateContributorInsightsOutput, error) + func (m *MockDynamoDBAPI) UpdateContributorInsightsRequest(arg0 *dynamodb.UpdateContributorInsightsInput) (*request.Request, *dynamodb.UpdateContributorInsightsOutput) + func (m *MockDynamoDBAPI) UpdateContributorInsightsWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateContributorInsightsInput, ...) (*dynamodb.UpdateContributorInsightsOutput, error) + func (m *MockDynamoDBAPI) UpdateGlobalTable(arg0 *dynamodb.UpdateGlobalTableInput) (*dynamodb.UpdateGlobalTableOutput, error) + func (m *MockDynamoDBAPI) UpdateGlobalTableRequest(arg0 *dynamodb.UpdateGlobalTableInput) (*request.Request, *dynamodb.UpdateGlobalTableOutput) + func (m *MockDynamoDBAPI) UpdateGlobalTableSettings(arg0 *dynamodb.UpdateGlobalTableSettingsInput) (*dynamodb.UpdateGlobalTableSettingsOutput, error) + func (m *MockDynamoDBAPI) UpdateGlobalTableSettingsRequest(arg0 *dynamodb.UpdateGlobalTableSettingsInput) (*request.Request, *dynamodb.UpdateGlobalTableSettingsOutput) + func (m *MockDynamoDBAPI) UpdateGlobalTableSettingsWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateGlobalTableSettingsInput, ...) (*dynamodb.UpdateGlobalTableSettingsOutput, error) + func (m *MockDynamoDBAPI) UpdateGlobalTableWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateGlobalTableInput, ...) (*dynamodb.UpdateGlobalTableOutput, error) + func (m *MockDynamoDBAPI) UpdateItem(arg0 *dynamodb.UpdateItemInput) (*dynamodb.UpdateItemOutput, error) + func (m *MockDynamoDBAPI) UpdateItemRequest(arg0 *dynamodb.UpdateItemInput) (*request.Request, *dynamodb.UpdateItemOutput) + func (m *MockDynamoDBAPI) UpdateItemWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateItemInput, arg2 ...request.Option) (*dynamodb.UpdateItemOutput, error) + func (m *MockDynamoDBAPI) UpdateTable(arg0 *dynamodb.UpdateTableInput) (*dynamodb.UpdateTableOutput, error) + func (m *MockDynamoDBAPI) UpdateTableReplicaAutoScaling(arg0 *dynamodb.UpdateTableReplicaAutoScalingInput) (*dynamodb.UpdateTableReplicaAutoScalingOutput, error) + func (m *MockDynamoDBAPI) UpdateTableReplicaAutoScalingRequest(arg0 *dynamodb.UpdateTableReplicaAutoScalingInput) (*request.Request, *dynamodb.UpdateTableReplicaAutoScalingOutput) + func (m *MockDynamoDBAPI) UpdateTableReplicaAutoScalingWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateTableReplicaAutoScalingInput, ...) (*dynamodb.UpdateTableReplicaAutoScalingOutput, error) + func (m *MockDynamoDBAPI) UpdateTableRequest(arg0 *dynamodb.UpdateTableInput) (*request.Request, *dynamodb.UpdateTableOutput) + func (m *MockDynamoDBAPI) UpdateTableWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateTableInput, arg2 ...request.Option) (*dynamodb.UpdateTableOutput, error) + func (m *MockDynamoDBAPI) UpdateTimeToLive(arg0 *dynamodb.UpdateTimeToLiveInput) (*dynamodb.UpdateTimeToLiveOutput, error) + func (m *MockDynamoDBAPI) UpdateTimeToLiveRequest(arg0 *dynamodb.UpdateTimeToLiveInput) (*request.Request, *dynamodb.UpdateTimeToLiveOutput) + func (m *MockDynamoDBAPI) UpdateTimeToLiveWithContext(arg0 aws.Context, arg1 *dynamodb.UpdateTimeToLiveInput, arg2 ...request.Option) (*dynamodb.UpdateTimeToLiveOutput, error) + func (m *MockDynamoDBAPI) WaitUntilTableExists(arg0 *dynamodb.DescribeTableInput) error + func (m *MockDynamoDBAPI) WaitUntilTableExistsWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeTableInput, ...) error + func (m *MockDynamoDBAPI) WaitUntilTableNotExists(arg0 *dynamodb.DescribeTableInput) error + func (m *MockDynamoDBAPI) WaitUntilTableNotExistsWithContext(arg0 aws.Context, arg1 *dynamodb.DescribeTableInput, ...) error + type MockDynamoDBAPIMockRecorder struct + func (mr *MockDynamoDBAPIMockRecorder) BatchGetItem(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) BatchGetItemPages(arg0, arg1 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) BatchGetItemPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) BatchGetItemRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) BatchGetItemWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) BatchWriteItem(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) BatchWriteItemRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) BatchWriteItemWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateBackup(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateBackupRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateBackupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateGlobalTable(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateGlobalTableRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateGlobalTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateTable(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateTableRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) CreateTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteBackup(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteBackupRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteBackupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteItem(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteItemRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteItemWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteTable(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteTableRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DeleteTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeBackup(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeBackupRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeBackupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeContinuousBackups(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeContinuousBackupsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeContinuousBackupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeContributorInsights(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeContributorInsightsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeContributorInsightsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeEndpoints(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeEndpointsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeEndpointsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeGlobalTable(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeGlobalTableRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeGlobalTableSettings(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeGlobalTableSettingsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeGlobalTableSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeGlobalTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeLimits(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeLimitsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeLimitsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTable(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTableReplicaAutoScaling(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTableReplicaAutoScalingRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTableReplicaAutoScalingWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTableRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTimeToLive(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTimeToLiveRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) DescribeTimeToLiveWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) GetItem(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) GetItemRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) GetItemWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListBackups(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListBackupsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListBackupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListContributorInsights(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListContributorInsightsPages(arg0, arg1 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListContributorInsightsPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListContributorInsightsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListContributorInsightsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListGlobalTables(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListGlobalTablesRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListGlobalTablesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTables(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTablesPages(arg0, arg1 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTablesPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTablesRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTablesWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTagsOfResource(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTagsOfResourceRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ListTagsOfResourceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) PutItem(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) PutItemRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) PutItemWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) Query(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) QueryPages(arg0, arg1 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) QueryPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) QueryRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) QueryWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) RestoreTableFromBackup(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) RestoreTableFromBackupRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) RestoreTableFromBackupWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) RestoreTableToPointInTime(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) RestoreTableToPointInTimeRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) RestoreTableToPointInTimeWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) Scan(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ScanPages(arg0, arg1 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ScanPagesWithContext(arg0, arg1, arg2 interface{}, arg3 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ScanRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) ScanWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TagResource(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TagResourceRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TagResourceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TransactGetItems(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TransactGetItemsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TransactGetItemsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TransactWriteItems(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TransactWriteItemsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) TransactWriteItemsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UntagResource(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UntagResourceRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UntagResourceWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateContinuousBackups(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateContinuousBackupsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateContinuousBackupsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateContributorInsights(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateContributorInsightsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateContributorInsightsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateGlobalTable(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateGlobalTableRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateGlobalTableSettings(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateGlobalTableSettingsRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateGlobalTableSettingsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateGlobalTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateItem(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateItemRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateItemWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTable(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTableReplicaAutoScaling(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTableReplicaAutoScalingRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTableReplicaAutoScalingWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTableRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTableWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTimeToLive(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTimeToLiveRequest(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) UpdateTimeToLiveWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) WaitUntilTableExists(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) WaitUntilTableExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) WaitUntilTableNotExists(arg0 interface{}) *gomock.Call + func (mr *MockDynamoDBAPIMockRecorder) WaitUntilTableNotExistsWithContext(arg0, arg1 interface{}, arg2 ...interface{}) *gomock.Call + type MockGetTx struct + func NewMockGetTx(ctrl *gomock.Controller) *MockGetTx + func (m *MockGetTx) All(out interface{}) error + func (m *MockGetTx) AllWithContext(ctx aws.Context, out interface{}) error + func (m *MockGetTx) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.GetTx + func (m *MockGetTx) EXPECT() *MockGetTxMockRecorder + func (m *MockGetTx) Get(q dynamodb.Query) dynamodb.GetTx + func (m *MockGetTx) GetOne(q dynamodb.Query, out interface{}) dynamodb.GetTx + func (m *MockGetTx) Run() error + func (m *MockGetTx) RunWithContext(ctx aws.Context) error + type MockGetTxMockRecorder struct + func (mr *MockGetTxMockRecorder) All(out interface{}) *gomock.Call + func (mr *MockGetTxMockRecorder) AllWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockGetTxMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockGetTxMockRecorder) Get(q interface{}) *gomock.Call + func (mr *MockGetTxMockRecorder) GetOne(q, out interface{}) *gomock.Call + func (mr *MockGetTxMockRecorder) Run() *gomock.Call + func (mr *MockGetTxMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockListTables struct + func NewMockListTables(ctrl *gomock.Controller) *MockListTables + func (m *MockListTables) All() ([]string, error) + func (m *MockListTables) AllWithContext(ctx aws.Context) ([]string, error) + func (m *MockListTables) EXPECT() *MockListTablesMockRecorder + func (m *MockListTables) Iter() dynamo.Iter + type MockListTablesMockRecorder struct + func (mr *MockListTablesMockRecorder) All() *gomock.Call + func (mr *MockListTablesMockRecorder) AllWithContext(ctx interface{}) *gomock.Call + func (mr *MockListTablesMockRecorder) Iter() *gomock.Call + type MockPut struct + func NewMockPut(ctrl *gomock.Controller) *MockPut + func (m *MockPut) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.Put + func (m *MockPut) EXPECT() *MockPutMockRecorder + func (m *MockPut) If(expr string, args ...interface{}) dynamodb.Put + func (m *MockPut) OldValue(out interface{}) error + func (m *MockPut) OldValueWithContext(ctx aws.Context, out interface{}) error + func (m *MockPut) Run() error + func (m *MockPut) RunWithContext(ctx aws.Context) error + type MockPutMockRecorder struct + func (mr *MockPutMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockPutMockRecorder) If(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockPutMockRecorder) OldValue(out interface{}) *gomock.Call + func (mr *MockPutMockRecorder) OldValueWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockPutMockRecorder) Run() *gomock.Call + func (mr *MockPutMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockQuery struct + func NewMockQuery(ctrl *gomock.Controller) *MockQuery + func (m *MockQuery) All(out interface{}) error + func (m *MockQuery) AllWithContext(ctx aws.Context, out interface{}) error + func (m *MockQuery) AllWithLastEvaluatedKey(out interface{}) (dynamo.PagingKey, error) + func (m *MockQuery) AllWithLastEvaluatedKeyContext(ctx aws.Context, out interface{}) (dynamo.PagingKey, error) + func (m *MockQuery) Consistent(on bool) dynamodb.Query + func (m *MockQuery) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.Query + func (m *MockQuery) Count() (int64, error) + func (m *MockQuery) CountWithContext(ctx aws.Context) (int64, error) + func (m *MockQuery) EXPECT() *MockQueryMockRecorder + func (m *MockQuery) Filter(expr string, args ...interface{}) dynamodb.Query + func (m *MockQuery) Index(name string) dynamodb.Query + func (m *MockQuery) Iter() dynamo.PagingIter + func (m *MockQuery) Limit(limit int64) dynamodb.Query + func (m *MockQuery) One(out interface{}) error + func (m *MockQuery) OneWithContext(ctx aws.Context, out interface{}) error + func (m *MockQuery) Order(order dynamo.Order) dynamodb.Query + func (m *MockQuery) Project(paths ...string) dynamodb.Query + func (m *MockQuery) ProjectExpr(expr string, args ...interface{}) dynamodb.Query + func (m *MockQuery) Range(name string, op dynamo.Operator, values ...interface{}) dynamodb.Query + func (m *MockQuery) SearchLimit(limit int64) dynamodb.Query + func (m *MockQuery) StartFrom(key dynamo.PagingKey) dynamodb.Query + type MockQueryMockRecorder struct + func (mr *MockQueryMockRecorder) All(out interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) AllWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) AllWithLastEvaluatedKey(out interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) AllWithLastEvaluatedKeyContext(ctx, out interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Consistent(on interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Count() *gomock.Call + func (mr *MockQueryMockRecorder) CountWithContext(ctx interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Filter(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Index(name interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Iter() *gomock.Call + func (mr *MockQueryMockRecorder) Limit(limit interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) One(out interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) OneWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Order(order interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Project(paths ...interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) ProjectExpr(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) Range(name, op interface{}, values ...interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) SearchLimit(limit interface{}) *gomock.Call + func (mr *MockQueryMockRecorder) StartFrom(key interface{}) *gomock.Call + type MockScan struct + func NewMockScan(ctrl *gomock.Controller) *MockScan + func (m *MockScan) All(out interface{}) error + func (m *MockScan) AllWithContext(ctx aws.Context, out interface{}) error + func (m *MockScan) AllWithLastEvaluatedKey(out interface{}) (dynamo.PagingKey, error) + func (m *MockScan) AllWithLastEvaluatedKeyContext(ctx aws.Context, out interface{}) (dynamo.PagingKey, error) + func (m *MockScan) Consistent(on bool) dynamodb.Scan + func (m *MockScan) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.Scan + func (m *MockScan) Count() (int64, error) + func (m *MockScan) CountWithContext(ctx aws.Context) (int64, error) + func (m *MockScan) EXPECT() *MockScanMockRecorder + func (m *MockScan) Filter(expr string, args ...interface{}) dynamodb.Scan + func (m *MockScan) Index(name string) dynamodb.Scan + func (m *MockScan) Iter() dynamo.PagingIter + func (m *MockScan) Limit(limit int64) dynamodb.Scan + func (m *MockScan) Project(paths ...string) dynamodb.Scan + func (m *MockScan) SearchLimit(limit int64) dynamodb.Scan + func (m *MockScan) StartFrom(key dynamo.PagingKey) dynamodb.Scan + type MockScanMockRecorder struct + func (mr *MockScanMockRecorder) All(out interface{}) *gomock.Call + func (mr *MockScanMockRecorder) AllWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockScanMockRecorder) AllWithLastEvaluatedKey(out interface{}) *gomock.Call + func (mr *MockScanMockRecorder) AllWithLastEvaluatedKeyContext(ctx, out interface{}) *gomock.Call + func (mr *MockScanMockRecorder) Consistent(on interface{}) *gomock.Call + func (mr *MockScanMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockScanMockRecorder) Count() *gomock.Call + func (mr *MockScanMockRecorder) CountWithContext(ctx interface{}) *gomock.Call + func (mr *MockScanMockRecorder) Filter(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockScanMockRecorder) Index(name interface{}) *gomock.Call + func (mr *MockScanMockRecorder) Iter() *gomock.Call + func (mr *MockScanMockRecorder) Limit(limit interface{}) *gomock.Call + func (mr *MockScanMockRecorder) Project(paths ...interface{}) *gomock.Call + func (mr *MockScanMockRecorder) SearchLimit(limit interface{}) *gomock.Call + func (mr *MockScanMockRecorder) StartFrom(key interface{}) *gomock.Call + type MockTable struct + func NewMockTable(ctrl *gomock.Controller) *MockTable + func (m *MockTable) Batch(hashAndRangeKeyName ...string) dynamodb.Batch + func (m *MockTable) Check(hashKey string, value interface{}) dynamodb.ConditionCheck + func (m *MockTable) Delete(name string, value interface{}) dynamodb.Delete + func (m *MockTable) DeleteTable() dynamodb.DeleteTable + func (m *MockTable) Describe() dynamodb.DescribeTable + func (m *MockTable) DescribeTTL() dynamodb.DescribeTTL + func (m *MockTable) EXPECT() *MockTableMockRecorder + func (m *MockTable) Get(name string, value interface{}) dynamodb.Query + func (m *MockTable) Name() string + func (m *MockTable) Put(item interface{}) dynamodb.Put + func (m *MockTable) Scan() dynamodb.Scan + func (m *MockTable) Update(hashKey string, value interface{}) dynamodb.Update + func (m *MockTable) UpdateTTL(attribute string, enabled bool) dynamodb.UpdateTTL + func (m *MockTable) UpdateTable() dynamodb.UpdateTable + type MockTableMockRecorder struct + func (mr *MockTableMockRecorder) Batch(hashAndRangeKeyName ...interface{}) *gomock.Call + func (mr *MockTableMockRecorder) Check(hashKey, value interface{}) *gomock.Call + func (mr *MockTableMockRecorder) Delete(name, value interface{}) *gomock.Call + func (mr *MockTableMockRecorder) DeleteTable() *gomock.Call + func (mr *MockTableMockRecorder) Describe() *gomock.Call + func (mr *MockTableMockRecorder) DescribeTTL() *gomock.Call + func (mr *MockTableMockRecorder) Get(name, value interface{}) *gomock.Call + func (mr *MockTableMockRecorder) Name() *gomock.Call + func (mr *MockTableMockRecorder) Put(item interface{}) *gomock.Call + func (mr *MockTableMockRecorder) Scan() *gomock.Call + func (mr *MockTableMockRecorder) Update(hashKey, value interface{}) *gomock.Call + func (mr *MockTableMockRecorder) UpdateTTL(attribute, enabled interface{}) *gomock.Call + func (mr *MockTableMockRecorder) UpdateTable() *gomock.Call + type MockUpdate struct + func NewMockUpdate(ctrl *gomock.Controller) *MockUpdate + func (m *MockUpdate) Add(path string, value interface{}) dynamodb.Update + func (m *MockUpdate) AddFloatsToSet(path string, values ...float64) dynamodb.Update + func (m *MockUpdate) AddIntsToSet(path string, values ...int) dynamodb.Update + func (m *MockUpdate) AddStringsToSet(path string, values ...string) dynamodb.Update + func (m *MockUpdate) Append(path string, value interface{}) dynamodb.Update + func (m *MockUpdate) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.Update + func (m *MockUpdate) DeleteFloatsFromSet(path string, values ...float64) dynamodb.Update + func (m *MockUpdate) DeleteIntsFromSet(path string, values ...int) dynamodb.Update + func (m *MockUpdate) DeleteStringsFromSet(path string, values ...string) dynamodb.Update + func (m *MockUpdate) EXPECT() *MockUpdateMockRecorder + func (m *MockUpdate) If(expr string, args ...interface{}) dynamodb.Update + func (m *MockUpdate) OldValue(out interface{}) error + func (m *MockUpdate) OldValueWithContext(ctx aws.Context, out interface{}) error + func (m *MockUpdate) Prepend(path string, value interface{}) dynamodb.Update + func (m *MockUpdate) Range(name string, value interface{}) dynamodb.Update + func (m *MockUpdate) Remove(paths ...string) dynamodb.Update + func (m *MockUpdate) RemoveExpr(expr string, args ...interface{}) dynamodb.Update + func (m *MockUpdate) Run() error + func (m *MockUpdate) RunWithContext(ctx aws.Context) error + func (m *MockUpdate) Set(path string, value interface{}) dynamodb.Update + func (m *MockUpdate) SetExpr(expr string, args ...interface{}) dynamodb.Update + func (m *MockUpdate) SetIfNotExists(path string, value interface{}) dynamodb.Update + func (m *MockUpdate) SetNullable(path string, value interface{}) dynamodb.Update + func (m *MockUpdate) SetSet(path string, value interface{}) dynamodb.Update + func (m *MockUpdate) Value(out interface{}) error + func (m *MockUpdate) ValueWithContext(ctx aws.Context, out interface{}) error + type MockUpdateMockRecorder struct + func (mr *MockUpdateMockRecorder) Add(path, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) AddFloatsToSet(path interface{}, values ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) AddIntsToSet(path interface{}, values ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) AddStringsToSet(path interface{}, values ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) Append(path, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) DeleteFloatsFromSet(path interface{}, values ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) DeleteIntsFromSet(path interface{}, values ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) DeleteStringsFromSet(path interface{}, values ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) If(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) OldValue(out interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) OldValueWithContext(ctx, out interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) Prepend(path, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) Range(name, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) Remove(paths ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) RemoveExpr(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) Run() *gomock.Call + func (mr *MockUpdateMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) Set(path, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) SetExpr(expr interface{}, args ...interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) SetIfNotExists(path, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) SetNullable(path, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) SetSet(path, value interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) Value(out interface{}) *gomock.Call + func (mr *MockUpdateMockRecorder) ValueWithContext(ctx, out interface{}) *gomock.Call + type MockUpdateTTL struct + func NewMockUpdateTTL(ctrl *gomock.Controller) *MockUpdateTTL + func (m *MockUpdateTTL) EXPECT() *MockUpdateTTLMockRecorder + func (m *MockUpdateTTL) Run() error + func (m *MockUpdateTTL) RunWithContext(ctx aws.Context) error + type MockUpdateTTLMockRecorder struct + func (mr *MockUpdateTTLMockRecorder) Run() *gomock.Call + func (mr *MockUpdateTTLMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + type MockUpdateTable struct + func NewMockUpdateTable(ctrl *gomock.Controller) *MockUpdateTable + func (m *MockUpdateTable) CreateIndex(index dynamo.Index) dynamodb.UpdateTable + func (m *MockUpdateTable) DeleteIndex(name string) dynamodb.UpdateTable + func (m *MockUpdateTable) DisableStream() dynamodb.UpdateTable + func (m *MockUpdateTable) EXPECT() *MockUpdateTableMockRecorder + func (m *MockUpdateTable) OnDemand(enabled bool) dynamodb.UpdateTable + func (m *MockUpdateTable) Provision(read, write int64) dynamodb.UpdateTable + func (m *MockUpdateTable) ProvisionIndex(name string, read, write int64) dynamodb.UpdateTable + func (m *MockUpdateTable) Run() (dynamo.Description, error) + func (m *MockUpdateTable) RunWithContext(ctx aws.Context) (dynamo.Description, error) + func (m *MockUpdateTable) Stream(view dynamo.StreamView) dynamodb.UpdateTable + type MockUpdateTableMockRecorder struct + func (mr *MockUpdateTableMockRecorder) CreateIndex(index interface{}) *gomock.Call + func (mr *MockUpdateTableMockRecorder) DeleteIndex(name interface{}) *gomock.Call + func (mr *MockUpdateTableMockRecorder) DisableStream() *gomock.Call + func (mr *MockUpdateTableMockRecorder) OnDemand(enabled interface{}) *gomock.Call + func (mr *MockUpdateTableMockRecorder) Provision(read, write interface{}) *gomock.Call + func (mr *MockUpdateTableMockRecorder) ProvisionIndex(name, read, write interface{}) *gomock.Call + func (mr *MockUpdateTableMockRecorder) Run() *gomock.Call + func (mr *MockUpdateTableMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + func (mr *MockUpdateTableMockRecorder) Stream(view interface{}) *gomock.Call + type MockWriteTx struct + func NewMockWriteTx(ctrl *gomock.Controller) *MockWriteTx + func (m *MockWriteTx) Check(check *dynamo.ConditionCheck) dynamodb.WriteTx + func (m *MockWriteTx) ConsumedCapacity(cc *dynamo.ConsumedCapacity) dynamodb.WriteTx + func (m *MockWriteTx) Delete(d dynamodb.Delete) dynamodb.WriteTx + func (m *MockWriteTx) EXPECT() *MockWriteTxMockRecorder + func (m *MockWriteTx) Idempotent(enabled bool) dynamodb.WriteTx + func (m *MockWriteTx) IdempotentWithToken(token string) dynamodb.WriteTx + func (m *MockWriteTx) Put(p dynamodb.Put) dynamodb.WriteTx + func (m *MockWriteTx) Run() error + func (m *MockWriteTx) RunWithContext(ctx aws.Context) error + func (m *MockWriteTx) Update(u dynamodb.Update) dynamodb.WriteTx + type MockWriteTxMockRecorder struct + func (mr *MockWriteTxMockRecorder) Check(check interface{}) *gomock.Call + func (mr *MockWriteTxMockRecorder) ConsumedCapacity(cc interface{}) *gomock.Call + func (mr *MockWriteTxMockRecorder) Delete(d interface{}) *gomock.Call + func (mr *MockWriteTxMockRecorder) Idempotent(enabled interface{}) *gomock.Call + func (mr *MockWriteTxMockRecorder) IdempotentWithToken(token interface{}) *gomock.Call + func (mr *MockWriteTxMockRecorder) Put(p interface{}) *gomock.Call + func (mr *MockWriteTxMockRecorder) Run() *gomock.Call + func (mr *MockWriteTxMockRecorder) RunWithContext(ctx interface{}) *gomock.Call + func (mr *MockWriteTxMockRecorder) Update(u interface{}) *gomock.Call