You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parser.add_argument("-m", "--mode", help="'backup' or 'restore' or 'empty'")
435
435
parser.add_argument("-r", "--region",
436
-
help="AWS region to use, e.g. 'us-west-1'. Use '"+LOCAL_REGION+"' for local DynamoDB testing.")
436
+
help="AWS region to use, e.g. 'us-west-1'. Use '"+LOCAL_REGION+"' for local DynamoDB testing")
437
+
parser.add_argument("--host", help="Host of local DynamoDB [required only for local]")
438
+
parser.add_argument("--port", help="Port of local DynamoDB [required only for local]")
439
+
parser.add_argument("--accessKey", help="Access key of local DynamoDB [required only for local]")
440
+
parser.add_argument("--secretKey", help="Secret key of local DynamoDB [required only for local]")
437
441
parser.add_argument("-p", "--profile",
438
-
help="AWS profile name to use. Allows to you to choose alternate profile from your AWS credentials file.")
442
+
help="AWS credentials file profile to use. Allows you to use a profile instead of accessKey, secretKey authentication")
439
443
parser.add_argument("-s", "--srcTable",
440
-
help="Source DynamoDB table name to backup or restore from, use 'tablename*' for wildcard prefix selection or '*' for all tables.")
444
+
help="Source DynamoDB table name to backup or restore from, use 'tablename*' for wildcard prefix selection or '*' for all tables")
441
445
parser.add_argument("-d", "--destTable",
442
446
help="Destination DynamoDB table name to backup or restore to, use 'tablename*' for wildcard prefix selection (defaults to use '-' separator) [optional, defaults to source]")
443
447
parser.add_argument("--prefixSeparator", help="Specify a different prefix separator, e.g. '.' [optional]")
help="Backup or restore the schema only. Do not export/import data. [optional]")
456
+
help="Backup or restore the schema only. Do not backup/restore data. Can be used with both backup and restore modes. Cannot be used with the --dataOnly [optional]")
0 commit comments