@@ -65,6 +65,7 @@ namespace Utils
65
65
static const char *m_cmd_proxy_user_name = " proxy_user_name" ;
66
66
static const char *m_cmd_proxy_password = " proxy_password" ;
67
67
static const char *m_cmd_shadow_property = " shadow_property" ;
68
+ static const char *m_cmd_region = " region" ;
68
69
69
70
CommandLineUtils::CommandLineUtils ()
70
71
{
@@ -431,7 +432,7 @@ namespace Utils
431
432
cmdUtils.AddCommonProxyCommands ();
432
433
cmdUtils.AddCommonTopicMessageCommands ();
433
434
cmdUtils.RemoveCommand (m_cmd_endpoint);
434
- cmdUtils.RegisterCommand (m_cmd_signing_region , " <str>" , " The region for your Greengrass groups." );
435
+ cmdUtils.RegisterCommand (m_cmd_region , " <str>" , " The region for your Greengrass groups." );
435
436
cmdUtils.RegisterCommand (m_cmd_thing_name, " <str>" , " The name of your IOT thing" );
436
437
cmdUtils.RegisterCommand (
437
438
m_cmd_mode, " <str>" , " Mode options: 'both', 'publish', or 'subscribe' (optional, default='both')." );
@@ -448,7 +449,7 @@ namespace Utils
448
449
{
449
450
returnData.input_ca = cmdUtils.GetCommand (m_cmd_ca_file);
450
451
}
451
- returnData.input_signingRegion = cmdUtils.GetCommandRequired (m_cmd_signing_region );
452
+ returnData.input_signingRegion = cmdUtils.GetCommandRequired (m_cmd_region );
452
453
s_populateTopic (&cmdUtils, &returnData);
453
454
returnData.input_message = cmdUtils.GetCommandOrDefault (m_cmd_message, " " );
454
455
returnData.input_mode = cmdUtils.GetCommandOrDefault (m_cmd_mode, " both" );
0 commit comments