awscli 1.38.3__py3-none-any.whl → 1.38.4__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/examples/ec2/allocate-address.rst +22 -1
- awscli/examples/ecs/wait/services-inactive.rst +9 -0
- awscli/examples/ecs/wait/task-stopped.rst +22 -0
- awscli/examples/ivs-realtime/create-stage.rst +68 -7
- awscli/examples/ivs-realtime/get-composition.rst +74 -1
- awscli/examples/ivs-realtime/get-stage.rst +12 -5
- awscli/examples/ivs-realtime/start-composition.rst +77 -0
- awscli/examples/ivs-realtime/update-stage.rst +15 -7
- awscli/examples/lambda/invoke.rst +2 -2
- {awscli-1.38.3.dist-info → awscli-1.38.4.dist-info}/METADATA +2 -2
- {awscli-1.38.3.dist-info → awscli-1.38.4.dist-info}/RECORD +20 -18
- {awscli-1.38.3.data → awscli-1.38.4.data}/scripts/aws +0 -0
- {awscli-1.38.3.data → awscli-1.38.4.data}/scripts/aws.cmd +0 -0
- {awscli-1.38.3.data → awscli-1.38.4.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.38.3.data → awscli-1.38.4.data}/scripts/aws_completer +0 -0
- {awscli-1.38.3.data → awscli-1.38.4.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.38.3.dist-info → awscli-1.38.4.dist-info}/LICENSE.txt +0 -0
- {awscli-1.38.3.dist-info → awscli-1.38.4.dist-info}/WHEEL +0 -0
- {awscli-1.38.3.dist-info → awscli-1.38.4.dist-info}/top_level.txt +0 -0
awscli/__init__.py
CHANGED
|
@@ -53,4 +53,25 @@ Output::
|
|
|
53
53
|
"NetworkBorderGroup": "us-west-2",
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
For more information, see `Elastic IP addresses <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html>`__ in the *Amazon EC2 User Guide*.
|
|
56
|
+
For more information, see `Elastic IP addresses <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/elastic-ip-addresses-eip.html>`__ in the *Amazon EC2 User Guide*.
|
|
57
|
+
|
|
58
|
+
**Example 4: To allocate an Elastic IP address from an IPAM pool**
|
|
59
|
+
|
|
60
|
+
The following ``allocate-address`` example allocates a specific /32 Elastic IP address from an Amazon VPC IP Address Manager (IPAM) pool. ::
|
|
61
|
+
|
|
62
|
+
aws ec2 allocate-address \
|
|
63
|
+
--region us-east-1 \
|
|
64
|
+
--ipam-pool-id ipam-pool-1234567890abcdef0 \
|
|
65
|
+
--address 192.0.2.0
|
|
66
|
+
|
|
67
|
+
Output::
|
|
68
|
+
|
|
69
|
+
{
|
|
70
|
+
"PublicIp": "192.0.2.0",
|
|
71
|
+
"AllocationId": "eipalloc-abcdef01234567890",
|
|
72
|
+
"PublicIpv4Pool": "ipam-pool-1234567890abcdef0",
|
|
73
|
+
"NetworkBorderGroup": "us-east-1",
|
|
74
|
+
"Domain": "vpc"
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
For more information, see `Allocate sequential Elastic IP addresses from an IPAM pool <https://docs.aws.amazon.com/vpc/latest/ipam/tutorials-eip-pool.html>`__ in the *Amazon VPC IPAM User Guide*.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
**Wait until an ECS service becomes inactive**
|
|
2
|
+
|
|
3
|
+
The following ``service-inactive`` example waits until ECS services becomes inactive in the cluster. ::
|
|
4
|
+
|
|
5
|
+
aws ecs wait services-inactive \
|
|
6
|
+
--cluster MyCluster \
|
|
7
|
+
--services MyService
|
|
8
|
+
|
|
9
|
+
This command produces no output.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
**Example 1: Wait until an ECS task is in stopped state**
|
|
2
|
+
|
|
3
|
+
The following ``wait tasks-stopped`` example waits until the provided tasks in the command are in a stopped state. You can pass IDs or full ARN of the tasks. This example uses ID of the task. ::
|
|
4
|
+
|
|
5
|
+
aws ecs wait tasks-stopped \
|
|
6
|
+
--cluster MyCluster \
|
|
7
|
+
--tasks 2c196f0a00dd4f58b7c8897a5c7bce13
|
|
8
|
+
|
|
9
|
+
This command produces no output.
|
|
10
|
+
|
|
11
|
+
**Example 2: Wait until multiple ECS tasks are in stopped state**
|
|
12
|
+
|
|
13
|
+
The following ``wait tasks-stopped`` example waits until the multiple tasks provided in the command are in a stopped state. You can pass IDs or full ARN of the tasks. This example uses IDs of the tasks. ::
|
|
14
|
+
|
|
15
|
+
aws ecs wait tasks-stopped \
|
|
16
|
+
--cluster MyCluster \
|
|
17
|
+
--tasks 2c196f0a00dd4f58b7c8897a5c7bce13 4d590253bb114126b7afa7b58EXAMPLE
|
|
18
|
+
|
|
19
|
+
This command produces no output.
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
@@ -19,11 +19,24 @@ Output::
|
|
|
19
19
|
"stage": {
|
|
20
20
|
"activeSessionId": "st-a1b2c3d4e5f6g",
|
|
21
21
|
"arn": "arn:aws:ivs:us-west-2:123456789012:stage/abcdABCDefgh",
|
|
22
|
+
"autoParticipantRecordingConfiguration": {
|
|
23
|
+
"storageConfigurationArn": "",
|
|
24
|
+
"mediaTypes": [
|
|
25
|
+
"AUDIO_VIDEO"
|
|
26
|
+
],
|
|
27
|
+
"thumbnailConfiguration": {
|
|
28
|
+
"targetIntervalSeconds": 60,
|
|
29
|
+
"storage": [
|
|
30
|
+
"SEQUENTIAL"
|
|
31
|
+
],
|
|
32
|
+
"recordingMode": "DISABLED"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
22
35
|
"endpoints": {
|
|
23
36
|
"events": "wss://global.events.live-video.net",
|
|
24
37
|
"rtmp": "rtmp://9x0y8z7s6t5u.global-contribute-staging.live-video.net/app/",
|
|
25
38
|
"rtmps": "rtmps://9x0y8z7s6t5u.global-contribute-staging.live-video.net:443/app/",
|
|
26
|
-
"whip": "https://
|
|
39
|
+
"whip": "https://9x0y8z7s6t5u.global-bm.whip.live-video.net"
|
|
27
40
|
},
|
|
28
41
|
"name": "stage1",
|
|
29
42
|
"tags": {}
|
|
@@ -47,16 +60,23 @@ Output::
|
|
|
47
60
|
"activeSessionId": "st-a1b2c3d4e5f6g",
|
|
48
61
|
"arn": "arn:aws:ivs:us-west-2:123456789012:stage/abcdABCDefgh",
|
|
49
62
|
"autoParticipantRecordingConfiguration": {
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
63
|
+
"storageConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:storage-configuration/abcdABCDefgh"
|
|
64
|
+
"mediaTypes": [
|
|
65
|
+
"AUDIO_VIDEO"
|
|
66
|
+
],
|
|
67
|
+
"thumbnailConfiguration": {
|
|
68
|
+
"targetIntervalSeconds": 60,
|
|
69
|
+
"storage": [
|
|
70
|
+
"SEQUENTIAL"
|
|
71
|
+
],
|
|
72
|
+
"recordingMode": "DISABLED"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
55
75
|
"endpoints": {
|
|
56
76
|
"events": "wss://global.events.live-video.net",
|
|
57
77
|
"rtmp": "rtmp://9x0y8z7s6t5u.global-contribute-staging.live-video.net/app/",
|
|
58
78
|
"rtmps": "rtmps://9x0y8z7s6t5u.global-contribute-staging.live-video.net:443/app/",
|
|
59
|
-
"whip": "https://
|
|
79
|
+
"whip": "https://9x0y8z7s6t5u.global-bm.whip.live-video.net"
|
|
60
80
|
},
|
|
61
81
|
"name": "stage1",
|
|
62
82
|
"tags": {}
|
|
@@ -64,3 +84,44 @@ Output::
|
|
|
64
84
|
}
|
|
65
85
|
|
|
66
86
|
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
87
|
+
|
|
88
|
+
**Example 3: To create a stage and configure individial participant recording with thumbnail recording enabled**
|
|
89
|
+
|
|
90
|
+
The following ``create-stage`` example creates a stage and configures individual participant recording with thumbnail recording enabled. ::
|
|
91
|
+
|
|
92
|
+
aws ivs-realtime create-stage \
|
|
93
|
+
--name stage1 \
|
|
94
|
+
--auto-participant-recording-configuration '{"mediaTypes": ["AUDIO_VIDEO"],"storageConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:storage-configuration/abcdABCDefgh", \
|
|
95
|
+
"thumbnailConfiguration": {"recordingMode": "INTERVAL","storage": ["SEQUENTIAL"],"targetIntervalSeconds": 60}}'
|
|
96
|
+
|
|
97
|
+
Output::
|
|
98
|
+
|
|
99
|
+
{
|
|
100
|
+
"stage": {
|
|
101
|
+
"activeSessionId": "st-a1b2c3d4e5f6g",
|
|
102
|
+
"arn": "arn:aws:ivs:us-west-2:123456789012:stage/abcdABCDefgh",
|
|
103
|
+
"autoParticipantRecordingConfiguration": {
|
|
104
|
+
"storageConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:storage-configuration/abcdABCDefgh",
|
|
105
|
+
"mediaTypes": [
|
|
106
|
+
"AUDIO_VIDEO"
|
|
107
|
+
],
|
|
108
|
+
"thumbnailConfiguration": {
|
|
109
|
+
"targetIntervalSeconds": 60,
|
|
110
|
+
"storage": [
|
|
111
|
+
"SEQUENTIAL"
|
|
112
|
+
],
|
|
113
|
+
"recordingMode": "INTERVAL"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"endpoints": {
|
|
117
|
+
"events": "wss://global.events.live-video.net",
|
|
118
|
+
"rtmp": "rtmp://9x0y8z7s6t5u.global-contribute-staging.live-video.net/app/",
|
|
119
|
+
"rtmps": "rtmps://9x0y8z7s6t5u.global-contribute-staging.live-video.net:443/app/",
|
|
120
|
+
"whip": "https://9x0y8z7s6t5u.global-bm.whip.live-video.net"
|
|
121
|
+
},
|
|
122
|
+
"name": "stage1",
|
|
123
|
+
"tags": {}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
@@ -33,7 +33,7 @@ Output::
|
|
|
33
33
|
"recordingConfiguration": {
|
|
34
34
|
"format": "HLS"
|
|
35
35
|
},
|
|
36
|
-
"storageConfigurationArn": "arn:arn:aws:ivs:ap-northeast-1:123456789012:storage-configuration/FefABabCDcdE"
|
|
36
|
+
"storageConfigurationArn": "arn:arn:aws:ivs:ap-northeast-1:123456789012:storage-configuration/FefABabCDcdE",
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"detail": {
|
|
@@ -130,4 +130,77 @@ Output::
|
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
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*.
|
|
134
|
+
|
|
135
|
+
**Example 3: To get a composition with thumbnail recording enabled**
|
|
136
|
+
|
|
137
|
+
The following ``get-composition`` example gets the composition for the ARN (Amazon Resource Name) specified, which has thumbnail recording enabled with default settings. ::
|
|
138
|
+
|
|
139
|
+
aws ivs-realtime get-composition \
|
|
140
|
+
--arn "arn:aws:ivs:ap-northeast-1:123456789012:composition/abcdABCDefgh"
|
|
141
|
+
|
|
142
|
+
Output::
|
|
143
|
+
|
|
144
|
+
{
|
|
145
|
+
"composition": {
|
|
146
|
+
"arn": "arn:aws:ivs:ap-northeast-1:123456789012:composition/abcdABCDefgh",
|
|
147
|
+
"destinations": [
|
|
148
|
+
{
|
|
149
|
+
"configuration": {
|
|
150
|
+
"channel": {
|
|
151
|
+
"channelArn": "arn:aws:ivs:ap-northeast-1:123456789012:channel/abcABCdefDEg",
|
|
152
|
+
"encoderConfigurationArn": "arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"
|
|
153
|
+
},
|
|
154
|
+
"name": ""
|
|
155
|
+
},
|
|
156
|
+
"id": "AabBCcdDEefF",
|
|
157
|
+
"startTime": "2023-10-16T23:26:00+00:00",
|
|
158
|
+
"state": "ACTIVE"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"configuration": {
|
|
162
|
+
"name": "",
|
|
163
|
+
"s3": {
|
|
164
|
+
"encoderConfigurationArns": [
|
|
165
|
+
"arn:aws:ivs:arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"
|
|
166
|
+
],
|
|
167
|
+
"recordingConfiguration": {
|
|
168
|
+
"format": "HLS"
|
|
169
|
+
},
|
|
170
|
+
"storageConfigurationArn": "arn:arn:aws:ivs:ap-northeast-1:123456789012:storage-configuration/FefABabCDcdE",
|
|
171
|
+
"thumbnailConfigurations": [
|
|
172
|
+
{
|
|
173
|
+
"targetIntervalSeconds": 60,
|
|
174
|
+
"storage": [
|
|
175
|
+
"SEQUENTIAL"
|
|
176
|
+
],
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"detail": {
|
|
182
|
+
"s3": {
|
|
183
|
+
"recordingPrefix": "aBcDeFgHhGfE/AbCdEfGhHgFe/GHFabcgefABC/composite"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"id": "GHFabcgefABC",
|
|
187
|
+
"startTime": "2023-10-16T23:26:00+00:00",
|
|
188
|
+
"state": "STARTING"
|
|
189
|
+
}
|
|
190
|
+
],
|
|
191
|
+
"layout": {
|
|
192
|
+
"grid": {
|
|
193
|
+
"featuredParticipantAttribute": ""
|
|
194
|
+
"gridGap": 2,
|
|
195
|
+
"omitStoppedVideo": false,
|
|
196
|
+
"videoAspectRatio": "VIDEO",
|
|
197
|
+
"videoFillMode": "" }
|
|
198
|
+
},
|
|
199
|
+
"stageArn": "arn:aws:ivs:ap-northeast-1:123456789012:stage/defgABCDabcd",
|
|
200
|
+
"startTime": "2023-10-16T23:24:00+00:00",
|
|
201
|
+
"state": "ACTIVE",
|
|
202
|
+
"tags": {}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
133
206
|
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*.
|
|
@@ -12,20 +12,27 @@ Output::
|
|
|
12
12
|
"activeSessionId": "st-a1b2c3d4e5f6g",
|
|
13
13
|
"arn": "arn:aws:ivs:us-west-2:123456789012:stage/abcdABCDefgh",
|
|
14
14
|
"autoParticipantRecordingConfiguration": {
|
|
15
|
+
"storageConfigurationArn": "",
|
|
15
16
|
"mediaTypes": [
|
|
16
|
-
|
|
17
|
+
"AUDIO_VIDEO"
|
|
17
18
|
],
|
|
18
|
-
"
|
|
19
|
-
|
|
19
|
+
"thumbnailConfiguration": {
|
|
20
|
+
"targetIntervalSeconds": 60,
|
|
21
|
+
"storage": [
|
|
22
|
+
"SEQUENTIAL"
|
|
23
|
+
],
|
|
24
|
+
"recordingMode": "DISABLED",
|
|
25
|
+
}
|
|
26
|
+
},
|
|
20
27
|
"endpoints": {
|
|
21
28
|
"events": "wss://global.events.live-video.net",
|
|
22
29
|
"rtmp": "rtmp://9x0y8z7s6t5u.global-contribute-staging.live-video.net/app/",
|
|
23
30
|
"rtmps": "rtmps://9x0y8z7s6t5u.global-contribute-staging.live-video.net:443/app/",
|
|
24
|
-
"whip": "https://
|
|
31
|
+
"whip": "https://9x0y8z7s6t5u.global-bm.whip.live-video.net"
|
|
25
32
|
},
|
|
26
33
|
"name": "test",
|
|
27
34
|
"tags": {}
|
|
28
35
|
}
|
|
29
36
|
}
|
|
30
37
|
|
|
31
|
-
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
38
|
+
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
@@ -136,4 +136,81 @@ Output::
|
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
+
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*.
|
|
140
|
+
|
|
141
|
+
**Example 3: To start a composition with thubnail recording enabled**
|
|
142
|
+
|
|
143
|
+
The following ``start-composition`` example starts a composition for the specified stage to be streamed to the specified locations with thumbnail recording enabled. ::
|
|
144
|
+
|
|
145
|
+
aws ivs-realtime start-composition \
|
|
146
|
+
--stage-arn arn:aws:ivs:ap-northeast-1:123456789012:stage/defgABCDabcd \
|
|
147
|
+
--destinations '[{"channel": {"channelArn": "arn:aws:ivs:ap-northeast-1:123456789012:channel/abcABCdefDEg", \
|
|
148
|
+
"encoderConfigurationArn": "arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"}}, \
|
|
149
|
+
{"s3": {"encoderConfigurationArns": ["arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"], \
|
|
150
|
+
"storageConfigurationArn": "arn:aws:ivs:ap-northeast-1:123456789012:storage-configuration/FefABabCDcdE", \
|
|
151
|
+
"thumbnailConfigurations": [{"storage": ["SEQUENTIAL"],"targetIntervalSeconds": 60}]}}]'
|
|
152
|
+
|
|
153
|
+
Output::
|
|
154
|
+
|
|
155
|
+
{
|
|
156
|
+
"composition": {
|
|
157
|
+
"arn": "arn:aws:ivs:ap-northeast-1:123456789012:composition/abcdABCDefgh",
|
|
158
|
+
"destinations": [
|
|
159
|
+
{
|
|
160
|
+
"configuration": {
|
|
161
|
+
"channel": {
|
|
162
|
+
"channelArn": "arn:aws:ivs:ap-northeast-1:123456789012:channel/abcABCdefDEg",
|
|
163
|
+
"encoderConfigurationArn": "arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"
|
|
164
|
+
},
|
|
165
|
+
"name": ""
|
|
166
|
+
},
|
|
167
|
+
"id": "AabBCcdDEefF",
|
|
168
|
+
"state": "STARTING"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"configuration": {
|
|
172
|
+
"name": "",
|
|
173
|
+
"s3": {
|
|
174
|
+
"encoderConfigurationArns": [
|
|
175
|
+
"arn:aws:ivs:arn:aws:ivs:ap-northeast-1:123456789012:encoder-configuration/ABabCDcdEFef"
|
|
176
|
+
],
|
|
177
|
+
"recordingConfiguration": {
|
|
178
|
+
"format": "HLS"
|
|
179
|
+
},
|
|
180
|
+
"storageConfigurationArn": "arn:arn:aws:ivs:ap-northeast-1:123456789012:storage-configuration/FefABabCDcdE",
|
|
181
|
+
"thumbnailConfigurations": [
|
|
182
|
+
{
|
|
183
|
+
"targetIntervalSeconds": 60,
|
|
184
|
+
"storage": [
|
|
185
|
+
"SEQUENTIAL"
|
|
186
|
+
]
|
|
187
|
+
}
|
|
188
|
+
]
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"detail": {
|
|
192
|
+
"s3": {
|
|
193
|
+
"recordingPrefix": "aBcDeFgHhGfE/AbCdEfGhHgFe/GHFabcgefABC/composite"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"id": "GHFabcgefABC",
|
|
197
|
+
"state": "STARTING"
|
|
198
|
+
}
|
|
199
|
+
],
|
|
200
|
+
"layout": {
|
|
201
|
+
"grid": {
|
|
202
|
+
"featuredParticipantAttribute": ""
|
|
203
|
+
"gridGap": 2,
|
|
204
|
+
"omitStoppedVideo": false,
|
|
205
|
+
"videoAspectRatio": "VIDEO",
|
|
206
|
+
"videoFillMode": ""
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"stageArn": "arn:aws:ivs:ap-northeast-1:123456789012:stage/defgABCDabcd",
|
|
210
|
+
"startTime": "2023-10-16T23:24:00+00:00",
|
|
211
|
+
"state": "STARTING",
|
|
212
|
+
"tags": {}
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
|
|
139
216
|
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*.
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
**To update a stage's configuration**
|
|
2
2
|
|
|
3
|
-
The following ``update-stage`` example updates a stage for a specified stage ARN to update the stage name and configure individual participant recording. ::
|
|
3
|
+
The following ``update-stage`` example updates a stage for a specified stage ARN to update the stage name and configure individual participant recording with thumbnail recording enabled. ::
|
|
4
4
|
|
|
5
5
|
aws ivs-realtime update-stage \
|
|
6
6
|
--arn arn:aws:ivs:us-west-2:123456789012:stage/abcdABCDefgh \
|
|
7
|
-
--auto-participant-recording-configuration '{"mediaTypes": ["AUDIO_VIDEO"],"storageConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:storage-configuration/abcdABCDefgh"
|
|
7
|
+
--auto-participant-recording-configuration '{"mediaTypes": ["AUDIO_VIDEO"],"storageConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:storage-configuration/abcdABCDefgh", \
|
|
8
|
+
"thumbnailConfiguration": {"recordingMode": "INTERVAL","storage": ["SEQUENTIAL"],"targetIntervalSeconds": 60}}' \
|
|
8
9
|
--name stage1a
|
|
9
10
|
|
|
10
11
|
Output::
|
|
@@ -13,10 +14,17 @@ Output::
|
|
|
13
14
|
"stage": {
|
|
14
15
|
"arn": "arn:aws:ivs:us-west-2:123456789012:stage/abcdABCDefgh",
|
|
15
16
|
"autoParticipantRecordingConfiguration": {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
"mediaTypes": [
|
|
18
|
+
"AUDIO_VIDEO"
|
|
19
|
+
],
|
|
20
|
+
"storageConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:storage-configuration/abcdABCDefgh",
|
|
21
|
+
"thumbnailConfiguration": {
|
|
22
|
+
"targetIntervalSeconds": 60,
|
|
23
|
+
"storage": [
|
|
24
|
+
"SEQUENTIAL"
|
|
25
|
+
],
|
|
26
|
+
"recordingMode": "INTERVAL"
|
|
27
|
+
}
|
|
20
28
|
},
|
|
21
29
|
"endpoints": {
|
|
22
30
|
"events": "wss://global.events.live-video.net",
|
|
@@ -29,4 +37,4 @@ Output::
|
|
|
29
37
|
}
|
|
30
38
|
}
|
|
31
39
|
|
|
32
|
-
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
40
|
+
For more information, see `Enabling Multiple Hosts on an Amazon IVS Stream <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multiple-hosts.html>`__ in the *Amazon Interactive Video Service User Guide*.
|
|
@@ -15,7 +15,7 @@ Output::
|
|
|
15
15
|
"StatusCode": 200
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
For more information, see `
|
|
18
|
+
For more information, see `Invoke a Lambda function synchronously <https://docs.aws.amazon.com/lambda/latest/dg/invocation-sync.html>`__ in the *AWS Lambda Developer Guide*.
|
|
19
19
|
|
|
20
20
|
**Example 2: To invoke a Lambda function asynchronously**
|
|
21
21
|
|
|
@@ -34,4 +34,4 @@ Output::
|
|
|
34
34
|
"StatusCode": 202
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
For more information, see `
|
|
37
|
+
For more information, see `Invoking a Lambda function asynchronously <https://docs.aws.amazon.com/lambda/latest/dg/invocation-async.html>`__ in the *AWS Lambda Developer Guide*.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.38.
|
|
3
|
+
Version: 1.38.4
|
|
4
4
|
Summary: Universal Command Line Environment for AWS.
|
|
5
5
|
Home-page: http://aws.amazon.com/cli/
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Requires-Python: >= 3.8
|
|
25
25
|
License-File: LICENSE.txt
|
|
26
|
-
Requires-Dist: botocore (==1.37.
|
|
26
|
+
Requires-Dist: botocore (==1.37.4)
|
|
27
27
|
Requires-Dist: docutils (<0.17,>=0.10)
|
|
28
28
|
Requires-Dist: s3transfer (<0.12.0,>=0.11.0)
|
|
29
29
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
awscli/__init__.py,sha256=
|
|
1
|
+
awscli/__init__.py,sha256=relnLwC66AejsnwDg20Cl361-rIkGbWE2NKI05Az5ZM,1533
|
|
2
2
|
awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
|
|
3
3
|
awscli/alias.py,sha256=Jj2jetpajUMcjqx9tFhHUOKpzLChQygnH2zqDFfmgIM,11315
|
|
4
4
|
awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
|
|
@@ -1692,7 +1692,7 @@ awscli/examples/ec2/accept-transit-gateway-vpc-attachment.rst,sha256=jpJbXapJovr
|
|
|
1692
1692
|
awscli/examples/ec2/accept-vpc-endpoint-connections.rst,sha256=WfmQJblgsn21J_XdCYN0s1cp6XQ_77AIJKUWGAvRVIM,334
|
|
1693
1693
|
awscli/examples/ec2/accept-vpc-peering-connection.rst,sha256=xxOVMKH4TepZErom1jluhbPLew2OQM56VxRlBOpCo14,691
|
|
1694
1694
|
awscli/examples/ec2/advertise-byoip-cidr.rst,sha256=guFQVkTgtB0yCSU5EohTSxveSn2zYFobkIYvk2Vw0AE,397
|
|
1695
|
-
awscli/examples/ec2/allocate-address.rst,sha256=
|
|
1695
|
+
awscli/examples/ec2/allocate-address.rst,sha256=ERnxi_mg4t194nwjIV-AtusFxS0uN8jb69Lv0aIkQpA,3230
|
|
1696
1696
|
awscli/examples/ec2/allocate-hosts.rst,sha256=b6KMbykdMO7PPCKotirMr7r8ScLVGTDZ0IVI0SPJBaQ,1816
|
|
1697
1697
|
awscli/examples/ec2/allocate-ipam-pool-cidr.rst,sha256=K8K_huAqsv4q6EvJr0ZHd1kMdvFJ57tBWEXJ63BcphY,896
|
|
1698
1698
|
awscli/examples/ec2/apply-security-groups-to-client-vpn-target-network.rst,sha256=eVJEjIayPxFAC9hlrZQgtNMMegUjQD2SUK1dr1ll6Fc,781
|
|
@@ -2418,7 +2418,9 @@ awscli/examples/ecs/update-service-primary-task-set.rst,sha256=M9ZKYEjcl2lkDom45
|
|
|
2418
2418
|
awscli/examples/ecs/update-service.rst,sha256=wZGD01-JPsQLBWDjZVDNf3YsEL2U-dPaF4xGnat1iL0,703
|
|
2419
2419
|
awscli/examples/ecs/update-task-protection.rst,sha256=Ltv-BQHFUkVQKMflK2wBPZhC-fri4djDptnCejUvEVw,1740
|
|
2420
2420
|
awscli/examples/ecs/update-task-set.rst,sha256=NimKKM9kaehqwRdzETkLMQASvzcJCMHAhO-g88BmcQ0,1553
|
|
2421
|
+
awscli/examples/ecs/wait/services-inactive.rst,sha256=X6nH3H6E-wmR63IsQJs0AtlPtOJ4ehxcvTv9Dh1j8AY,284
|
|
2421
2422
|
awscli/examples/ecs/wait/services-stable.rst,sha256=FTnYJoGvRQZnlALT4xbwPd4oFmZ3RKWtjpk67YtNdDQ,341
|
|
2423
|
+
awscli/examples/ecs/wait/task-stopped.rst,sha256=oyCiOkTVIuioc2V_lDMuv2LO-d-6ZtLiOJ7M0maxumE,860
|
|
2422
2424
|
awscli/examples/ecs/wait/tasks-running.rst,sha256=MuQoAR8mD40WWKNksGwLaGS2jGoEyfe5VSEeo2i3NTQ,342
|
|
2423
2425
|
awscli/examples/efs/create-file-system.rst,sha256=9Vtnp748EfXEBkW_KiVyVdLbS_VLVfiBEvf_9vgrbuI,1472
|
|
2424
2426
|
awscli/examples/efs/create-mount-target.rst,sha256=Azc9bazS28TtznFQYiOc9bbiS9dwnIksa0wxlGasuaM,931
|
|
@@ -3749,7 +3751,7 @@ awscli/examples/ivs/update-playback-restriction-policy.rst,sha256=2oT1pzQ2yZm_ug
|
|
|
3749
3751
|
awscli/examples/ivs-realtime/create-encoder-configuration.rst,sha256=OGhUNFLELIum90i2w2aRFzlz0M1wox50viRghjtwx6E,945
|
|
3750
3752
|
awscli/examples/ivs-realtime/create-ingest-configuration.rst,sha256=hgUkA35ndX5qTwaU50BCB2d-vjfuyFG9Nf_bWGBXYBE,970
|
|
3751
3753
|
awscli/examples/ivs-realtime/create-participant-token.rst,sha256=DoMHgPlpIeHOfAYLFAUsjIdk6Ch4N_hj7iv9zKT34YE,733
|
|
3752
|
-
awscli/examples/ivs-realtime/create-stage.rst,sha256=
|
|
3754
|
+
awscli/examples/ivs-realtime/create-stage.rst,sha256=XfMavaMCRMVQ6iX5puGQVaDPuMiYmcDCVuP7JHQ1kUA,5641
|
|
3753
3755
|
awscli/examples/ivs-realtime/create-storage-configuration.rst,sha256=jROuGgWS5gahvEAjNH-vQRuatFujx0YkVF9p9eeCPao,818
|
|
3754
3756
|
awscli/examples/ivs-realtime/delete-encoder-configuration.rst,sha256=iBW9aWaEkxNXr-nuTmua-W7o3JywCqTV77k2ApNE3JU,598
|
|
3755
3757
|
awscli/examples/ivs-realtime/delete-ingest-configuration.rst,sha256=GY2DBx7T6iAk4REol9XgWoNQzoxUp7S86n9qfb_9N5Q,1248
|
|
@@ -3757,13 +3759,13 @@ awscli/examples/ivs-realtime/delete-public-key.rst,sha256=3rmm_W9j1vaS95xs1lFW6_
|
|
|
3757
3759
|
awscli/examples/ivs-realtime/delete-stage.rst,sha256=Mym4Q_LCIUM14vpnCjjJqDHfLS6eS0AjsU8cL0Txi9I,445
|
|
3758
3760
|
awscli/examples/ivs-realtime/delete-storage-configuration.rst,sha256=5Fp1fDaYwB1aEYbYg0BkTBCFYuZ-af7sYGqh57e8wkg,598
|
|
3759
3761
|
awscli/examples/ivs-realtime/disconnect-participant.rst,sha256=0FzAdsDfk6maR-5Kzgex8PWDE_lmoTg_HKxXJR5_uw4,574
|
|
3760
|
-
awscli/examples/ivs-realtime/get-composition.rst,sha256=
|
|
3762
|
+
awscli/examples/ivs-realtime/get-composition.rst,sha256=AViTh8ctGBuk8YFTSYxr8ciWRwBuBU67NzrSwgwWWvE,9211
|
|
3761
3763
|
awscli/examples/ivs-realtime/get-encoder-configuration.rst,sha256=UlFBxJkjqm79EmRe2IYTwTEbaDis2Rsfbfi44whBaew,961
|
|
3762
3764
|
awscli/examples/ivs-realtime/get-ingest-configuration.rst,sha256=dpMcDCO171N5ik_o9ZS6-5lmjWs6bSNq6ebGxNnZiAI,1036
|
|
3763
3765
|
awscli/examples/ivs-realtime/get-participant.rst,sha256=xuvghN9G-Psqh0_8Vl1UQoE8oXU0Vv_c5z9DPrIe2bw,1305
|
|
3764
3766
|
awscli/examples/ivs-realtime/get-public-key.rst,sha256=6IKGMrNEBP3GiMBt81bEj5QKNnPnpuumEFZxutpUVXo,1063
|
|
3765
3767
|
awscli/examples/ivs-realtime/get-stage-session.rst,sha256=pJ0kkZ0rnij75BePAoEX8DfZtx5Ny0fel1MfbZNnGwE,767
|
|
3766
|
-
awscli/examples/ivs-realtime/get-stage.rst,sha256=
|
|
3768
|
+
awscli/examples/ivs-realtime/get-stage.rst,sha256=BbYXytTIshUDDOMOqeSY1bKoHeCSoKOkVpgi7yKngD0,1601
|
|
3767
3769
|
awscli/examples/ivs-realtime/get-storage-configuration.rst,sha256=uHrub2sy3HtO0qtKUAhTVNOy9dQU18qMck8L4U9iBCg,861
|
|
3768
3770
|
awscli/examples/ivs-realtime/import-public-key.rst,sha256=5eiDsux84FHS-PdTtfKZpliebRfpwBXyum830u8g0KA,1059
|
|
3769
3771
|
awscli/examples/ivs-realtime/list-compositions.rst,sha256=GyMNnF8wH8FX9GaRs-F3BwerQ2ehrfIcd2QiDYJ1wpA,2095
|
|
@@ -3775,10 +3777,10 @@ awscli/examples/ivs-realtime/list-public-keys.rst,sha256=wx77x9UdpYuOc6PlsnxNyHL
|
|
|
3775
3777
|
awscli/examples/ivs-realtime/list-stage-sessions.rst,sha256=aITzBqMZFT7kMUJM3ew75_6LICXhcs4357xTorSC-MM,752
|
|
3776
3778
|
awscli/examples/ivs-realtime/list-stages.rst,sha256=dY0QFXeBOvTsiuarz1L6fvGcSendbfnRkIdYnkhzTLE,1188
|
|
3777
3779
|
awscli/examples/ivs-realtime/list-storage-configurations.rst,sha256=T7shNCEt2zzU1DsiGRAh82ygKe2TcJSFjgcSkKGBGBE,1140
|
|
3778
|
-
awscli/examples/ivs-realtime/start-composition.rst,sha256=
|
|
3780
|
+
awscli/examples/ivs-realtime/start-composition.rst,sha256=P-OzDuNesuUR-T_9w3yA9duLTtKJtxa8Bq7jsKdVGvk,10536
|
|
3779
3781
|
awscli/examples/ivs-realtime/stop-composition.rst,sha256=XuZfFAGhX0wwlkAPvQO6V0_iX1syG58M5U0WgH5LXi4,516
|
|
3780
3782
|
awscli/examples/ivs-realtime/update-ingest-configuration.rst,sha256=f047K4leqfd3zA5M8BXaxSXJRySOBA173FHAWb1Qvzc,1128
|
|
3781
|
-
awscli/examples/ivs-realtime/update-stage.rst,sha256=
|
|
3783
|
+
awscli/examples/ivs-realtime/update-stage.rst,sha256=hc70uXsOVWtZD-I4yQ4HQIm7WswdncSKFcg_pqjuqKs,2003
|
|
3782
3784
|
awscli/examples/ivschat/create-chat-token.rst,sha256=uFDRjsm8qOcqLMKUXHV8gmv41niAfkUgL7Cv7KLoeKI,995
|
|
3783
3785
|
awscli/examples/ivschat/create-logging-configuration.rst,sha256=HElBp4vPHm3-3Bs7c12GLM_6GxheyZKbEkv2ZrzcpNY,1153
|
|
3784
3786
|
awscli/examples/ivschat/create-room.rst,sha256=7Zg0NTGzXli-cXgNRkKcx1c9C-nVVxi3KpajeQK_irw,1042
|
|
@@ -3945,7 +3947,7 @@ awscli/examples/lambda/get-layer-version-policy.rst,sha256=IL2eJ1-qj5QIIKVPkV_xw
|
|
|
3945
3947
|
awscli/examples/lambda/get-layer-version.rst,sha256=gxaVFH-hOzMVtIfiye1w8XHLD8jRz8VBsbCdB_A0oz0,1173
|
|
3946
3948
|
awscli/examples/lambda/get-policy.rst,sha256=Z8cq6TbfbL6sb7CaNmN1ubLEAt70xaGd02Iy8cA2HLM,1016
|
|
3947
3949
|
awscli/examples/lambda/get-provisioned-concurrency-config.rst,sha256=fUr6UCx9RjDTIbhGghwKUecBtBPYvisTSCHqnYb00y4,635
|
|
3948
|
-
awscli/examples/lambda/invoke.rst,sha256=
|
|
3950
|
+
awscli/examples/lambda/invoke.rst,sha256=Z4Hf2qXkkXC9ACJPnuk2O_HxKX5486CbUbh3mvO7shc,1783
|
|
3949
3951
|
awscli/examples/lambda/list-aliases.rst,sha256=knX-vlTsH_G5ZiuNGX6NMH1L9-oRLoWJj_ZlcjkdWsU,1135
|
|
3950
3952
|
awscli/examples/lambda/list-event-source-mappings.rst,sha256=_ueTL0K6TbdiIeGiwKCW9qwV_sgumBSkqMDgr_Z0U2Q,967
|
|
3951
3953
|
awscli/examples/lambda/list-function-event-invoke-configs.rst,sha256=ideAB8rqmD-KJ_Hne6dcGk_nEevVBKpHNWl_WcvFzp0,924
|
|
@@ -6055,13 +6057,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
|
6055
6057
|
awscli/topics/s3-config.rst,sha256=kyLbdEEePnHW0hoMmQDkt4o6PbqAdpO5ph_51GgQyXg,11664
|
|
6056
6058
|
awscli/topics/s3-faq.rst,sha256=Kw1w4NFHOTXq9Mz5S3HHw3mBkyeEzH4ruB0PD6-EO1c,2938
|
|
6057
6059
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
6058
|
-
awscli-1.38.
|
|
6059
|
-
awscli-1.38.
|
|
6060
|
-
awscli-1.38.
|
|
6061
|
-
awscli-1.38.
|
|
6062
|
-
awscli-1.38.
|
|
6063
|
-
awscli-1.38.
|
|
6064
|
-
awscli-1.38.
|
|
6065
|
-
awscli-1.38.
|
|
6066
|
-
awscli-1.38.
|
|
6067
|
-
awscli-1.38.
|
|
6060
|
+
awscli-1.38.4.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
6061
|
+
awscli-1.38.4.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
6062
|
+
awscli-1.38.4.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
6063
|
+
awscli-1.38.4.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
6064
|
+
awscli-1.38.4.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
6065
|
+
awscli-1.38.4.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
6066
|
+
awscli-1.38.4.dist-info/METADATA,sha256=XSHlIdtCKgNQg4sqBQHFq86ZRy50wmYfTOZWnyGbjpQ,11329
|
|
6067
|
+
awscli-1.38.4.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
6068
|
+
awscli-1.38.4.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
6069
|
+
awscli-1.38.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|