aws-sdk-dynamodb 1.75.0 → 1.77.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-dynamodb/client.rb +293 -6
- data/lib/aws-sdk-dynamodb/client_api.rb +153 -0
- data/lib/aws-sdk-dynamodb/errors.rb +32 -0
- data/lib/aws-sdk-dynamodb/types.rb +622 -5
- data/lib/aws-sdk-dynamodb.rb +1 -1
- metadata +2 -2
@@ -1026,7 +1026,7 @@ module Aws::DynamoDB
|
|
1026
1026
|
# @return [String]
|
1027
1027
|
#
|
1028
1028
|
# @!attribute [rw] message
|
1029
|
-
# The error message associated with the PartiQL batch
|
1029
|
+
# The error message associated with the PartiQL batch response.
|
1030
1030
|
# @return [String]
|
1031
1031
|
#
|
1032
1032
|
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/BatchStatementError AWS API Documentation
|
@@ -2331,6 +2331,38 @@ module Aws::DynamoDB
|
|
2331
2331
|
include Aws::Structure
|
2332
2332
|
end
|
2333
2333
|
|
2334
|
+
# Processing options for the CSV file being imported.
|
2335
|
+
#
|
2336
|
+
# @note When making an API call, you may pass CsvOptions
|
2337
|
+
# data as a hash:
|
2338
|
+
#
|
2339
|
+
# {
|
2340
|
+
# delimiter: "CsvDelimiter",
|
2341
|
+
# header_list: ["CsvHeader"],
|
2342
|
+
# }
|
2343
|
+
#
|
2344
|
+
# @!attribute [rw] delimiter
|
2345
|
+
# The delimiter used for separating items in the CSV file being
|
2346
|
+
# imported.
|
2347
|
+
# @return [String]
|
2348
|
+
#
|
2349
|
+
# @!attribute [rw] header_list
|
2350
|
+
# List of the headers used to specify a common header for all source
|
2351
|
+
# CSV files being imported. If this field is specified then the first
|
2352
|
+
# line of each CSV file is treated as data instead of the header. If
|
2353
|
+
# this field is not specified the the first line of each CSV file is
|
2354
|
+
# treated as the header.
|
2355
|
+
# @return [Array<String>]
|
2356
|
+
#
|
2357
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/CsvOptions AWS API Documentation
|
2358
|
+
#
|
2359
|
+
class CsvOptions < Struct.new(
|
2360
|
+
:delimiter,
|
2361
|
+
:header_list)
|
2362
|
+
SENSITIVE = []
|
2363
|
+
include Aws::Structure
|
2364
|
+
end
|
2365
|
+
|
2334
2366
|
# Represents a request to perform a `DeleteItem` operation.
|
2335
2367
|
#
|
2336
2368
|
# @note When making an API call, you may pass Delete
|
@@ -3102,6 +3134,41 @@ module Aws::DynamoDB
|
|
3102
3134
|
include Aws::Structure
|
3103
3135
|
end
|
3104
3136
|
|
3137
|
+
# @note When making an API call, you may pass DescribeImportInput
|
3138
|
+
# data as a hash:
|
3139
|
+
#
|
3140
|
+
# {
|
3141
|
+
# import_arn: "ImportArn", # required
|
3142
|
+
# }
|
3143
|
+
#
|
3144
|
+
# @!attribute [rw] import_arn
|
3145
|
+
# The Amazon Resource Name (ARN) associated with the table you're
|
3146
|
+
# importing to.
|
3147
|
+
# @return [String]
|
3148
|
+
#
|
3149
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeImportInput AWS API Documentation
|
3150
|
+
#
|
3151
|
+
class DescribeImportInput < Struct.new(
|
3152
|
+
:import_arn)
|
3153
|
+
SENSITIVE = []
|
3154
|
+
include Aws::Structure
|
3155
|
+
end
|
3156
|
+
|
3157
|
+
# @!attribute [rw] import_table_description
|
3158
|
+
# Represents the properties of the table created for the import, and
|
3159
|
+
# parameters of the import. The import parameters include import
|
3160
|
+
# status, how many items were processed, and how many errors were
|
3161
|
+
# encountered.
|
3162
|
+
# @return [Types::ImportTableDescription]
|
3163
|
+
#
|
3164
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/DescribeImportOutput AWS API Documentation
|
3165
|
+
#
|
3166
|
+
class DescribeImportOutput < Struct.new(
|
3167
|
+
:import_table_description)
|
3168
|
+
SENSITIVE = []
|
3169
|
+
include Aws::Structure
|
3170
|
+
end
|
3171
|
+
|
3105
3172
|
# @note When making an API call, you may pass DescribeKinesisStreamingDestinationInput
|
3106
3173
|
# data as a hash:
|
3107
3174
|
#
|
@@ -3981,7 +4048,7 @@ module Aws::DynamoDB
|
|
3981
4048
|
#
|
3982
4049
|
# If you submit a request with the same client token but a change in
|
3983
4050
|
# other parameters within the 8-hour idempotency window, DynamoDB
|
3984
|
-
# returns an `
|
4051
|
+
# returns an `ImportConflictException`.
|
3985
4052
|
#
|
3986
4053
|
# **A suitable default value is auto-generated.** You should normally
|
3987
4054
|
# not need to pass this option.
|
@@ -4818,6 +4885,338 @@ module Aws::DynamoDB
|
|
4818
4885
|
include Aws::Structure
|
4819
4886
|
end
|
4820
4887
|
|
4888
|
+
# There was a conflict when importing from the specified S3 source. This
|
4889
|
+
# can occur when the current import conflicts with a previous import
|
4890
|
+
# request that had the same client token.
|
4891
|
+
#
|
4892
|
+
# @!attribute [rw] message
|
4893
|
+
# @return [String]
|
4894
|
+
#
|
4895
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ImportConflictException AWS API Documentation
|
4896
|
+
#
|
4897
|
+
class ImportConflictException < Struct.new(
|
4898
|
+
:message)
|
4899
|
+
SENSITIVE = []
|
4900
|
+
include Aws::Structure
|
4901
|
+
end
|
4902
|
+
|
4903
|
+
# The specified import was not found.
|
4904
|
+
#
|
4905
|
+
# @!attribute [rw] message
|
4906
|
+
# @return [String]
|
4907
|
+
#
|
4908
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ImportNotFoundException AWS API Documentation
|
4909
|
+
#
|
4910
|
+
class ImportNotFoundException < Struct.new(
|
4911
|
+
:message)
|
4912
|
+
SENSITIVE = []
|
4913
|
+
include Aws::Structure
|
4914
|
+
end
|
4915
|
+
|
4916
|
+
# Summary information about the source file for the import.
|
4917
|
+
#
|
4918
|
+
# @!attribute [rw] import_arn
|
4919
|
+
# The Amazon Resource Number (ARN) corresponding to the import
|
4920
|
+
# request.
|
4921
|
+
# @return [String]
|
4922
|
+
#
|
4923
|
+
# @!attribute [rw] import_status
|
4924
|
+
# The status of the import operation.
|
4925
|
+
# @return [String]
|
4926
|
+
#
|
4927
|
+
# @!attribute [rw] table_arn
|
4928
|
+
# The Amazon Resource Number (ARN) of the table being imported into.
|
4929
|
+
# @return [String]
|
4930
|
+
#
|
4931
|
+
# @!attribute [rw] s3_bucket_source
|
4932
|
+
# The path and S3 bucket of the source file that is being imported.
|
4933
|
+
# This includes the S3Bucket (required), S3KeyPrefix (optional) and
|
4934
|
+
# S3BucketOwner (optional if the bucket is owned by the requester).
|
4935
|
+
# @return [Types::S3BucketSource]
|
4936
|
+
#
|
4937
|
+
# @!attribute [rw] cloud_watch_log_group_arn
|
4938
|
+
# The Amazon Resource Number (ARN) of the Cloudwatch Log Group
|
4939
|
+
# associated with this import task.
|
4940
|
+
# @return [String]
|
4941
|
+
#
|
4942
|
+
# @!attribute [rw] input_format
|
4943
|
+
# The format of the source data. Valid values are `CSV`,
|
4944
|
+
# `DYNAMODB_JSON` or `ION`.
|
4945
|
+
# @return [String]
|
4946
|
+
#
|
4947
|
+
# @!attribute [rw] start_time
|
4948
|
+
# The time at which this import task began.
|
4949
|
+
# @return [Time]
|
4950
|
+
#
|
4951
|
+
# @!attribute [rw] end_time
|
4952
|
+
# The time at which this import task ended. (Does this include the
|
4953
|
+
# successful complete creation of the table it was imported to?)
|
4954
|
+
# @return [Time]
|
4955
|
+
#
|
4956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ImportSummary AWS API Documentation
|
4957
|
+
#
|
4958
|
+
class ImportSummary < Struct.new(
|
4959
|
+
:import_arn,
|
4960
|
+
:import_status,
|
4961
|
+
:table_arn,
|
4962
|
+
:s3_bucket_source,
|
4963
|
+
:cloud_watch_log_group_arn,
|
4964
|
+
:input_format,
|
4965
|
+
:start_time,
|
4966
|
+
:end_time)
|
4967
|
+
SENSITIVE = []
|
4968
|
+
include Aws::Structure
|
4969
|
+
end
|
4970
|
+
|
4971
|
+
# Represents the properties of the table being imported into.
|
4972
|
+
#
|
4973
|
+
# @!attribute [rw] import_arn
|
4974
|
+
# The Amazon Resource Number (ARN) corresponding to the import
|
4975
|
+
# request.
|
4976
|
+
# @return [String]
|
4977
|
+
#
|
4978
|
+
# @!attribute [rw] import_status
|
4979
|
+
# The status of the import.
|
4980
|
+
# @return [String]
|
4981
|
+
#
|
4982
|
+
# @!attribute [rw] table_arn
|
4983
|
+
# The Amazon Resource Number (ARN) of the table being imported into.
|
4984
|
+
# @return [String]
|
4985
|
+
#
|
4986
|
+
# @!attribute [rw] table_id
|
4987
|
+
# The table id corresponding to the table created by import table
|
4988
|
+
# process.
|
4989
|
+
# @return [String]
|
4990
|
+
#
|
4991
|
+
# @!attribute [rw] client_token
|
4992
|
+
# The client token that was provided for the import task. Reusing the
|
4993
|
+
# client token on retry makes a call to `ImportTable` idempotent.
|
4994
|
+
# @return [String]
|
4995
|
+
#
|
4996
|
+
# @!attribute [rw] s3_bucket_source
|
4997
|
+
# Values for the S3 bucket the source file is imported from. Includes
|
4998
|
+
# bucket name (required), key prefix (optional) and bucket account
|
4999
|
+
# owner ID (optional).
|
5000
|
+
# @return [Types::S3BucketSource]
|
5001
|
+
#
|
5002
|
+
# @!attribute [rw] error_count
|
5003
|
+
# The number of errors occurred on importing the source file into the
|
5004
|
+
# target table.
|
5005
|
+
# @return [Integer]
|
5006
|
+
#
|
5007
|
+
# @!attribute [rw] cloud_watch_log_group_arn
|
5008
|
+
# The Amazon Resource Number (ARN) of the Cloudwatch Log Group
|
5009
|
+
# associated with the target table.
|
5010
|
+
# @return [String]
|
5011
|
+
#
|
5012
|
+
# @!attribute [rw] input_format
|
5013
|
+
# The format of the source data going into the target table.
|
5014
|
+
# @return [String]
|
5015
|
+
#
|
5016
|
+
# @!attribute [rw] input_format_options
|
5017
|
+
# The format options for the data that was imported into the target
|
5018
|
+
# table. There is one value, CsvOption.
|
5019
|
+
# @return [Types::InputFormatOptions]
|
5020
|
+
#
|
5021
|
+
# @!attribute [rw] input_compression_type
|
5022
|
+
# The compression options for the data that has been imported into the
|
5023
|
+
# target table. The values are NONE, GZIP, or ZSTD.
|
5024
|
+
# @return [String]
|
5025
|
+
#
|
5026
|
+
# @!attribute [rw] table_creation_parameters
|
5027
|
+
# The parameters for the new table that is being imported into.
|
5028
|
+
# @return [Types::TableCreationParameters]
|
5029
|
+
#
|
5030
|
+
# @!attribute [rw] start_time
|
5031
|
+
# The time when this import task started.
|
5032
|
+
# @return [Time]
|
5033
|
+
#
|
5034
|
+
# @!attribute [rw] end_time
|
5035
|
+
# The time at which the creation of the table associated with this
|
5036
|
+
# import task completed.
|
5037
|
+
# @return [Time]
|
5038
|
+
#
|
5039
|
+
# @!attribute [rw] processed_size_bytes
|
5040
|
+
# The total size of data processed from the source file, in Bytes.
|
5041
|
+
# @return [Integer]
|
5042
|
+
#
|
5043
|
+
# @!attribute [rw] processed_item_count
|
5044
|
+
# The total number of items processed from the source file.
|
5045
|
+
# @return [Integer]
|
5046
|
+
#
|
5047
|
+
# @!attribute [rw] imported_item_count
|
5048
|
+
# The number of items successfully imported into the new table.
|
5049
|
+
# @return [Integer]
|
5050
|
+
#
|
5051
|
+
# @!attribute [rw] failure_code
|
5052
|
+
# The error code corresponding to the failure that the import job ran
|
5053
|
+
# into during execution.
|
5054
|
+
# @return [String]
|
5055
|
+
#
|
5056
|
+
# @!attribute [rw] failure_message
|
5057
|
+
# The error message corresponding to the failure that the import job
|
5058
|
+
# ran into during execution.
|
5059
|
+
# @return [String]
|
5060
|
+
#
|
5061
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ImportTableDescription AWS API Documentation
|
5062
|
+
#
|
5063
|
+
class ImportTableDescription < Struct.new(
|
5064
|
+
:import_arn,
|
5065
|
+
:import_status,
|
5066
|
+
:table_arn,
|
5067
|
+
:table_id,
|
5068
|
+
:client_token,
|
5069
|
+
:s3_bucket_source,
|
5070
|
+
:error_count,
|
5071
|
+
:cloud_watch_log_group_arn,
|
5072
|
+
:input_format,
|
5073
|
+
:input_format_options,
|
5074
|
+
:input_compression_type,
|
5075
|
+
:table_creation_parameters,
|
5076
|
+
:start_time,
|
5077
|
+
:end_time,
|
5078
|
+
:processed_size_bytes,
|
5079
|
+
:processed_item_count,
|
5080
|
+
:imported_item_count,
|
5081
|
+
:failure_code,
|
5082
|
+
:failure_message)
|
5083
|
+
SENSITIVE = []
|
5084
|
+
include Aws::Structure
|
5085
|
+
end
|
5086
|
+
|
5087
|
+
# @note When making an API call, you may pass ImportTableInput
|
5088
|
+
# data as a hash:
|
5089
|
+
#
|
5090
|
+
# {
|
5091
|
+
# client_token: "ClientToken",
|
5092
|
+
# s3_bucket_source: { # required
|
5093
|
+
# s3_bucket_owner: "S3BucketOwner",
|
5094
|
+
# s3_bucket: "S3Bucket", # required
|
5095
|
+
# s3_key_prefix: "S3Prefix",
|
5096
|
+
# },
|
5097
|
+
# input_format: "DYNAMODB_JSON", # required, accepts DYNAMODB_JSON, ION, CSV
|
5098
|
+
# input_format_options: {
|
5099
|
+
# csv: {
|
5100
|
+
# delimiter: "CsvDelimiter",
|
5101
|
+
# header_list: ["CsvHeader"],
|
5102
|
+
# },
|
5103
|
+
# },
|
5104
|
+
# input_compression_type: "GZIP", # accepts GZIP, ZSTD, NONE
|
5105
|
+
# table_creation_parameters: { # required
|
5106
|
+
# table_name: "TableName", # required
|
5107
|
+
# attribute_definitions: [ # required
|
5108
|
+
# {
|
5109
|
+
# attribute_name: "KeySchemaAttributeName", # required
|
5110
|
+
# attribute_type: "S", # required, accepts S, N, B
|
5111
|
+
# },
|
5112
|
+
# ],
|
5113
|
+
# key_schema: [ # required
|
5114
|
+
# {
|
5115
|
+
# attribute_name: "KeySchemaAttributeName", # required
|
5116
|
+
# key_type: "HASH", # required, accepts HASH, RANGE
|
5117
|
+
# },
|
5118
|
+
# ],
|
5119
|
+
# billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
|
5120
|
+
# provisioned_throughput: {
|
5121
|
+
# read_capacity_units: 1, # required
|
5122
|
+
# write_capacity_units: 1, # required
|
5123
|
+
# },
|
5124
|
+
# sse_specification: {
|
5125
|
+
# enabled: false,
|
5126
|
+
# sse_type: "AES256", # accepts AES256, KMS
|
5127
|
+
# kms_master_key_id: "KMSMasterKeyId",
|
5128
|
+
# },
|
5129
|
+
# global_secondary_indexes: [
|
5130
|
+
# {
|
5131
|
+
# index_name: "IndexName", # required
|
5132
|
+
# key_schema: [ # required
|
5133
|
+
# {
|
5134
|
+
# attribute_name: "KeySchemaAttributeName", # required
|
5135
|
+
# key_type: "HASH", # required, accepts HASH, RANGE
|
5136
|
+
# },
|
5137
|
+
# ],
|
5138
|
+
# projection: { # required
|
5139
|
+
# projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
|
5140
|
+
# non_key_attributes: ["NonKeyAttributeName"],
|
5141
|
+
# },
|
5142
|
+
# provisioned_throughput: {
|
5143
|
+
# read_capacity_units: 1, # required
|
5144
|
+
# write_capacity_units: 1, # required
|
5145
|
+
# },
|
5146
|
+
# },
|
5147
|
+
# ],
|
5148
|
+
# },
|
5149
|
+
# }
|
5150
|
+
#
|
5151
|
+
# @!attribute [rw] client_token
|
5152
|
+
# Providing a `ClientToken` makes the call to `ImportTableInput`
|
5153
|
+
# idempotent, meaning that multiple identical calls have the same
|
5154
|
+
# effect as one single call.
|
5155
|
+
#
|
5156
|
+
# A client token is valid for 8 hours after the first request that
|
5157
|
+
# uses it is completed. After 8 hours, any request with the same
|
5158
|
+
# client token is treated as a new request. Do not resubmit the same
|
5159
|
+
# request with the same client token for more than 8 hours, or the
|
5160
|
+
# result might not be idempotent.
|
5161
|
+
#
|
5162
|
+
# If you submit a request with the same client token but a change in
|
5163
|
+
# other parameters within the 8-hour idempotency window, DynamoDB
|
5164
|
+
# returns an `IdempotentParameterMismatch` exception.
|
5165
|
+
#
|
5166
|
+
# **A suitable default value is auto-generated.** You should normally
|
5167
|
+
# not need to pass this option.
|
5168
|
+
# @return [String]
|
5169
|
+
#
|
5170
|
+
# @!attribute [rw] s3_bucket_source
|
5171
|
+
# The S3 bucket that provides the source for the import.
|
5172
|
+
# @return [Types::S3BucketSource]
|
5173
|
+
#
|
5174
|
+
# @!attribute [rw] input_format
|
5175
|
+
# The format of the source data. Valid values for `ImportFormat` are
|
5176
|
+
# `CSV`, `DYNAMODB_JSON` or `ION`.
|
5177
|
+
# @return [String]
|
5178
|
+
#
|
5179
|
+
# @!attribute [rw] input_format_options
|
5180
|
+
# Additional properties that specify how the input is formatted,
|
5181
|
+
# @return [Types::InputFormatOptions]
|
5182
|
+
#
|
5183
|
+
# @!attribute [rw] input_compression_type
|
5184
|
+
# Type of compression to be used on the input coming from the imported
|
5185
|
+
# table.
|
5186
|
+
# @return [String]
|
5187
|
+
#
|
5188
|
+
# @!attribute [rw] table_creation_parameters
|
5189
|
+
# Parameters for the table to import the data into.
|
5190
|
+
# @return [Types::TableCreationParameters]
|
5191
|
+
#
|
5192
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ImportTableInput AWS API Documentation
|
5193
|
+
#
|
5194
|
+
class ImportTableInput < Struct.new(
|
5195
|
+
:client_token,
|
5196
|
+
:s3_bucket_source,
|
5197
|
+
:input_format,
|
5198
|
+
:input_format_options,
|
5199
|
+
:input_compression_type,
|
5200
|
+
:table_creation_parameters)
|
5201
|
+
SENSITIVE = []
|
5202
|
+
include Aws::Structure
|
5203
|
+
end
|
5204
|
+
|
5205
|
+
# @!attribute [rw] import_table_description
|
5206
|
+
# Represents the properties of the table created for the import, and
|
5207
|
+
# parameters of the import. The import parameters include import
|
5208
|
+
# status, how many items were processed, and how many errors were
|
5209
|
+
# encountered.
|
5210
|
+
# @return [Types::ImportTableDescription]
|
5211
|
+
#
|
5212
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ImportTableOutput AWS API Documentation
|
5213
|
+
#
|
5214
|
+
class ImportTableOutput < Struct.new(
|
5215
|
+
:import_table_description)
|
5216
|
+
SENSITIVE = []
|
5217
|
+
include Aws::Structure
|
5218
|
+
end
|
5219
|
+
|
4821
5220
|
# The operation tried to access a nonexistent index.
|
4822
5221
|
#
|
4823
5222
|
# @!attribute [rw] message
|
@@ -4831,6 +5230,32 @@ module Aws::DynamoDB
|
|
4831
5230
|
include Aws::Structure
|
4832
5231
|
end
|
4833
5232
|
|
5233
|
+
# The format options for the data that was imported into the target
|
5234
|
+
# table. There is one value, CsvOption.
|
5235
|
+
#
|
5236
|
+
# @note When making an API call, you may pass InputFormatOptions
|
5237
|
+
# data as a hash:
|
5238
|
+
#
|
5239
|
+
# {
|
5240
|
+
# csv: {
|
5241
|
+
# delimiter: "CsvDelimiter",
|
5242
|
+
# header_list: ["CsvHeader"],
|
5243
|
+
# },
|
5244
|
+
# }
|
5245
|
+
#
|
5246
|
+
# @!attribute [rw] csv
|
5247
|
+
# The options for imported source files in CSV format. The values are
|
5248
|
+
# Delimiter and HeaderList.
|
5249
|
+
# @return [Types::CsvOptions]
|
5250
|
+
#
|
5251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/InputFormatOptions AWS API Documentation
|
5252
|
+
#
|
5253
|
+
class InputFormatOptions < Struct.new(
|
5254
|
+
:csv)
|
5255
|
+
SENSITIVE = []
|
5256
|
+
include Aws::Structure
|
5257
|
+
end
|
5258
|
+
|
4834
5259
|
# An error occurred on the server side.
|
4835
5260
|
#
|
4836
5261
|
# @!attribute [rw] message
|
@@ -5465,6 +5890,59 @@ module Aws::DynamoDB
|
|
5465
5890
|
include Aws::Structure
|
5466
5891
|
end
|
5467
5892
|
|
5893
|
+
# @note When making an API call, you may pass ListImportsInput
|
5894
|
+
# data as a hash:
|
5895
|
+
#
|
5896
|
+
# {
|
5897
|
+
# table_arn: "TableArn",
|
5898
|
+
# page_size: 1,
|
5899
|
+
# next_token: "ImportNextToken",
|
5900
|
+
# }
|
5901
|
+
#
|
5902
|
+
# @!attribute [rw] table_arn
|
5903
|
+
# The Amazon Resource Name (ARN) associated with the table that was
|
5904
|
+
# imported to.
|
5905
|
+
# @return [String]
|
5906
|
+
#
|
5907
|
+
# @!attribute [rw] page_size
|
5908
|
+
# The number of `ImportSummary `objects returned in a single page.
|
5909
|
+
# @return [Integer]
|
5910
|
+
#
|
5911
|
+
# @!attribute [rw] next_token
|
5912
|
+
# An optional string that, if supplied, must be copied from the output
|
5913
|
+
# of a previous call to `ListImports`. When provided in this manner,
|
5914
|
+
# the API fetches the next page of results.
|
5915
|
+
# @return [String]
|
5916
|
+
#
|
5917
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ListImportsInput AWS API Documentation
|
5918
|
+
#
|
5919
|
+
class ListImportsInput < Struct.new(
|
5920
|
+
:table_arn,
|
5921
|
+
:page_size,
|
5922
|
+
:next_token)
|
5923
|
+
SENSITIVE = []
|
5924
|
+
include Aws::Structure
|
5925
|
+
end
|
5926
|
+
|
5927
|
+
# @!attribute [rw] import_summary_list
|
5928
|
+
# A list of `ImportSummary` objects.
|
5929
|
+
# @return [Array<Types::ImportSummary>]
|
5930
|
+
#
|
5931
|
+
# @!attribute [rw] next_token
|
5932
|
+
# If this value is returned, there are additional results to be
|
5933
|
+
# displayed. To retrieve them, call `ListImports` again, with
|
5934
|
+
# `NextToken` set to this value.
|
5935
|
+
# @return [String]
|
5936
|
+
#
|
5937
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/ListImportsOutput AWS API Documentation
|
5938
|
+
#
|
5939
|
+
class ListImportsOutput < Struct.new(
|
5940
|
+
:import_summary_list,
|
5941
|
+
:next_token)
|
5942
|
+
SENSITIVE = []
|
5943
|
+
include Aws::Structure
|
5944
|
+
end
|
5945
|
+
|
5468
5946
|
# Represents the input of a `ListTables` operation.
|
5469
5947
|
#
|
5470
5948
|
# @note When making an API call, you may pass ListTablesInput
|
@@ -8061,6 +8539,40 @@ module Aws::DynamoDB
|
|
8061
8539
|
include Aws::Structure
|
8062
8540
|
end
|
8063
8541
|
|
8542
|
+
# The S3 bucket that is being imported from.
|
8543
|
+
#
|
8544
|
+
# @note When making an API call, you may pass S3BucketSource
|
8545
|
+
# data as a hash:
|
8546
|
+
#
|
8547
|
+
# {
|
8548
|
+
# s3_bucket_owner: "S3BucketOwner",
|
8549
|
+
# s3_bucket: "S3Bucket", # required
|
8550
|
+
# s3_key_prefix: "S3Prefix",
|
8551
|
+
# }
|
8552
|
+
#
|
8553
|
+
# @!attribute [rw] s3_bucket_owner
|
8554
|
+
# The account number of the S3 bucket that is being imported from. If
|
8555
|
+
# the bucket is owned by the requester this is optional.
|
8556
|
+
# @return [String]
|
8557
|
+
#
|
8558
|
+
# @!attribute [rw] s3_bucket
|
8559
|
+
# The S3 bucket that is being imported from.
|
8560
|
+
# @return [String]
|
8561
|
+
#
|
8562
|
+
# @!attribute [rw] s3_key_prefix
|
8563
|
+
# The key prefix shared by all S3 Objects that are being imported.
|
8564
|
+
# @return [String]
|
8565
|
+
#
|
8566
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/S3BucketSource AWS API Documentation
|
8567
|
+
#
|
8568
|
+
class S3BucketSource < Struct.new(
|
8569
|
+
:s3_bucket_owner,
|
8570
|
+
:s3_bucket,
|
8571
|
+
:s3_key_prefix)
|
8572
|
+
SENSITIVE = []
|
8573
|
+
include Aws::Structure
|
8574
|
+
end
|
8575
|
+
|
8064
8576
|
# The description of the server-side encryption status on the specified
|
8065
8577
|
# table.
|
8066
8578
|
#
|
@@ -8815,6 +9327,111 @@ module Aws::DynamoDB
|
|
8815
9327
|
include Aws::Structure
|
8816
9328
|
end
|
8817
9329
|
|
9330
|
+
# The parameters for the table created as part of the import operation.
|
9331
|
+
#
|
9332
|
+
# @note When making an API call, you may pass TableCreationParameters
|
9333
|
+
# data as a hash:
|
9334
|
+
#
|
9335
|
+
# {
|
9336
|
+
# table_name: "TableName", # required
|
9337
|
+
# attribute_definitions: [ # required
|
9338
|
+
# {
|
9339
|
+
# attribute_name: "KeySchemaAttributeName", # required
|
9340
|
+
# attribute_type: "S", # required, accepts S, N, B
|
9341
|
+
# },
|
9342
|
+
# ],
|
9343
|
+
# key_schema: [ # required
|
9344
|
+
# {
|
9345
|
+
# attribute_name: "KeySchemaAttributeName", # required
|
9346
|
+
# key_type: "HASH", # required, accepts HASH, RANGE
|
9347
|
+
# },
|
9348
|
+
# ],
|
9349
|
+
# billing_mode: "PROVISIONED", # accepts PROVISIONED, PAY_PER_REQUEST
|
9350
|
+
# provisioned_throughput: {
|
9351
|
+
# read_capacity_units: 1, # required
|
9352
|
+
# write_capacity_units: 1, # required
|
9353
|
+
# },
|
9354
|
+
# sse_specification: {
|
9355
|
+
# enabled: false,
|
9356
|
+
# sse_type: "AES256", # accepts AES256, KMS
|
9357
|
+
# kms_master_key_id: "KMSMasterKeyId",
|
9358
|
+
# },
|
9359
|
+
# global_secondary_indexes: [
|
9360
|
+
# {
|
9361
|
+
# index_name: "IndexName", # required
|
9362
|
+
# key_schema: [ # required
|
9363
|
+
# {
|
9364
|
+
# attribute_name: "KeySchemaAttributeName", # required
|
9365
|
+
# key_type: "HASH", # required, accepts HASH, RANGE
|
9366
|
+
# },
|
9367
|
+
# ],
|
9368
|
+
# projection: { # required
|
9369
|
+
# projection_type: "ALL", # accepts ALL, KEYS_ONLY, INCLUDE
|
9370
|
+
# non_key_attributes: ["NonKeyAttributeName"],
|
9371
|
+
# },
|
9372
|
+
# provisioned_throughput: {
|
9373
|
+
# read_capacity_units: 1, # required
|
9374
|
+
# write_capacity_units: 1, # required
|
9375
|
+
# },
|
9376
|
+
# },
|
9377
|
+
# ],
|
9378
|
+
# }
|
9379
|
+
#
|
9380
|
+
# @!attribute [rw] table_name
|
9381
|
+
# The name of the table created as part of the import operation.
|
9382
|
+
# @return [String]
|
9383
|
+
#
|
9384
|
+
# @!attribute [rw] attribute_definitions
|
9385
|
+
# The attributes of the table created as part of the import operation.
|
9386
|
+
# @return [Array<Types::AttributeDefinition>]
|
9387
|
+
#
|
9388
|
+
# @!attribute [rw] key_schema
|
9389
|
+
# The primary key and option sort key of the table created as part of
|
9390
|
+
# the import operation.
|
9391
|
+
# @return [Array<Types::KeySchemaElement>]
|
9392
|
+
#
|
9393
|
+
# @!attribute [rw] billing_mode
|
9394
|
+
# The billing mode for provisioning the table created as part of the
|
9395
|
+
# import operation.
|
9396
|
+
# @return [String]
|
9397
|
+
#
|
9398
|
+
# @!attribute [rw] provisioned_throughput
|
9399
|
+
# Represents the provisioned throughput settings for a specified table
|
9400
|
+
# or index. The settings can be modified using the `UpdateTable`
|
9401
|
+
# operation.
|
9402
|
+
#
|
9403
|
+
# For current minimum and maximum provisioned throughput values, see
|
9404
|
+
# [Service, Account, and Table Quotas][1] in the *Amazon DynamoDB
|
9405
|
+
# Developer Guide*.
|
9406
|
+
#
|
9407
|
+
#
|
9408
|
+
#
|
9409
|
+
# [1]: https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html
|
9410
|
+
# @return [Types::ProvisionedThroughput]
|
9411
|
+
#
|
9412
|
+
# @!attribute [rw] sse_specification
|
9413
|
+
# Represents the settings used to enable server-side encryption.
|
9414
|
+
# @return [Types::SSESpecification]
|
9415
|
+
#
|
9416
|
+
# @!attribute [rw] global_secondary_indexes
|
9417
|
+
# The Global Secondary Indexes (GSI) of the table to be created as
|
9418
|
+
# part of the import operation.
|
9419
|
+
# @return [Array<Types::GlobalSecondaryIndex>]
|
9420
|
+
#
|
9421
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/TableCreationParameters AWS API Documentation
|
9422
|
+
#
|
9423
|
+
class TableCreationParameters < Struct.new(
|
9424
|
+
:table_name,
|
9425
|
+
:attribute_definitions,
|
9426
|
+
:key_schema,
|
9427
|
+
:billing_mode,
|
9428
|
+
:provisioned_throughput,
|
9429
|
+
:sse_specification,
|
9430
|
+
:global_secondary_indexes)
|
9431
|
+
SENSITIVE = []
|
9432
|
+
include Aws::Structure
|
9433
|
+
end
|
9434
|
+
|
8818
9435
|
# Represents the properties of a table.
|
8819
9436
|
#
|
8820
9437
|
# @!attribute [rw] attribute_definitions
|
@@ -9345,7 +9962,7 @@ module Aws::DynamoDB
|
|
9345
9962
|
# }
|
9346
9963
|
#
|
9347
9964
|
# @!attribute [rw] transact_items
|
9348
|
-
# An ordered array of up to
|
9965
|
+
# An ordered array of up to 100 `TransactGetItem` objects, each of
|
9349
9966
|
# which contains a `Get` structure.
|
9350
9967
|
# @return [Array<Types::TransactGetItem>]
|
9351
9968
|
#
|
@@ -9373,7 +9990,7 @@ module Aws::DynamoDB
|
|
9373
9990
|
# @return [Array<Types::ConsumedCapacity>]
|
9374
9991
|
#
|
9375
9992
|
# @!attribute [rw] responses
|
9376
|
-
# An ordered array of up to
|
9993
|
+
# An ordered array of up to 100 `ItemResponse` objects, each of which
|
9377
9994
|
# corresponds to the `TransactGetItem` object in the same position in
|
9378
9995
|
# the *TransactItems* array. Each `ItemResponse` object contains a Map
|
9379
9996
|
# of the name-value pairs that are the projected attributes of the
|
@@ -9558,7 +10175,7 @@ module Aws::DynamoDB
|
|
9558
10175
|
# }
|
9559
10176
|
#
|
9560
10177
|
# @!attribute [rw] transact_items
|
9561
|
-
# An ordered array of up to
|
10178
|
+
# An ordered array of up to 100 `TransactWriteItem` objects, each of
|
9562
10179
|
# which contains a `ConditionCheck`, `Put`, `Update`, or `Delete`
|
9563
10180
|
# object. These can operate on items in different tables, but the
|
9564
10181
|
# tables must reside in the same Amazon Web Services account and
|