awscli 1.42.33__py3-none-any.whl → 1.44.6__py3-none-any.whl
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.
Potentially problematic release.
This version of awscli might be problematic. Click here for more details.
- awscli/__init__.py +1 -1
- awscli/alias.py +3 -3
- awscli/argprocess.py +2 -1
- awscli/arguments.py +1 -1
- awscli/bcdoc/docevents.py +3 -0
- awscli/clidocs.py +19 -2
- awscli/clidriver.py +55 -9
- awscli/customizations/argrename.py +1 -0
- awscli/customizations/cliinputjson.py +4 -0
- awscli/customizations/cloudformation/deploy.py +19 -3
- awscli/customizations/cloudtrail/validation.py +22 -2
- awscli/customizations/commands.py +2 -1
- awscli/customizations/eks/update_kubeconfig.py +12 -1
- awscli/customizations/emr/argumentschema.py +355 -344
- awscli/customizations/emr/createcluster.py +12 -0
- awscli/customizations/emr/emrutils.py +83 -50
- awscli/customizations/emr/helptext.py +10 -0
- awscli/customizations/emr/steputils.py +92 -52
- awscli/customizations/globalargs.py +169 -0
- awscli/customizations/paginate.py +66 -1
- awscli/customizations/s3/filegenerator.py +4 -1
- awscli/customizations/s3/fileinfo.py +4 -1
- awscli/customizations/s3/fileinfobuilder.py +6 -0
- awscli/customizations/s3/s3handler.py +9 -0
- awscli/customizations/s3/subcommands.py +147 -6
- awscli/customizations/s3/syncstrategy/base.py +9 -0
- awscli/customizations/s3/syncstrategy/caseconflict.py +92 -0
- awscli/customizations/s3/utils.py +14 -0
- awscli/customizations/scalarparse.py +48 -9
- awscli/data/cli.json +5 -0
- awscli/examples/cloudformation/create-generated-template.rst +50 -0
- awscli/examples/cloudformation/create-stack-refactor.rst +16 -0
- awscli/examples/cloudformation/delete-generated-template.rst +10 -0
- awscli/examples/cloudformation/describe-generated-template.rst +62 -0
- awscli/examples/cloudformation/describe-resource-scan.rst +38 -0
- awscli/examples/cloudformation/describe-stack-refactor.rst +20 -0
- awscli/examples/cloudformation/execute-stack-refactor.rst +10 -0
- awscli/examples/cloudformation/list-generated-templates.rst +41 -0
- awscli/examples/cloudformation/list-resource-scan-related-resources.rst +47 -0
- awscli/examples/cloudformation/list-resource-scan-resources.rst +30 -0
- awscli/examples/cloudformation/list-stack-refactor-actions.rst +71 -0
- awscli/examples/cloudformation/start-resource-scan.rst +14 -0
- awscli/examples/global_options.rst +4 -0
- awscli/examples/global_synopsis.rst +1 -0
- awscli/examples/ivs-realtime/get-composition.rst +7 -4
- awscli/examples/ivs-realtime/start-composition.rst +88 -3
- awscli/examples/lambda/create-function.rst +4 -4
- awscli/examples/lambda/get-function.rst +3 -3
- awscli/examples/lambda/list-functions.rst +6 -6
- awscli/examples/medical-imaging/create-datastore.rst +19 -2
- awscli/examples/medical-imaging/get-datastore.rst +24 -1
- awscli/examples/securityhub/describe-hub.rst +6 -4
- awscli/examples/servicediscovery/create-service.rst +50 -10
- awscli/examples/servicediscovery/delete-namespace.rst +18 -4
- awscli/examples/servicediscovery/delete-service-attributes.rst +15 -3
- awscli/examples/servicediscovery/delete-service.rst +13 -3
- awscli/examples/servicediscovery/deregister-instance.rst +18 -2
- awscli/examples/servicediscovery/discover-instances-revision.rst +18 -1
- awscli/examples/servicediscovery/discover-instances.rst +32 -2
- awscli/examples/servicediscovery/get-instance.rst +30 -4
- awscli/examples/servicediscovery/get-instances-health-status.rst +19 -1
- awscli/examples/servicediscovery/get-namespace.rst +40 -9
- awscli/examples/servicediscovery/get-operation.rst +32 -6
- awscli/examples/servicediscovery/get-service-attributes.rst +25 -3
- awscli/examples/servicediscovery/get-service.rst +35 -7
- awscli/examples/servicediscovery/list-instances.rst +38 -3
- awscli/examples/servicediscovery/list-namespaces.rst +45 -22
- awscli/examples/servicediscovery/list-services.rst +30 -2
- awscli/examples/servicediscovery/register-instance.rst +18 -2
- awscli/examples/servicediscovery/update-http-namespace.rst +22 -5
- awscli/examples/servicediscovery/update-instance-custom-health-status.rst +14 -1
- awscli/examples/servicediscovery/update-private-dns-namespace.rst +22 -5
- awscli/examples/servicediscovery/update-public-dns-namespace.rst +22 -5
- awscli/examples/servicediscovery/update-service-attributes.rst +14 -2
- awscli/examples/servicediscovery/update-service.rst +20 -4
- awscli/paramfile.py +21 -4
- awscli/testutils.py +17 -0
- awscli/topics/config-vars.rst +1 -1
- awscli/topics/s3-case-insensitivity.rst +105 -0
- awscli/topics/topic-tags.json +16 -0
- awscli/utils.py +19 -2
- {awscli-1.42.33.dist-info → awscli-1.44.6.dist-info}/METADATA +5 -3
- {awscli-1.42.33.dist-info → awscli-1.44.6.dist-info}/RECORD +91 -132
- awscli/examples/qldb/cancel-journal-kinesis-stream.rst +0 -15
- awscli/examples/qldb/create-ledger.rst +0 -43
- awscli/examples/qldb/delete-ledger.rst +0 -10
- awscli/examples/qldb/describe-journal-kinesis-stream.rst +0 -29
- awscli/examples/qldb/describe-journal-s3-export.rst +0 -30
- awscli/examples/qldb/describe-ledger.rst +0 -23
- awscli/examples/qldb/export-journal-to-s3.rst +0 -28
- awscli/examples/qldb/get-block.rst +0 -55
- awscli/examples/qldb/get-digest.rst +0 -17
- awscli/examples/qldb/get-revision.rst +0 -57
- awscli/examples/qldb/list-journal-kinesis-streams-for-ledger.rst +0 -30
- awscli/examples/qldb/list-journal-s3-exports-for-ledger.rst +0 -31
- awscli/examples/qldb/list-journal-s3-exports.rst +0 -46
- awscli/examples/qldb/list-ledgers.rst +0 -24
- awscli/examples/qldb/list-tags-for-resource.rst +0 -17
- awscli/examples/qldb/stream-journal-to-kinesis.rst +0 -46
- awscli/examples/qldb/tag-resource.rst +0 -11
- awscli/examples/qldb/untag-resource.rst +0 -11
- awscli/examples/qldb/update-ledger-permissions-mode.rst +0 -34
- awscli/examples/qldb/update-ledger.rst +0 -63
- awscli/examples/robomaker/batch-describe-simulation-job.rst +0 -150
- awscli/examples/robomaker/cancel-simulation-job.rst +0 -6
- awscli/examples/robomaker/create-deployment-job.rst +0 -37
- awscli/examples/robomaker/create-fleet.rst +0 -18
- awscli/examples/robomaker/create-robot-application-version.rst +0 -31
- awscli/examples/robomaker/create-robot-application.rst +0 -29
- awscli/examples/robomaker/create-robot.rst +0 -20
- awscli/examples/robomaker/create-simulation-application-version.rst +0 -39
- awscli/examples/robomaker/create-simulation-application.rst +0 -38
- awscli/examples/robomaker/create-simulation-job.rst +0 -43
- awscli/examples/robomaker/delete-fleet.rst +0 -7
- awscli/examples/robomaker/delete-robot-application.rst +0 -7
- awscli/examples/robomaker/delete-robot.rst +0 -7
- awscli/examples/robomaker/delete-simulation-application.rst +0 -7
- awscli/examples/robomaker/deregister-robot.rst +0 -14
- awscli/examples/robomaker/describe-deployment-job.rst +0 -38
- awscli/examples/robomaker/describe-fleet.rst +0 -28
- awscli/examples/robomaker/describe-robot-application.rst +0 -29
- awscli/examples/robomaker/describe-robot.rst +0 -21
- awscli/examples/robomaker/describe-simulation-application.rst +0 -37
- awscli/examples/robomaker/describe-simulation-job.rst +0 -45
- awscli/examples/robomaker/list-deployment-jobs.rst +0 -57
- awscli/examples/robomaker/list-fleets.rst +0 -22
- awscli/examples/robomaker/list-robot-applications.rst +0 -32
- awscli/examples/robomaker/list-robots.rst +0 -45
- awscli/examples/robomaker/list-simulation-applications.rst +0 -50
- awscli/examples/robomaker/list-simulation-jobs.rst +0 -80
- awscli/examples/robomaker/list-tags-for-resource.rst +0 -16
- awscli/examples/robomaker/register-robot.rst +0 -14
- awscli/examples/robomaker/restart-simulation-job.rst +0 -7
- awscli/examples/robomaker/sync-deployment-job.rst +0 -30
- awscli/examples/robomaker/tag-resource.rst +0 -7
- awscli/examples/robomaker/untag-resource.rst +0 -7
- awscli/examples/robomaker/update-robot-application.rst +0 -28
- awscli/examples/robomaker/update-simulation-application.rst +0 -36
- {awscli-1.42.33.data → awscli-1.44.6.data}/scripts/aws +0 -0
- {awscli-1.42.33.data → awscli-1.44.6.data}/scripts/aws.cmd +0 -0
- {awscli-1.42.33.data → awscli-1.44.6.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.42.33.data → awscli-1.44.6.data}/scripts/aws_completer +0 -0
- {awscli-1.42.33.data → awscli-1.44.6.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.42.33.dist-info → awscli-1.44.6.dist-info}/LICENSE.txt +0 -0
- {awscli-1.42.33.dist-info → awscli-1.44.6.dist-info}/WHEEL +0 -0
- {awscli-1.42.33.dist-info → awscli-1.44.6.dist-info}/top_level.txt +0 -0
|
@@ -51,9 +51,10 @@ Output::
|
|
|
51
51
|
],
|
|
52
52
|
"layout": {
|
|
53
53
|
"grid": {
|
|
54
|
-
"featuredParticipantAttribute": ""
|
|
54
|
+
"featuredParticipantAttribute": "",
|
|
55
55
|
"gridGap": 2,
|
|
56
56
|
"omitStoppedVideo": false,
|
|
57
|
+
"participantOrderAttribute": "",
|
|
57
58
|
"videoAspectRatio": "VIDEO",
|
|
58
59
|
"videoFillMode": ""
|
|
59
60
|
}
|
|
@@ -65,7 +66,7 @@ Output::
|
|
|
65
66
|
}
|
|
66
67
|
}
|
|
67
68
|
|
|
68
|
-
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon
|
|
69
|
+
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
69
70
|
|
|
70
71
|
**Example 2: To get a composition with PiP layout**
|
|
71
72
|
|
|
@@ -123,6 +124,7 @@ Output::
|
|
|
123
124
|
"featuredParticipantAttribute": "abcdefg",
|
|
124
125
|
"gridGap": 0,
|
|
125
126
|
"omitStoppedVideo": false,
|
|
127
|
+
"participantOrderAttribute": "",
|
|
126
128
|
"pipBehavior": "STATIC",
|
|
127
129
|
"pipOffset": 0,
|
|
128
130
|
"pipParticipantAttribute": "",
|
|
@@ -137,7 +139,7 @@ Output::
|
|
|
137
139
|
}
|
|
138
140
|
}
|
|
139
141
|
|
|
140
|
-
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon
|
|
142
|
+
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
141
143
|
|
|
142
144
|
**Example 3: To get a composition with thumbnail recording enabled**
|
|
143
145
|
|
|
@@ -203,6 +205,7 @@ Output::
|
|
|
203
205
|
"featuredParticipantAttribute": ""
|
|
204
206
|
"gridGap": 2,
|
|
205
207
|
"omitStoppedVideo": false,
|
|
208
|
+
"participantOrderAttribute": "",
|
|
206
209
|
"videoAspectRatio": "VIDEO",
|
|
207
210
|
"videoFillMode": "" }
|
|
208
211
|
},
|
|
@@ -213,4 +216,4 @@ Output::
|
|
|
213
216
|
}
|
|
214
217
|
}
|
|
215
218
|
|
|
216
|
-
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon
|
|
219
|
+
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
@@ -57,6 +57,7 @@ Output::
|
|
|
57
57
|
"featuredParticipantAttribute": ""
|
|
58
58
|
"gridGap": 2,
|
|
59
59
|
"omitStoppedVideo": false,
|
|
60
|
+
"participantOrderAttribute": "",
|
|
60
61
|
"videoAspectRatio": "VIDEO",
|
|
61
62
|
"videoFillMode": ""
|
|
62
63
|
}
|
|
@@ -68,7 +69,7 @@ Output::
|
|
|
68
69
|
}
|
|
69
70
|
}
|
|
70
71
|
|
|
71
|
-
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon
|
|
72
|
+
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
72
73
|
|
|
73
74
|
**Example 2: To start a composition with PiP layout**
|
|
74
75
|
|
|
@@ -129,6 +130,7 @@ Output::
|
|
|
129
130
|
"featuredParticipantAttribute": "abcdefg",
|
|
130
131
|
"gridGap": 0,
|
|
131
132
|
"omitStoppedVideo": false,
|
|
133
|
+
"participantOrderAttribute": "",
|
|
132
134
|
"pipBehavior": "STATIC",
|
|
133
135
|
"pipOffset": 0,
|
|
134
136
|
"pipParticipantAttribute": "",
|
|
@@ -143,7 +145,7 @@ Output::
|
|
|
143
145
|
}
|
|
144
146
|
}
|
|
145
147
|
|
|
146
|
-
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon
|
|
148
|
+
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
147
149
|
|
|
148
150
|
**Example 3: To start a composition with thumbnail recording enabled**
|
|
149
151
|
|
|
@@ -212,6 +214,7 @@ Output::
|
|
|
212
214
|
"featuredParticipantAttribute": ""
|
|
213
215
|
"gridGap": 2,
|
|
214
216
|
"omitStoppedVideo": false,
|
|
217
|
+
"participantOrderAttribute": "",
|
|
215
218
|
"videoAspectRatio": "VIDEO",
|
|
216
219
|
"videoFillMode": ""
|
|
217
220
|
}
|
|
@@ -223,4 +226,86 @@ Output::
|
|
|
223
226
|
}
|
|
224
227
|
}
|
|
225
228
|
|
|
226
|
-
For more information, see `
|
|
229
|
+
For more information, see `Composite Recording (Real-Time Streaming) <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
230
|
+
|
|
231
|
+
**Example 4: To start a composition using grid layout with custom participant ordering**
|
|
232
|
+
|
|
233
|
+
The following ``start-composition`` example starts a composition for the specified stage to be streamed to the specified locations using grid layout with custom participant ordering. ::
|
|
234
|
+
|
|
235
|
+
aws ivs-realtime start-composition \
|
|
236
|
+
--stage-arn arn:aws:ivs:ap-northeast-1:123456789012:stage/defgABCDabcd \
|
|
237
|
+
--destinations '[{"channel": {"channelArn": "arn:aws:ivs:ap-northeast-1:123456789012:channel/abcABCdefDEg", \
|
|
238
|
+
"encoderConfigurationArn": "arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"}}, \
|
|
239
|
+
{"s3": {"encoderConfigurationArns": ["arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"], \
|
|
240
|
+
"storageConfigurationArn": "arn:aws:ivs:ap-northeast-1:123456789012:storage-configuration/FefABabCDcdE", \
|
|
241
|
+
"thumbnailConfigurations": [{"storage": ["SEQUENTIAL"],"targetIntervalSeconds": 60}]}}]' \
|
|
242
|
+
--layout grid='{participantOrderAttribute="abcdefg"}'
|
|
243
|
+
|
|
244
|
+
Output::
|
|
245
|
+
|
|
246
|
+
{
|
|
247
|
+
"composition": {
|
|
248
|
+
"arn": "arn:aws:ivs:ap-northeast-1:123456789012:composition/abcdABCDefgh",
|
|
249
|
+
"destinations": [
|
|
250
|
+
{
|
|
251
|
+
"configuration": {
|
|
252
|
+
"channel": {
|
|
253
|
+
"channelArn": "arn:aws:ivs:ap-northeast-1:123456789012:channel/abcABCdefDEg",
|
|
254
|
+
"encoderConfigurationArn": "arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"
|
|
255
|
+
},
|
|
256
|
+
"name": ""
|
|
257
|
+
},
|
|
258
|
+
"id": "AabBCcdDEefF",
|
|
259
|
+
"state": "STARTING"
|
|
260
|
+
},
|
|
261
|
+
{
|
|
262
|
+
"configuration": {
|
|
263
|
+
"name": "",
|
|
264
|
+
"s3": {
|
|
265
|
+
"encoderConfigurationArns": [
|
|
266
|
+
"arn:aws:ivs:arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"
|
|
267
|
+
],
|
|
268
|
+
"recordingConfiguration": {
|
|
269
|
+
"format": "HLS",
|
|
270
|
+
"hlsConfiguration": {
|
|
271
|
+
"targetSegmentDurationSeconds": 2
|
|
272
|
+
}
|
|
273
|
+
},
|
|
274
|
+
"storageConfigurationArn": "arn:arn:aws:ivs:ap-northeast-1:123456789012:storage-configuration/FefABabCDcdE",
|
|
275
|
+
"thumbnailConfigurations": [
|
|
276
|
+
{
|
|
277
|
+
"targetIntervalSeconds": 60,
|
|
278
|
+
"storage": [
|
|
279
|
+
"SEQUENTIAL"
|
|
280
|
+
]
|
|
281
|
+
}
|
|
282
|
+
]
|
|
283
|
+
}
|
|
284
|
+
},
|
|
285
|
+
"detail": {
|
|
286
|
+
"s3": {
|
|
287
|
+
"recordingPrefix": "aBcDeFgHhGfE/AbCdEfGhHgFe/GHFabcgefABC/composite"
|
|
288
|
+
}
|
|
289
|
+
},
|
|
290
|
+
"id": "GHFabcgefABC",
|
|
291
|
+
"state": "STARTING"
|
|
292
|
+
}
|
|
293
|
+
],
|
|
294
|
+
"layout": {
|
|
295
|
+
"grid": {
|
|
296
|
+
"featuredParticipantAttribute": ""
|
|
297
|
+
"gridGap": 2,
|
|
298
|
+
"omitStoppedVideo": false,
|
|
299
|
+
"participantOrderAttribute": "abcdefg",
|
|
300
|
+
"videoAspectRatio": "VIDEO",
|
|
301
|
+
"videoFillMode": ""
|
|
302
|
+
}
|
|
303
|
+
},
|
|
304
|
+
"stageArn": "arn:aws:ivs:ap-northeast-1:123456789012:stage/defgABCDabcd",
|
|
305
|
+
"startTime": "2023-10-16T23:24:00+00:00",
|
|
306
|
+
"state": "STARTING",
|
|
307
|
+
"tags": {}
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
For more information, see `IVS Composite Recording | Real-Time Streaming <https://docs.aws.amazon.com/ivs/latest/RealTimeUserGuide/rt-composite-recording.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
@@ -4,7 +4,7 @@ The following ``create-function`` example creates a Lambda function named ``my-f
|
|
|
4
4
|
|
|
5
5
|
aws lambda create-function \
|
|
6
6
|
--function-name my-function \
|
|
7
|
-
--runtime
|
|
7
|
+
--runtime nodejs22.x \
|
|
8
8
|
--zip-file fileb://my-function.zip \
|
|
9
9
|
--handler my-function.handler \
|
|
10
10
|
--role arn:aws:iam::123456789012:role/service-role/MyTestFunction-role-tges6bf4
|
|
@@ -28,10 +28,10 @@ Output::
|
|
|
28
28
|
"Version": "$LATEST",
|
|
29
29
|
"Role": "arn:aws:iam::123456789012:role/service-role/MyTestFunction-role-zgur6bf4",
|
|
30
30
|
"Timeout": 3,
|
|
31
|
-
"LastModified": "
|
|
31
|
+
"LastModified": "2025-10-14T22:26:11.234+0000",
|
|
32
32
|
"Handler": "my-function.handler",
|
|
33
|
-
"Runtime": "
|
|
33
|
+
"Runtime": "nodejs22.x",
|
|
34
34
|
"Description": ""
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
For more information, see `
|
|
37
|
+
For more information, see `Configure Lambda function memory <https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html>`__ in the *AWS Lambda Developer Guide*.
|
|
@@ -34,10 +34,10 @@ Output::
|
|
|
34
34
|
"Handler": "index.handler",
|
|
35
35
|
"Role": "arn:aws:iam::123456789012:role/service-role/helloWorldPython-role-uy3l9qyq",
|
|
36
36
|
"Timeout": 3,
|
|
37
|
-
"LastModified": "
|
|
38
|
-
"Runtime": "
|
|
37
|
+
"LastModified": "2025-09-24T18:20:35.054+0000",
|
|
38
|
+
"Runtime": "nodejs22.x",
|
|
39
39
|
"Description": ""
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
For more information, see `
|
|
43
|
+
For more information, see `Configure Lambda function memory <https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html>`__ in the *AWS Lambda Developer Guide*.
|
|
@@ -22,8 +22,8 @@ Output::
|
|
|
22
22
|
"Handler": "helloworld.handler",
|
|
23
23
|
"Role": "arn:aws:iam::123456789012:role/service-role/MyTestFunction-role-zgur6bf4",
|
|
24
24
|
"Timeout": 3,
|
|
25
|
-
"LastModified": "
|
|
26
|
-
"Runtime": "
|
|
25
|
+
"LastModified": "2025-09-23T18:32:33.857+0000",
|
|
26
|
+
"Runtime": "nodejs22.x",
|
|
27
27
|
"Description": ""
|
|
28
28
|
},
|
|
29
29
|
{
|
|
@@ -45,8 +45,8 @@ Output::
|
|
|
45
45
|
"Handler": "index.handler",
|
|
46
46
|
"Role": "arn:aws:iam::123456789012:role/service-role/helloWorldPython-role-uy3l9qyq",
|
|
47
47
|
"Timeout": 3,
|
|
48
|
-
"LastModified": "
|
|
49
|
-
"Runtime": "
|
|
48
|
+
"LastModified": "2025-10-01T16:47:28.490+0000",
|
|
49
|
+
"Runtime": "nodejs22.x",
|
|
50
50
|
"Description": ""
|
|
51
51
|
},
|
|
52
52
|
{
|
|
@@ -78,11 +78,11 @@ Output::
|
|
|
78
78
|
"Handler": "lambda_function.lambda_handler",
|
|
79
79
|
"Role": "arn:aws:iam::123456789012:role/service-role/my-python-function-role-z5g7dr6n",
|
|
80
80
|
"Timeout": 3,
|
|
81
|
-
"LastModified": "
|
|
81
|
+
"LastModified": "2025-10-01T19:40:41.643+0000",
|
|
82
82
|
"Runtime": "python3.11",
|
|
83
83
|
"Description": ""
|
|
84
84
|
}
|
|
85
85
|
]
|
|
86
86
|
}
|
|
87
87
|
|
|
88
|
-
For more information, see `
|
|
88
|
+
For more information, see `Configure Lambda function memory <https://docs.aws.amazon.com/lambda/latest/dg/configuration-memory.html>`__ in the *AWS Lambda Developer Guide*.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
**To create a data store**
|
|
1
|
+
**Example 1: To create a data store**
|
|
2
2
|
|
|
3
|
-
The following ``create-datastore`` code example creates a data store with the name ``my-datastore``.
|
|
3
|
+
The following ``create-datastore`` code example creates a data store with the name ``my-datastore``.
|
|
4
|
+
When you create a datastore without specifying a ``--lossless-storage-format``, AWS HealthImaging defaults to HTJ2K (High Throughput JPEG 2000). ::
|
|
4
5
|
|
|
5
6
|
aws medical-imaging create-datastore \
|
|
6
7
|
--datastore-name "my-datastore"
|
|
@@ -12,4 +13,20 @@ Output::
|
|
|
12
13
|
"datastoreStatus": "CREATING"
|
|
13
14
|
}
|
|
14
15
|
|
|
16
|
+
**Example 2: To create a data store with JPEG 2000 Lossless storage format**
|
|
17
|
+
|
|
18
|
+
A data store configured with JPEG 2000 Lossless storage format will transcode and persist lossless image frames in JPEG 2000 format. Image frames can then be retrieved in
|
|
19
|
+
JPEG 2000 Lossless without transcoding. The following ``create-datastore`` code example creates a data store configured for JPEG 2000 Lossless storage format with the name ``my-datastore``. ::
|
|
20
|
+
|
|
21
|
+
aws medical-imaging create-datastore \
|
|
22
|
+
--datastore-name "my-datastore" \
|
|
23
|
+
--lossless-storage-format JPEG_2000_LOSSLESS
|
|
24
|
+
|
|
25
|
+
Output::
|
|
26
|
+
|
|
27
|
+
{
|
|
28
|
+
"datastoreId": "12345678901234567890123456789012",
|
|
29
|
+
"datastoreStatus": "CREATING"
|
|
30
|
+
}
|
|
31
|
+
|
|
15
32
|
For more information, see `Creating a data store <https://docs.aws.amazon.com/healthimaging/latest/devguide/create-data-store.html>`__ in the *AWS HealthImaging Developer Guide*.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
**To get a data store's properties**
|
|
1
|
+
**Example 1: To get a data store's properties**
|
|
2
2
|
|
|
3
3
|
The following ``get-datastore`` code example gets a data store's properties. ::
|
|
4
4
|
|
|
@@ -13,6 +13,29 @@ Output::
|
|
|
13
13
|
"datastoreId": "12345678901234567890123456789012",
|
|
14
14
|
"datastoreName": "TestDatastore123",
|
|
15
15
|
"datastoreStatus": "ACTIVE",
|
|
16
|
+
"losslessStorageFormat": "HTJ2K"
|
|
17
|
+
"datastoreArn": "arn:aws:medical-imaging:us-east-1:123456789012:datastore/12345678901234567890123456789012",
|
|
18
|
+
"createdAt": "2022-11-15T23:33:09.643000+00:00",
|
|
19
|
+
"updatedAt": "2022-11-15T23:33:09.643000+00:00"
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
**Example 2: To get data store's properties configured for JPEG2000**
|
|
24
|
+
|
|
25
|
+
The following ``get-datastore`` code example gets a data store's properties for a data store configured for JPEG 2000 Lossless storage format. ::
|
|
26
|
+
|
|
27
|
+
aws medical-imaging get-datastore \
|
|
28
|
+
--datastore-id 12345678901234567890123456789012
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
Output::
|
|
32
|
+
|
|
33
|
+
{
|
|
34
|
+
"datastoreProperties": {
|
|
35
|
+
"datastoreId": "12345678901234567890123456789012",
|
|
36
|
+
"datastoreName": "TestDatastore123",
|
|
37
|
+
"datastoreStatus": "ACTIVE",
|
|
38
|
+
"losslessStorageFormat": "JPEG_2000_LOSSLESS",
|
|
16
39
|
"datastoreArn": "arn:aws:medical-imaging:us-east-1:123456789012:datastore/12345678901234567890123456789012",
|
|
17
40
|
"createdAt": "2022-11-15T23:33:09.643000+00:00",
|
|
18
41
|
"updatedAt": "2022-11-15T23:33:09.643000+00:00"
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
**To get information about a hub resource**
|
|
2
2
|
|
|
3
|
-
The following ``describe-hub`` example returns the subscription date for the specified hub resource. The hub resource is identified by its ARN. ::
|
|
3
|
+
The following ``describe-hub`` example returns the subscription date and other configuration settings for the specified hub resource. The hub resource is identified by its ARN. ::
|
|
4
4
|
|
|
5
|
-
aws securityhub describe-hub \
|
|
5
|
+
aws securityhub describe-hub \
|
|
6
6
|
--hub-arn "arn:aws:securityhub:us-west-1:123456789012:hub/default"
|
|
7
7
|
|
|
8
8
|
Output::
|
|
9
9
|
|
|
10
10
|
{
|
|
11
11
|
"HubArn": "arn:aws:securityhub:us-west-1:123456789012:hub/default",
|
|
12
|
-
"SubscribedAt": "2019-11-19T23:15:10.046Z"
|
|
12
|
+
"SubscribedAt": "2019-11-19T23:15:10.046Z",
|
|
13
|
+
"AutoEnableControls": true,
|
|
14
|
+
"ControlFindingGenerator": "SECURITY_CONTROL"
|
|
13
15
|
}
|
|
14
16
|
|
|
15
|
-
For more information, see `AWS::SecurityHub::Hub <https://docs.aws.amazon.com/AWSCloudFormation/latest/
|
|
17
|
+
For more information, see `AWS::SecurityHub::Hub <https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-resource-securityhub-hub.html>`__ in the *AWS CloudFormation User Guide*.
|
|
@@ -1,22 +1,23 @@
|
|
|
1
|
-
**To create a service**
|
|
1
|
+
**Example 1: To create a service using namespace ID**
|
|
2
2
|
|
|
3
3
|
The following ``create-service`` example creates a service. ::
|
|
4
4
|
|
|
5
5
|
aws servicediscovery create-service \
|
|
6
6
|
--name myservice \
|
|
7
7
|
--namespace-id ns-ylexjili4cdxy3xm \
|
|
8
|
-
--dns-config "
|
|
8
|
+
--dns-config "RoutingPolicy=MULTIVALUE,DnsRecords=[{Type=A,TTL=60}]"
|
|
9
9
|
|
|
10
10
|
Output::
|
|
11
11
|
|
|
12
12
|
{
|
|
13
|
-
|
|
14
|
-
"Id": "srv-
|
|
15
|
-
"Arn": "arn:aws:servicediscovery:us-west-2:
|
|
13
|
+
"Service": {
|
|
14
|
+
"Id": "srv-abcd1234xmpl5678",
|
|
15
|
+
"Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
|
|
16
|
+
"ResourceOwner": "123456789012",
|
|
16
17
|
"Name": "myservice",
|
|
17
|
-
"NamespaceId": "ns-
|
|
18
|
+
"NamespaceId": "ns-abcd1234xmpl5678",
|
|
18
19
|
"DnsConfig": {
|
|
19
|
-
"NamespaceId": "ns-
|
|
20
|
+
"NamespaceId": "ns-abcd1234xmpl5678",
|
|
20
21
|
"RoutingPolicy": "MULTIVALUE",
|
|
21
22
|
"DnsRecords": [
|
|
22
23
|
{
|
|
@@ -25,10 +26,49 @@ Output::
|
|
|
25
26
|
}
|
|
26
27
|
]
|
|
27
28
|
},
|
|
28
|
-
"
|
|
29
|
-
"
|
|
29
|
+
"Type": "DNS_HTTP",
|
|
30
|
+
"CreateDate": "2025-08-18T13:45:31.023000-05:00",
|
|
31
|
+
"CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678",
|
|
32
|
+
"CreatedByAccount": "123456789012"
|
|
30
33
|
}
|
|
31
34
|
}
|
|
32
35
|
|
|
33
|
-
For more information, see `Creating
|
|
36
|
+
For more information, see `Creating an AWS Cloud Map service for an application component <https://docs.aws.amazon.com/cloud-map/latest/dg/creating-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
37
|
+
|
|
38
|
+
**Example 2: To create a service using namespace ARN**
|
|
39
|
+
|
|
40
|
+
The following ``create-service`` example creates a service using a namespace ARN instead of namespace ID. Specifying a namespace ARN is necessary when creating a service in a shared namespace. ::
|
|
41
|
+
|
|
42
|
+
aws servicediscovery create-service \
|
|
43
|
+
--name myservice-arn \
|
|
44
|
+
--namespace-id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678 \
|
|
45
|
+
--dns-config "RoutingPolicy=MULTIVALUE,DnsRecords=[{Type=A,TTL=60}]"
|
|
46
|
+
|
|
47
|
+
Output::
|
|
48
|
+
|
|
49
|
+
{
|
|
50
|
+
"Service": {
|
|
51
|
+
"Id": "srv-abcd1234xmpl5678",
|
|
52
|
+
"Arn": "arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678",
|
|
53
|
+
"ResourceOwner": "123456789012",
|
|
54
|
+
"Name": "myservice-arn",
|
|
55
|
+
"NamespaceId": "ns-abcd1234xmpl5678",
|
|
56
|
+
"DnsConfig": {
|
|
57
|
+
"NamespaceId": "ns-abcd1234xmpl5678",
|
|
58
|
+
"RoutingPolicy": "MULTIVALUE",
|
|
59
|
+
"DnsRecords": [
|
|
60
|
+
{
|
|
61
|
+
"Type": "A",
|
|
62
|
+
"TTL": 60
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"Type": "DNS_HTTP",
|
|
67
|
+
"CreateDate": "2025-08-18T13:45:31.023000-05:00",
|
|
68
|
+
"CreatorRequestId": "abcd1234-5678-90ab-cdef-xmpl12345678",
|
|
69
|
+
"CreatedByAccount": "123456789012"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
34
74
|
|
|
@@ -1,17 +1,31 @@
|
|
|
1
|
-
**To delete a namespace**
|
|
1
|
+
**Example 1: To delete a namespace**
|
|
2
2
|
|
|
3
3
|
The following ``delete-namespace`` example deletes a namespace. ::
|
|
4
4
|
|
|
5
5
|
aws servicediscovery delete-namespace \
|
|
6
|
-
--id ns-
|
|
6
|
+
--id ns-abcd1234xmpl5678
|
|
7
7
|
|
|
8
8
|
Output::
|
|
9
9
|
|
|
10
10
|
{
|
|
11
|
-
"OperationId": "
|
|
11
|
+
"OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
|
|
12
12
|
}
|
|
13
13
|
|
|
14
14
|
To confirm that the operation succeeded, you can run ``get-operation``. For more information, see `get-operation <https://docs.aws.amazon.com/cli/latest/reference/servicediscovery/get-operation.html>`__ .
|
|
15
15
|
|
|
16
|
-
For more information, see `Deleting
|
|
16
|
+
For more information, see `Deleting an AWS Cloud Map namespace <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
17
17
|
|
|
18
|
+
**Example 2: To delete a namespace using namespace ARN**
|
|
19
|
+
|
|
20
|
+
The following ``delete-namespace`` example deletes a namespace using its ARN. ::
|
|
21
|
+
|
|
22
|
+
aws servicediscovery delete-namespace \
|
|
23
|
+
--id arn:aws:servicediscovery:us-west-2:123456789012:namespace/ns-abcd1234xmpl5678
|
|
24
|
+
|
|
25
|
+
Output::
|
|
26
|
+
|
|
27
|
+
{
|
|
28
|
+
"OperationId": "abcd1234-5678-90ab-cdef-xmpl12345678"
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
For more information, see `Deleting an AWS Cloud Map namespace <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -1,11 +1,23 @@
|
|
|
1
|
-
**To delete a service attribute**
|
|
1
|
+
**Example 1: To delete a service attribute**
|
|
2
2
|
|
|
3
3
|
The following ``delete-service-attributes`` example deletes a service attribute with the key ``Port`` that is associated with the specified service. ::
|
|
4
4
|
|
|
5
5
|
aws servicediscovery delete-service-attributes \
|
|
6
|
-
--service-id srv-
|
|
6
|
+
--service-id srv-abcd1234xmpl5678 \
|
|
7
7
|
--attributes Port
|
|
8
8
|
|
|
9
9
|
This command produces no output.
|
|
10
10
|
|
|
11
|
-
For more information, see `
|
|
11
|
+
For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
12
|
+
|
|
13
|
+
**Example 2: To delete a service attribute using ARN**
|
|
14
|
+
|
|
15
|
+
The following ``delete-service-attributes`` example deletes a service attribute using the service ARN. Specifying the ARN is necessary for deleting attributes associated with services created in namespaces shared with your account. ::
|
|
16
|
+
|
|
17
|
+
aws servicediscovery delete-service-attributes \
|
|
18
|
+
--service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678 \
|
|
19
|
+
--attributes Port
|
|
20
|
+
|
|
21
|
+
This command produces no output.
|
|
22
|
+
|
|
23
|
+
For more information, see `AWS Cloud Map services <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-services.html>`__ and `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -1,11 +1,21 @@
|
|
|
1
|
-
**To delete a service**
|
|
1
|
+
**Example 1: To delete a service**
|
|
2
2
|
|
|
3
3
|
The following ``delete-service`` example deletes a service. ::
|
|
4
4
|
|
|
5
5
|
aws servicediscovery delete-service \
|
|
6
|
-
--id srv-
|
|
6
|
+
--id srv-abcd1234xmpl5678
|
|
7
7
|
|
|
8
8
|
This command produces no output.
|
|
9
9
|
|
|
10
|
-
For more information, see `Deleting
|
|
10
|
+
For more information, see `Deleting an AWS Cloud Map service <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
11
11
|
|
|
12
|
+
**Example 2: To delete a service using ARN**
|
|
13
|
+
|
|
14
|
+
The following ``delete-service`` example deletes a service using its ARN. ::
|
|
15
|
+
|
|
16
|
+
aws servicediscovery delete-service \
|
|
17
|
+
--id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-abcd1234xmpl5678
|
|
18
|
+
|
|
19
|
+
This command produces no output.
|
|
20
|
+
|
|
21
|
+
For more information, see `Deleting an AWS Cloud Map service <https://docs.aws.amazon.com/cloud-map/latest/dg/deleting-services.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
**To deregister a service instance**
|
|
1
|
+
**Example 1: To deregister a service instance**
|
|
2
2
|
|
|
3
3
|
The following ``deregister-instance`` example deregisters a service instance. ::
|
|
4
4
|
|
|
@@ -12,7 +12,23 @@ Output::
|
|
|
12
12
|
"OperationId": "4yejorelbukcjzpnr6tlmrghsjwpngf4-k98rnaiq"
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
To confirm that the operation succeeded, you can run ``get-operation``. For more information, see `get-operation <https://docs.aws.amazon.com/cli/latest/reference/servicediscovery/get-operation.html>`__
|
|
15
|
+
To confirm that the operation succeeded, you can run ``get-operation``. For more information, see `get-operation <https://docs.aws.amazon.com/cli/latest/reference/servicediscovery/get-operation.html>`__.
|
|
16
16
|
|
|
17
17
|
For more information, see `Deregistering service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/deregistering-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
18
18
|
|
|
19
|
+
**Example 2: To deregister a service instance using service ARN for shared namespaces**
|
|
20
|
+
|
|
21
|
+
The following ``deregister-instance`` example deregisters a service instance using a service ARN instead of service ID. Specifying an ARN is required when deregistering instances from services created in namespaces that are shared with your account. ::
|
|
22
|
+
|
|
23
|
+
aws servicediscovery deregister-instance \
|
|
24
|
+
--service-id arn:aws:servicediscovery:us-west-2:123456789012:service/srv-p5zdwlg5uvvzjita \
|
|
25
|
+
--instance-id web-server-01
|
|
26
|
+
|
|
27
|
+
Output::
|
|
28
|
+
|
|
29
|
+
{
|
|
30
|
+
"OperationId": "gv4g5meo7ndmkqjrhpn39wk42xmpl"
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ and `Deregistering an AWS Cloud Map service instance <https://docs.aws.amazon.com/cloud-map/latest/dg/deregistering-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
34
|
+
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
**To discover the revision of an instance**
|
|
1
|
+
**Example 1: To discover the revision of an instance**
|
|
2
2
|
|
|
3
3
|
The following ``discover-instances-revision`` example discovers the increasing revision of an instance. ::
|
|
4
4
|
|
|
@@ -13,3 +13,20 @@ Output::
|
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
For more information, see `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
16
|
+
|
|
17
|
+
**Example 2: To discover the revision of instances from a specific owner account**
|
|
18
|
+
|
|
19
|
+
The following ``discover-instances-revision`` example discovers the revision of instances from a specific owner account. The owner-account parameter is necessary for instances in namespaces that are shared with your account. ::
|
|
20
|
+
|
|
21
|
+
aws servicediscovery discover-instances-revision \
|
|
22
|
+
--namespace-name shared-namespace \
|
|
23
|
+
--service-name shared-service \
|
|
24
|
+
--owner-account 123456789111
|
|
25
|
+
|
|
26
|
+
Output::
|
|
27
|
+
|
|
28
|
+
{
|
|
29
|
+
"InstancesRevision": 1234567890
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ and `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
**To discover registered instances**
|
|
1
|
+
**Example 1: To discover registered instances**
|
|
2
2
|
|
|
3
3
|
The following ``discover-instances`` example discovers registered instances. ::
|
|
4
4
|
|
|
@@ -22,7 +22,37 @@ Output::
|
|
|
22
22
|
"AWS_INSTANCE_PORT": "808"
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
|
-
]
|
|
25
|
+
],
|
|
26
|
+
"InstancesRevision": 85648075627387284
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
For more information, see `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|
|
30
|
+
|
|
31
|
+
**Example 2: To discover instances from a specific owner account**
|
|
32
|
+
|
|
33
|
+
The following ``discover-instances`` example discovers registered instances from a specific owner account. This parameter is necessary to discover instances in namespaces that are shared with your account. ::
|
|
34
|
+
|
|
35
|
+
aws servicediscovery discover-instances \
|
|
36
|
+
--namespace-name shared-namespace \
|
|
37
|
+
--service-name shared-service \
|
|
38
|
+
--owner-account 123456789111
|
|
39
|
+
|
|
40
|
+
Output::
|
|
41
|
+
|
|
42
|
+
{
|
|
43
|
+
"Instances": [
|
|
44
|
+
{
|
|
45
|
+
"InstanceId": "shared-instance-1234",
|
|
46
|
+
"NamespaceName": "shared-namespace",
|
|
47
|
+
"ServiceName": "shared-service",
|
|
48
|
+
"HealthStatus": "HEALTHY",
|
|
49
|
+
"Attributes": {
|
|
50
|
+
"AWS_INSTANCE_IPV4": "203.0.113.75",
|
|
51
|
+
"AWS_INSTANCE_PORT": "80"
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"InstancesRevision": 1234567890
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
For more information, see `Shared AWS Cloud Map namespaces <https://docs.aws.amazon.com/cloud-map/latest/dg/sharing-namespaces.html>`__ and `AWS Cloud Map service instances <https://docs.aws.amazon.com/cloud-map/latest/dg/working-with-instances.html>`__ in the *AWS Cloud Map Developer Guide*.
|