@@ -28,15 +28,15 @@ const sm = SenderManagement({ parameterStore: new ParameterStore() });
2828
2929#### CLI Options
3030
31- - ` --environment ` - The name of the environment to run the command on e.g. 'de-< shortcode > ', 'uat', 'prod'. Required.
31+ - ` --environment ` - The name of the environment to run the command on e.g. 'pr123', 'main ', 'uat', 'prod'. Required.
3232- ` --format ` - print data in json or tabular format. Default is ` table ` .
3333
3434#### Library Options
3535
3636``` ts
3737const sm = SenderManagement ({
3838 parameterStore: new ParameterStore (),
39- configOverrides: { environment: ' de-miha12 ' },
39+ configOverrides: { environment: ' pr123 ' },
4040});
4141```
4242
@@ -60,7 +60,7 @@ Insert a new sender or update an existing one. Omit the `--sender-id` option to
6060- ` --mesh-mailbox-sender-id ` - the mesh mailbox id for this sender. Unique across all the senders. (required)
6161- ` --mesh-mailbox-reports-id ` - the mesh mailbox id used for reporting for this sender. It can be the same as mesh-mailbox-sender-id. (required)
6262- ` --fallback-wait-time-seconds ` - the fallback wait time to print letters. (required) (number)
63- - ` --routing-config-id ` - the routing configuration id. (required)
63+ - ` --routing-config-id ` - the routing configuration id.
6464
6565##### Put Sender Examples
6666
@@ -71,7 +71,7 @@ npm --prefix utils/sender-management run-script cli -- put-sender \
7171 --mesh-mailbox-reports-id ' DerbyMailboxReportsId' \
7272 --fallback-wait-time-seconds 100 \
7373 --routing-config-id ' abc123' \
74- --environment ' de-cljo1 '
74+ --environment ' pr123 '
7575```
7676
7777``` bash
@@ -82,7 +82,7 @@ npm --prefix utils/sender-management run-script cli -- put-sender \
8282 --mesh-mailbox-reports-id ' 123456' \
8383 --fallback-wait-time-seconds 100 \
8484 --routing-config-id ' abc123' \
85- --environment ' de-cljo1 '
85+ --environment ' pr123 '
8686```
8787
8888``` ts
@@ -102,7 +102,7 @@ Return a list of all existing senders
102102##### List Senders Examples
103103
104104``` bash
105- npm --prefix utils/sender-management run-script cli -- list-senders --environment de-cljo1
105+ npm --prefix utils/sender-management run-script cli -- list-senders --environment pr123
106106```
107107
108108``` ts
@@ -118,7 +118,7 @@ Return an individual sender by senderId
118118``` bash
119119npm --prefix utils/sender-management run-script cli -- get-sender \
120120 --sender-id ' integration_test_sender' \
121- --environment ' de-cljo1 '
121+ --environment ' pr123 '
122122```
123123
124124``` ts
@@ -136,7 +136,7 @@ Delete an individual sender by senderId.
136136``` bash
137137npm --prefix utils/sender-management run-script cli -- delete-sender \
138138 --sender-id ' integration_test_sender' \
139- --environment de-cljo1
139+ --environment pr123
140140```
141141
142142``` ts
0 commit comments