src/main/java/com/amazonaws/services/dynamodbv2/transactions/TransactionDynamoDBFacade.java [354:366]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public CreateTableResult createTable(
            List<AttributeDefinition> attributeDefinitions, String tableName,
            List<KeySchemaElement> keySchema,
            ProvisionedThroughput provisionedThroughput)
            throws AmazonServiceException, AmazonClientException {
        throw new UnsupportedOperationException("Use the underlying client instance instead");
    }

    @Override
    public PutItemResult putItem(String tableName,
            Map<String, AttributeValue> item) throws AmazonServiceException,
            AmazonClientException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/dynamodbv2/transactions/TransactionManagerDynamoDBFacade.java [347:359]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public CreateTableResult createTable(
            List<AttributeDefinition> attributeDefinitions, String tableName,
            List<KeySchemaElement> keySchema,
            ProvisionedThroughput provisionedThroughput)
            throws AmazonServiceException, AmazonClientException {
        throw new UnsupportedOperationException("Use the underlying client instance instead");
    }

    @Override
    public PutItemResult putItem(String tableName,
            Map<String, AttributeValue> item) throws AmazonServiceException,
            AmazonClientException {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



