awscli 1.36.28__py3-none-any.whl → 1.36.30__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/iam/disable-organizations-root-credentials-management.rst +16 -0
- awscli/examples/iam/disable-organizations-root-sessions.rst +16 -0
- awscli/examples/iam/enable-organizations-root-credentials-management.rst +16 -0
- awscli/examples/iam/enable-organizations-root-sessions.rst +16 -0
- awscli/examples/iam/list-organizations-features.rst +17 -0
- awscli/examples/ivs/batch-get-channel.rst +14 -2
- awscli/examples/ivs/create-channel.rst +72 -7
- awscli/examples/ivs/get-channel.rst +14 -7
- awscli/examples/ivs/get-stream-session.rst +48 -13
- awscli/examples/ivs/update-channel.rst +121 -13
- awscli/examples/sts/assume-root.rst +22 -0
- {awscli-1.36.28.dist-info → awscli-1.36.30.dist-info}/METADATA +2 -2
- {awscli-1.36.28.dist-info → awscli-1.36.30.dist-info}/RECORD +22 -16
- {awscli-1.36.28.data → awscli-1.36.30.data}/scripts/aws +0 -0
- {awscli-1.36.28.data → awscli-1.36.30.data}/scripts/aws.cmd +0 -0
- {awscli-1.36.28.data → awscli-1.36.30.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.36.28.data → awscli-1.36.30.data}/scripts/aws_completer +0 -0
- {awscli-1.36.28.data → awscli-1.36.30.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.36.28.dist-info → awscli-1.36.30.dist-info}/LICENSE.txt +0 -0
- {awscli-1.36.28.dist-info → awscli-1.36.30.dist-info}/WHEEL +0 -0
- {awscli-1.36.28.dist-info → awscli-1.36.30.dist-info}/top_level.txt +0 -0
awscli/__init__.py
CHANGED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
**To disable the RootCredentialsManagement feature in your organization**
|
|
2
|
+
|
|
3
|
+
The following ``disable-organizations-root-credentials-management`` command disables the management of privileged root user credentials across member accounts in your organization. ::
|
|
4
|
+
|
|
5
|
+
aws iam disable-organizations-root-credentials-management
|
|
6
|
+
|
|
7
|
+
Output::
|
|
8
|
+
|
|
9
|
+
{
|
|
10
|
+
"EnabledFeatures": [
|
|
11
|
+
"RootSessions"
|
|
12
|
+
]
|
|
13
|
+
"OrganizationId": "o-aa111bb222"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*.g
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
**To disable the RootSessions feature in your organization**
|
|
2
|
+
|
|
3
|
+
The following ``disable-organizations-root-sessions`` command disables root user sessions for privileged tasks across member accounts in your organization. ::
|
|
4
|
+
|
|
5
|
+
aws iam disable-organizations-root-sessions
|
|
6
|
+
|
|
7
|
+
Output::
|
|
8
|
+
|
|
9
|
+
{
|
|
10
|
+
"EnabledFeatures": [
|
|
11
|
+
"RootCredentialsManagement"
|
|
12
|
+
]
|
|
13
|
+
"OrganizationId": "o-aa111bb222"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
**To enable the RootCredentialsManagement feature in your organization**
|
|
2
|
+
|
|
3
|
+
The following ``enable-organizations-root-credentials-management`` command enables the management of privileged root user credentials across member accounts in your organization. ::
|
|
4
|
+
|
|
5
|
+
aws iam enable-organizations-root-credentials-management
|
|
6
|
+
|
|
7
|
+
Output::
|
|
8
|
+
|
|
9
|
+
{
|
|
10
|
+
"EnabledFeatures": [
|
|
11
|
+
"RootCredentialsManagement"
|
|
12
|
+
]
|
|
13
|
+
"OrganizationId": "o-aa111bb222"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*.
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
**To enable the RootSessions feature in your organization**
|
|
2
|
+
|
|
3
|
+
The following ``enable-organizations-root-sessions`` command allows the management account or delegated administrator to perform privileged tasks on member accounts in your organization. ::
|
|
4
|
+
|
|
5
|
+
aws iam enable-organizations-root-sessions
|
|
6
|
+
|
|
7
|
+
Output::
|
|
8
|
+
|
|
9
|
+
{
|
|
10
|
+
"EnabledFeatures": [
|
|
11
|
+
"RootSessions"
|
|
12
|
+
]
|
|
13
|
+
"OrganizationId": "o-aa111bb222"
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
For more information, see `Centralize root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-enable-root-access.html>`__ in the *AWS IAM User Guide*.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
**To list the centralized root access features enabled for your organization**
|
|
2
|
+
|
|
3
|
+
The following ``list-organizations-features`` command lists the centralized root access features enabled for your organization. ::
|
|
4
|
+
|
|
5
|
+
aws iam list-organizations-features
|
|
6
|
+
|
|
7
|
+
Output::
|
|
8
|
+
|
|
9
|
+
{
|
|
10
|
+
"EnabledFeatures": [
|
|
11
|
+
"RootCredentialsManagement",
|
|
12
|
+
"RootSessions"
|
|
13
|
+
]
|
|
14
|
+
"OrganizationId": "o-aa111bb222"
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
For more information, see `Centrally manage root access for member accounts <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-user.html#id_root-user-access-management>`__ in the *AWS IAM User Guide*.
|
|
@@ -13,9 +13,15 @@ Output::
|
|
|
13
13
|
{
|
|
14
14
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
15
15
|
"authorized": false,
|
|
16
|
+
"containerFormat": "TS",
|
|
16
17
|
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
17
18
|
"insecureIngest": false,
|
|
18
19
|
"latencyMode": "LOW",
|
|
20
|
+
"multitrackInputConfiguration": {
|
|
21
|
+
"enabled": false,
|
|
22
|
+
"maximumResolution": "FULL_HD",
|
|
23
|
+
"policy": "ALLOW"
|
|
24
|
+
},
|
|
19
25
|
"name": "channel-1",
|
|
20
26
|
"playbackUrl": "https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel-1.abcdEFGH.m3u8",
|
|
21
27
|
"preset": "",
|
|
@@ -31,9 +37,15 @@ Output::
|
|
|
31
37
|
{
|
|
32
38
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/efghEFGHijkl",
|
|
33
39
|
"authorized": false,
|
|
40
|
+
"containerFormat": "FRAGMENTED_MP4",
|
|
34
41
|
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
35
|
-
"insecureIngest":
|
|
42
|
+
"insecureIngest": false,
|
|
36
43
|
"latencyMode": "LOW",
|
|
44
|
+
"multitrackInputConfiguration": {
|
|
45
|
+
"enabled": true,
|
|
46
|
+
"maximumResolution": "FULL_HD",
|
|
47
|
+
"policy": "ALLOW"
|
|
48
|
+
},
|
|
37
49
|
"name": "channel-2",
|
|
38
50
|
"playbackUrl": "https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel-2.abcdEFGH.m3u8",
|
|
39
51
|
"preset": "",
|
|
@@ -49,4 +61,4 @@ Output::
|
|
|
49
61
|
]
|
|
50
62
|
}
|
|
51
63
|
|
|
52
|
-
For more information, see `Create a Channel <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/getting-started-create-channel.html>`__ in the *IVS Low-Latency User Guide*.
|
|
64
|
+
For more information, see `Create a Channel <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/getting-started-create-channel.html>`__ in the *IVS Low-Latency User Guide*.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
The following ``create-channel`` example creates a new channel and an associated stream key to start streaming. ::
|
|
4
4
|
|
|
5
5
|
aws ivs create-channel \
|
|
6
|
-
--name
|
|
6
|
+
--name 'test-channel' \
|
|
7
7
|
--no-insecure-ingest
|
|
8
8
|
|
|
9
9
|
Output::
|
|
@@ -12,8 +12,14 @@ Output::
|
|
|
12
12
|
"channel": {
|
|
13
13
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
14
14
|
"authorized": false,
|
|
15
|
+
"containerFormat": "TS",
|
|
15
16
|
"name": "test-channel",
|
|
16
17
|
"latencyMode": "LOW",
|
|
18
|
+
"multitrackInputConfiguration": {
|
|
19
|
+
"enabled": false,
|
|
20
|
+
"maximumResolution": "FULL_HD",
|
|
21
|
+
"policy": "ALLOW"
|
|
22
|
+
},
|
|
17
23
|
"playbackRestrictionPolicyArn": "",
|
|
18
24
|
"recordingConfigurationArn": "",
|
|
19
25
|
"srt": {
|
|
@@ -39,20 +45,26 @@ For more information, see `Create a Channel <https://docs.aws.amazon.com/ivs/lat
|
|
|
39
45
|
|
|
40
46
|
**Example 2: To create a channel with recording enabled, using the RecordingConfiguration resource specified by its ARN**
|
|
41
47
|
|
|
42
|
-
The following ``create-channel`` example creates a new channel and an associated stream key to start streaming, and sets up recording for the channel
|
|
48
|
+
The following ``create-channel`` example creates a new channel and an associated stream key to start streaming, and sets up recording for the channel::
|
|
43
49
|
|
|
44
50
|
aws ivs create-channel \
|
|
45
51
|
--name test-channel-with-recording \
|
|
46
52
|
--insecure-ingest \
|
|
47
|
-
--recording-configuration-arn
|
|
53
|
+
--recording-configuration-arn 'arn:aws:ivs:us-west-2:123456789012:recording-configuration/ABCD12cdEFgh'
|
|
48
54
|
|
|
49
55
|
Output::
|
|
50
56
|
|
|
51
57
|
{
|
|
52
58
|
"channel": {
|
|
53
59
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
60
|
+
"containerFormat": "TS",
|
|
54
61
|
"name": "test-channel-with-recording",
|
|
55
62
|
"latencyMode": "LOW",
|
|
63
|
+
"multitrackInputConfiguration": {
|
|
64
|
+
"enabled": false,
|
|
65
|
+
"maximumResolution": "FULL_HD",
|
|
66
|
+
"policy": "ALLOW"
|
|
67
|
+
},
|
|
56
68
|
"type": "STANDARD",
|
|
57
69
|
"playbackRestrictionPolicyArn": "",
|
|
58
70
|
"recordingConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:recording-configuration/ABCD12cdEFgh",
|
|
@@ -80,20 +92,26 @@ For more information, see `Record to Amazon S3 <https://docs.aws.amazon.com/ivs/
|
|
|
80
92
|
|
|
81
93
|
**Example 3: To create a channel with a playback restriction policy specified by its ARN**
|
|
82
94
|
|
|
83
|
-
The following ``create-channel`` example creates a new channel and an associated stream key to start streaming, and sets up a playback restriction policy for the channel
|
|
95
|
+
The following ``create-channel`` example creates a new channel and an associated stream key to start streaming, and sets up a playback restriction policy for the channel::
|
|
84
96
|
|
|
85
97
|
aws ivs create-channel \
|
|
86
|
-
--name test-channel-with-playback-restriction-policy
|
|
98
|
+
--name test-channel-with-playback-restriction-policy\
|
|
87
99
|
--insecure-ingest \
|
|
88
|
-
--playback-restriction-policy-arn
|
|
100
|
+
--playback-restriction-policy-arn 'arn:aws:ivs:us-west-2:123456789012:playback-restriction-policy/ABcdef34ghIJ'
|
|
89
101
|
|
|
90
102
|
Output::
|
|
91
103
|
|
|
92
104
|
{
|
|
93
105
|
"channel": {
|
|
94
106
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
107
|
+
"containerFormat": "TS",
|
|
95
108
|
"name": "test-channel-with-playback-restriction-policy",
|
|
96
109
|
"latencyMode": "LOW",
|
|
110
|
+
"multitrackInputConfiguration": {
|
|
111
|
+
"enabled": false,
|
|
112
|
+
"maximumResolution": "FULL_HD",
|
|
113
|
+
"policy": "ALLOW"
|
|
114
|
+
},
|
|
97
115
|
"type": "STANDARD",
|
|
98
116
|
"playbackRestrictionPolicyArn": "arn:aws:ivs:us-west-2:123456789012:playback-restriction-policy/ABcdef34ghIJ",
|
|
99
117
|
"recordingConfigurationArn": "",
|
|
@@ -117,4 +135,51 @@ Output::
|
|
|
117
135
|
}
|
|
118
136
|
}
|
|
119
137
|
|
|
120
|
-
For more information, see `Undesired Content and Viewers <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/undesired-content.html>`__ in the *IVS Low-Latency User Guide*.
|
|
138
|
+
For more information, see `Undesired Content and Viewers <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/undesired-content.html>`__ in the *IVS Low-Latency User Guide*.
|
|
139
|
+
|
|
140
|
+
**Example 4: To create a channel with multitrack enabled**
|
|
141
|
+
|
|
142
|
+
The following ``create-channel`` example creates a new channel and an associated stream key to start streaming, and enables multitrack. ::
|
|
143
|
+
|
|
144
|
+
aws ivs create-channel \
|
|
145
|
+
--name 'test-channel' \
|
|
146
|
+
--no-insecure-ingest \
|
|
147
|
+
--container-format 'FRAGMENTED_MP4' \
|
|
148
|
+
--multitrack-input-configuration '{"enabled": true,"maximumResolution": "FULL_HD","policy": "ALLOW"}'
|
|
149
|
+
|
|
150
|
+
Output::
|
|
151
|
+
|
|
152
|
+
{
|
|
153
|
+
"channel": {
|
|
154
|
+
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
155
|
+
"authorized": false,
|
|
156
|
+
"containerFormat": "FRAGMENTED_MP4",
|
|
157
|
+
"name": "test-channel",
|
|
158
|
+
"latencyMode": "LOW",
|
|
159
|
+
"multitrackInputConfiguration": {
|
|
160
|
+
"enabled": true,
|
|
161
|
+
"maximumResolution": "FULL_HD",
|
|
162
|
+
"policy": "ALLOW"
|
|
163
|
+
},
|
|
164
|
+
"playbackRestrictionPolicyArn": "",
|
|
165
|
+
"recordingConfigurationArn": "",
|
|
166
|
+
"srt": {
|
|
167
|
+
"endpoint": "a1b2c3d4e5f6.srt.live-video.net",
|
|
168
|
+
"passphrase": "AB1C2defGHijkLMNo3PqQRstUvwxyzaBCDEfghh4ijklMN5opqrStuVWxyzAbCDEfghIJ"
|
|
169
|
+
},
|
|
170
|
+
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
171
|
+
"insecureIngest": false,
|
|
172
|
+
"playbackUrl": "https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel.abcdEFGH.m3u8",
|
|
173
|
+
"preset": "",
|
|
174
|
+
"tags": {},
|
|
175
|
+
"type": "STANDARD"
|
|
176
|
+
},
|
|
177
|
+
"streamKey": {
|
|
178
|
+
"arn": "arn:aws:ivs:us-west-2:123456789012:stream-key/g1H2I3j4k5L6",
|
|
179
|
+
"value": "sk_us-west-2_abcdABCDefgh_567890abcdef",
|
|
180
|
+
"channelArn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
181
|
+
"tags": {}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
For more information, see `Create a Channel <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multitrack-video.html>`__ in the *IVS Low-Latency User Guide*.
|
|
@@ -3,27 +3,34 @@
|
|
|
3
3
|
The following ``get-channel`` example gets the channel configuration for a specified channel ARN (Amazon Resource Name). ::
|
|
4
4
|
|
|
5
5
|
aws ivs get-channel \
|
|
6
|
-
--arn arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh
|
|
6
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh'
|
|
7
7
|
|
|
8
8
|
Output::
|
|
9
9
|
|
|
10
10
|
{
|
|
11
11
|
"channel": {
|
|
12
12
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
13
|
-
"
|
|
13
|
+
"authorized": false,
|
|
14
|
+
"containerFormat": "TS",
|
|
15
|
+
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
16
|
+
"insecureIngest": false,
|
|
14
17
|
"latencyMode": "LOW",
|
|
15
|
-
"
|
|
18
|
+
"multitrackInputConfiguration": {
|
|
19
|
+
"enabled": false,
|
|
20
|
+
"maximumResolution": "FULL_HD",
|
|
21
|
+
"policy": "ALLOW"
|
|
22
|
+
},
|
|
23
|
+
"name": "channel-1",
|
|
16
24
|
"playbackRestrictionPolicyArn": "",
|
|
25
|
+
"playbackUrl": "https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel.abcdEFGH.m3u8",
|
|
17
26
|
"preset": "",
|
|
18
|
-
"recordingConfigurationArn": "
|
|
27
|
+
"recordingConfigurationArn": "",
|
|
19
28
|
"srt": {
|
|
20
29
|
"endpoint": "a1b2c3d4e5f6.srt.live-video.net",
|
|
21
30
|
"passphrase": "AB1C2defGHijkLMNo3PqQRstUvwxyzaBCDEfghh4ijklMN5opqrStuVWxyzAbCDEfghIJ"
|
|
22
31
|
},
|
|
23
|
-
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
24
|
-
"insecureIngest": false,
|
|
25
|
-
"playbackUrl": "https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel.abcdEFGH.m3u8",
|
|
26
32
|
"tags": {}
|
|
33
|
+
"type": "STANDARD",
|
|
27
34
|
}
|
|
28
35
|
}
|
|
29
36
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
**To get metadata for a specified stream**
|
|
2
2
|
|
|
3
|
-
The following ``get-stream-session`` example gets the metadata configuration for the specified channel ARN (Amazon Resource Name) and the specified stream; if streamId is not provided, the most recent stream for the channel is selected. ::
|
|
3
|
+
The following ``get-stream-session`` example gets the metadata configuration for the specified channel ARN (Amazon Resource Name) and the specified stream; if ``streamId`` is not provided, the most recent stream for the channel is selected. ::
|
|
4
4
|
|
|
5
5
|
aws ivs get-stream-session \
|
|
6
|
-
--channel-arn arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh \
|
|
7
|
-
--stream-id
|
|
6
|
+
--channel-arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
7
|
+
--stream-id 'mystream'
|
|
8
8
|
|
|
9
9
|
Output::
|
|
10
10
|
|
|
@@ -18,10 +18,6 @@ Output::
|
|
|
18
18
|
"latencyMode": "LOW",
|
|
19
19
|
"type": "STANDARD",
|
|
20
20
|
"recordingConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:recording-configuration/ABcdef34ghIJ",
|
|
21
|
-
"srt": {
|
|
22
|
-
"endpoint": "a1b2c3d4e5f6.srt.live-video.net",
|
|
23
|
-
"passphrase": "AB1C2defGHijkLMNo3PqQRstUvwxyzaBCDEfghh4ijklMN5opqrStuVWxyzAbCDEfghIJ"
|
|
24
|
-
},
|
|
25
21
|
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
26
22
|
"playbackUrl": "url-string",
|
|
27
23
|
"authorized": false,
|
|
@@ -29,23 +25,51 @@ Output::
|
|
|
29
25
|
"preset": ""
|
|
30
26
|
},
|
|
31
27
|
"ingestConfiguration": {
|
|
28
|
+
"audio": {
|
|
29
|
+
"channels": 2,
|
|
30
|
+
"codec": "mp4a.40.2",
|
|
31
|
+
"sampleRate": 8000,
|
|
32
|
+
"targetBitrate": 46875,
|
|
33
|
+
"track": "Track0"
|
|
34
|
+
},
|
|
32
35
|
"video": {
|
|
33
36
|
"avcProfile": "Baseline",
|
|
34
37
|
"avcLevel": "4.2",
|
|
35
38
|
"codec": "avc1.42C02A",
|
|
36
39
|
"encoder": "Lavf58.45.100",
|
|
40
|
+
"level": "4.2",
|
|
41
|
+
"profile": "Baseline",
|
|
37
42
|
"targetBitrate": 8789062,
|
|
38
43
|
"targetFramerate": 60,
|
|
44
|
+
"track": "Track0",
|
|
39
45
|
"videoHeight": 1080,
|
|
40
46
|
"videoWidth": 1920
|
|
41
|
-
},
|
|
42
|
-
"audio": {
|
|
43
|
-
"codec": "mp4a.40.2",
|
|
44
|
-
"targetBitrate": 46875,
|
|
45
|
-
"sampleRate": 8000,
|
|
46
|
-
"channels": 2
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
+
"ingestConfigurations": {
|
|
50
|
+
"audioConfigurations": [
|
|
51
|
+
{
|
|
52
|
+
"channels": 2,
|
|
53
|
+
"codec": "mp4a.40.2",
|
|
54
|
+
"sampleRate": 8000,
|
|
55
|
+
"targetBitrate": 46875,
|
|
56
|
+
"track": "Track0"
|
|
57
|
+
}
|
|
58
|
+
],
|
|
59
|
+
"videoConfigurations": [
|
|
60
|
+
{
|
|
61
|
+
"codec": "avc1.42C02A",
|
|
62
|
+
"encoder": "Lavf58.45.100",
|
|
63
|
+
"level": "4.2",
|
|
64
|
+
"profile": "Baseline",
|
|
65
|
+
"targetBitrate": 8789062,
|
|
66
|
+
"targetFramerate": 60,
|
|
67
|
+
"track": "Track0",
|
|
68
|
+
"videoHeight": 1080,
|
|
69
|
+
"videoWidth": 1920
|
|
70
|
+
}
|
|
71
|
+
]
|
|
72
|
+
},
|
|
49
73
|
"recordingConfiguration": {
|
|
50
74
|
"arn": "arn:aws:ivs:us-west-2:123456789012:recording-configuration/ABcdef34ghIJ",
|
|
51
75
|
"name": "test-recording-config",
|
|
@@ -76,6 +100,17 @@ Output::
|
|
|
76
100
|
}
|
|
77
101
|
},
|
|
78
102
|
"truncatedEvents": [
|
|
103
|
+
{
|
|
104
|
+
"code": "StreamTakeoverInvalidPriority",
|
|
105
|
+
"name": "Stream Takeover Failure",
|
|
106
|
+
"type": "IVS Stream State Change",
|
|
107
|
+
"eventTime": "2023-06-26T19:09:48+00:00"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"name": "Stream Takeover",
|
|
111
|
+
"type": "IVS Stream State Change",
|
|
112
|
+
"eventTime": "2023-06-26T19:09:47+00:00"
|
|
113
|
+
},
|
|
79
114
|
{
|
|
80
115
|
"name": "Recording Start",
|
|
81
116
|
"type": "IVS Recording State Change",
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
The following ``update-channel`` example updates the channel configuration for a specified channel ARN to change the channel name. This does not affect an ongoing stream of this channel; you must stop and restart the stream for the changes to take effect. ::
|
|
4
4
|
|
|
5
5
|
aws ivs update-channel \
|
|
6
|
-
--arn arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh \
|
|
7
|
-
--name
|
|
6
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
7
|
+
--name 'channel-1' \
|
|
8
8
|
--insecure-ingest
|
|
9
9
|
|
|
10
10
|
Output::
|
|
@@ -14,6 +14,12 @@ Output::
|
|
|
14
14
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
15
15
|
"name": "channel-1",
|
|
16
16
|
"latencyMode": "LOW",
|
|
17
|
+
"containerFormat": "TS",
|
|
18
|
+
"multitrackInputConfiguration": {
|
|
19
|
+
"enabled": false,
|
|
20
|
+
"maximumResolution": "FULL_HD",
|
|
21
|
+
"policy": "ALLOW"
|
|
22
|
+
},
|
|
17
23
|
"type": "STANDARD",
|
|
18
24
|
"playbackRestrictionPolicyArn": "",
|
|
19
25
|
"recordingConfigurationArn": "",
|
|
@@ -36,9 +42,9 @@ For more information, see `Create a Channel <https://docs.aws.amazon.com/ivs/lat
|
|
|
36
42
|
The following ``update-channel`` example updates the channel configuration for a specified channel ARN to enable recording. This does not affect an ongoing stream of this channel; you must stop and restart the stream for the changes to take effect. ::
|
|
37
43
|
|
|
38
44
|
aws ivs update-channel \
|
|
39
|
-
--arn
|
|
45
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
40
46
|
--no-insecure-ingest \
|
|
41
|
-
--recording-configuration-arn
|
|
47
|
+
--recording-configuration-arn 'arn:aws:ivs:us-west-2:123456789012:recording-configuration/ABCD12cdEFgh'
|
|
42
48
|
|
|
43
49
|
Output::
|
|
44
50
|
|
|
@@ -47,6 +53,12 @@ Output::
|
|
|
47
53
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
48
54
|
"name": "test-channel-with-recording",
|
|
49
55
|
"latencyMode": "LOW",
|
|
56
|
+
"containerFormat": "TS",
|
|
57
|
+
"multitrackInputConfiguration": {
|
|
58
|
+
"enabled": false,
|
|
59
|
+
"maximumResolution": "FULL_HD",
|
|
60
|
+
"policy": "ALLOW"
|
|
61
|
+
},
|
|
50
62
|
"type": "STANDARD",
|
|
51
63
|
"playbackRestrictionPolicyArn": "",
|
|
52
64
|
"recordingConfigurationArn": "arn:aws:ivs:us-west-2:123456789012:recording-configuration/ABCD12cdEFgh",
|
|
@@ -70,8 +82,8 @@ For more information, see `Record to Amazon S3 <https://docs.aws.amazon.com/ivs/
|
|
|
70
82
|
The following ``update-channel`` example updates the channel configuration for a specified channel ARN to disable recording. This does not affect an ongoing stream of this channel; you must stop and restart the stream for the changes to take effect. ::
|
|
71
83
|
|
|
72
84
|
aws ivs update-channel \
|
|
73
|
-
--arn
|
|
74
|
-
--recording-configuration-arn
|
|
85
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
86
|
+
--recording-configuration-arn ''
|
|
75
87
|
|
|
76
88
|
Output::
|
|
77
89
|
|
|
@@ -80,6 +92,12 @@ Output::
|
|
|
80
92
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
81
93
|
"name": "test-channel-with-recording",
|
|
82
94
|
"latencyMode": "LOW",
|
|
95
|
+
"containerFormat": "TS",
|
|
96
|
+
"multitrackInputConfiguration": {
|
|
97
|
+
"enabled": false,
|
|
98
|
+
"maximumResolution": "FULL_HD",
|
|
99
|
+
"policy": "ALLOW"
|
|
100
|
+
},
|
|
83
101
|
"type": "STANDARD",
|
|
84
102
|
"playbackRestrictionPolicyArn": "",
|
|
85
103
|
"recordingConfigurationArn": "",
|
|
@@ -98,16 +116,14 @@ Output::
|
|
|
98
116
|
|
|
99
117
|
For more information, see `Record to Amazon S3 <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/record-to-s3.html>`__ in the *IVS Low-Latency User Guide*.
|
|
100
118
|
|
|
101
|
-
|
|
102
|
-
|
|
103
119
|
**Example 4: To update a channel's configuration to enable playback restriction**
|
|
104
120
|
|
|
105
121
|
The following ``update-channel`` example updates the channel configuration for a specified channel ARN to apply a playback restriction policy. This does not affect an ongoing stream of this channel; you must stop and restart the stream for the changes to take effect. ::
|
|
106
122
|
|
|
107
123
|
aws ivs update-channel \
|
|
108
|
-
--arn
|
|
124
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
109
125
|
--no-insecure-ingest \
|
|
110
|
-
--playback-restriction-policy-arn
|
|
126
|
+
--playback-restriction-policy-arn 'arn:aws:ivs:us-west-2:123456789012:playback-restriction-policy/ABcdef34ghIJ'
|
|
111
127
|
|
|
112
128
|
Output::
|
|
113
129
|
|
|
@@ -116,6 +132,12 @@ Output::
|
|
|
116
132
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
117
133
|
"name": "test-channel-with-playback-restriction-policy",
|
|
118
134
|
"latencyMode": "LOW",
|
|
135
|
+
"containerFormat": "TS",
|
|
136
|
+
"multitrackInputConfiguration": {
|
|
137
|
+
"enabled": false,
|
|
138
|
+
"maximumResolution": "FULL_HD",
|
|
139
|
+
"policy": "ALLOW"
|
|
140
|
+
},
|
|
119
141
|
"type": "STANDARD",
|
|
120
142
|
"playbackRestrictionPolicyArn": "arn:aws:ivs:us-west-2:123456789012:playback-restriction-policy/ABcdef34ghIJ",
|
|
121
143
|
"recordingConfigurationArn": "",
|
|
@@ -139,8 +161,8 @@ For more information, see `Undesired Content and Viewers <https://docs.aws.amazo
|
|
|
139
161
|
The following ``update-channel`` example updates the channel configuration for a specified channel ARN to disable playback restriction. This does not affect an ongoing stream of this channel; you must stop and restart the stream for the changes to take effect. ::
|
|
140
162
|
|
|
141
163
|
aws ivs update-channel \
|
|
142
|
-
--arn
|
|
143
|
-
--playback-restriction-policy-arn
|
|
164
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
165
|
+
--playback-restriction-policy-arn ''
|
|
144
166
|
|
|
145
167
|
Output::
|
|
146
168
|
|
|
@@ -149,6 +171,12 @@ Output::
|
|
|
149
171
|
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
150
172
|
"name": "test-channel-with-playback-restriction-policy",
|
|
151
173
|
"latencyMode": "LOW",
|
|
174
|
+
"containerFormat": "TS",
|
|
175
|
+
"multitrackInputConfiguration": {
|
|
176
|
+
"enabled": false,
|
|
177
|
+
"maximumResolution": "FULL_HD",
|
|
178
|
+
"policy": "ALLOW"
|
|
179
|
+
},
|
|
152
180
|
"type": "STANDARD",
|
|
153
181
|
"playbackRestrictionPolicyArn": "",
|
|
154
182
|
"recordingConfigurationArn": "",
|
|
@@ -165,4 +193,84 @@ Output::
|
|
|
165
193
|
}
|
|
166
194
|
}
|
|
167
195
|
|
|
168
|
-
For more information, see `Undesired Content and Viewers <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/undesired-content.html>`__ in the *IVS Low-Latency User Guide*.
|
|
196
|
+
For more information, see `Undesired Content and Viewers <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/undesired-content.html>`__ in the *IVS Low-Latency User Guide*.
|
|
197
|
+
|
|
198
|
+
**Example 6: To update a channel's configuration to enable multitrack**
|
|
199
|
+
|
|
200
|
+
The following ``update-channel`` example updates the channel configuration for a specified channel ARN to enable multitrack. This does not affect an ongoing stream of this channel; you must stop and restart the stream for the changes to take effect. ::
|
|
201
|
+
|
|
202
|
+
aws ivs update-channel \
|
|
203
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
204
|
+
--container-format 'FRAGMENTED_MP4' \
|
|
205
|
+
--multitrack-input-configuration '{"enabled": true,"maximumResolution": "FULL_HD","policy": "ALLOW"}'
|
|
206
|
+
|
|
207
|
+
Output::
|
|
208
|
+
|
|
209
|
+
{
|
|
210
|
+
"channel": {
|
|
211
|
+
"arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
212
|
+
"containerFormat": "FRAGMENTED_MP4",
|
|
213
|
+
"name": "test-channel-with-multitrack",
|
|
214
|
+
"latencyMode": "LOW",
|
|
215
|
+
"multitrackInputConfiguration": {
|
|
216
|
+
"enabled": true,
|
|
217
|
+
"maximumResolution": "FULL_HD",
|
|
218
|
+
"policy": "ALLOW"
|
|
219
|
+
},
|
|
220
|
+
"type": "STANDARD",
|
|
221
|
+
"playbackRestrictionPolicyArn": "",
|
|
222
|
+
"recordingConfigurationArn": "",
|
|
223
|
+
"srt": {
|
|
224
|
+
"endpoint": "a1b2c3d4e5f6.srt.live-video.net",
|
|
225
|
+
"passphrase": "AB1C2defGHijkLMNo3PqQRstUvwxyzaCBDEfghh4ijklMN5opqrStuVWxyzAbCDEfghIJ"
|
|
226
|
+
},
|
|
227
|
+
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
228
|
+
"insecureIngest": false,
|
|
229
|
+
"playbackUrl": "https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel.abcdEFGH.m3u8",
|
|
230
|
+
"preset": "",
|
|
231
|
+
"authorized": false,
|
|
232
|
+
"tags": {}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
For more information, see `Undesired Content and Viewers <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multitrack-video.html>`__ in the *IVS Low-Latency User Guide*.
|
|
237
|
+
|
|
238
|
+
**Example 7: To update a channel's configuration to disable playback restriction**
|
|
239
|
+
|
|
240
|
+
The following ``update-channel`` example updates the channel configuration for a specified channel ARN to disable multitrack. This does not affect an ongoing stream of this channel; you must stop and restart the stream for the changes to take effect. ::
|
|
241
|
+
|
|
242
|
+
aws ivs update-channel \
|
|
243
|
+
--arn 'arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh' \
|
|
244
|
+
--container-format 'TS' \
|
|
245
|
+
--multitrack-input-configuration '{"enabled": false}'
|
|
246
|
+
|
|
247
|
+
Output::
|
|
248
|
+
|
|
249
|
+
{
|
|
250
|
+
"channel": {
|
|
251
|
+
""arn": "arn:aws:ivs:us-west-2:123456789012:channel/abcdABCDefgh",
|
|
252
|
+
"containerFormat": "TS",
|
|
253
|
+
"name": "test-channel-with-multitrack",
|
|
254
|
+
"latencyMode": "LOW",
|
|
255
|
+
"multitrackInputConfiguration": {
|
|
256
|
+
"enabled": false,
|
|
257
|
+
"maximumResolution": "FULL_HD",
|
|
258
|
+
"policy": "ALLOW"
|
|
259
|
+
},
|
|
260
|
+
"type": "STANDARD",
|
|
261
|
+
"playbackRestrictionPolicyArn": "",
|
|
262
|
+
"recordingConfigurationArn": "",
|
|
263
|
+
"srt": {
|
|
264
|
+
"endpoint": "a1b2c3d4e5f6.srt.live-video.net",
|
|
265
|
+
"passphrase": "AB1C2defGHijkLMNo3PqQRstUvwxyzaCBDEfghh4ijklMN5opqrStuVWxyzAbCDEfghIJ"
|
|
266
|
+
},
|
|
267
|
+
"ingestEndpoint": "a1b2c3d4e5f6.global-contribute.live-video.net",
|
|
268
|
+
"insecureIngest": false,
|
|
269
|
+
"playbackUrl": "https://a1b2c3d4e5f6.us-west-2.playback.live-video.net/api/video/v1/us-west-2.123456789012.channel.abcdEFGH.m3u8",
|
|
270
|
+
"preset": "",
|
|
271
|
+
"authorized": false,
|
|
272
|
+
"tags": {}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
For more information, see `Undesired Content and Viewers <https://docs.aws.amazon.com/ivs/latest/LowLatencyUserGuide/multitrack-video.html>`__ in the *IVS Low-Latency User Guide*.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
**To launch a privileged session**
|
|
2
|
+
|
|
3
|
+
The following ``assume-root`` command retrieves a set of short-term credentials you can use to remove a misconfigured Amazon S3 bucket policy for a member account in your organization. ::
|
|
4
|
+
|
|
5
|
+
aws sts assume-root \
|
|
6
|
+
--duration-seconds 900 \
|
|
7
|
+
--target-principal 111122223333 \
|
|
8
|
+
--task-policy-arn arn=arn:aws:iam::aws:policy/root-task/S3UnlockBucketPolicy
|
|
9
|
+
|
|
10
|
+
Output::
|
|
11
|
+
|
|
12
|
+
{
|
|
13
|
+
"Credentials": {
|
|
14
|
+
"SecretAccessKey": "9drTJvcXLB89EXAMPLELB8923FB892xMFI",
|
|
15
|
+
"SessionToken": "AQoXdzELDDY//////////wEaoAK1wvxJY12r2IrDFT2IvAzTCn3zHoZ7YNtpiQLF0MqZye/qwjzP2iEXAMPLEbw/m3hsj8VBTkPORGvr9jM5sgP+w9IZWZnU+LWhmg+a5fDi2oTGUYcdg9uexQ4mtCHIHfi4citgqZTgco40Yqr4lIlo4V2b2Dyauk0eYFNebHtYlFVgAUj+7Indz3LU0aTWk1WKIjHmmMCIoTkyYp/k7kUG7moeEYKSitwQIi6Gjn+nyzM+PtoA3685ixzv0R7i5rjQi0YE0lf1oeie3bDiNHncmzosRM6SFiPzSvp6h/32xQuZsjcypmwsPSDtTPYcs0+YN/8BRi2/IcrxSpnWEXAMPLEXSDFTAQAM6Dl9zR0tXoybnlrZIwMLlMi1Kcgo5OytwU=",
|
|
16
|
+
"Expiration": "2024-11-15T00:05:07Z",
|
|
17
|
+
"AccessKeyId": "ASIAJEXAMPLEXEG2JICEA"
|
|
18
|
+
},
|
|
19
|
+
"SourceIdentity": "Alice",
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
The output of the command contains an access key, secret key, and session token that you can use to to perform privileged actions in the member account. For more information, see `Perform a privileged task on an AWS Organizations member account <https://docs.aws.amazon.com/IAM/latest/UserGuide/id_root-user-privileged-task.html>`__ in the *AWS IAM User Guide*.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.36.
|
|
3
|
+
Version: 1.36.30
|
|
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.35.
|
|
26
|
+
Requires-Dist: botocore (==1.35.89)
|
|
27
27
|
Requires-Dist: docutils (<0.17,>=0.10)
|
|
28
28
|
Requires-Dist: s3transfer (<0.11.0,>=0.10.0)
|
|
29
29
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
awscli/__init__.py,sha256=
|
|
1
|
+
awscli/__init__.py,sha256=4EO69ic2Gu1D7YaFlaM69zfYkXm7oA--G5BYBS40Ot0,1534
|
|
2
2
|
awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
|
|
3
3
|
awscli/alias.py,sha256=Us9pvP8Zplbr1W4N3rE5gxicWLqlRG3l_9VPskxafgs,11313
|
|
4
4
|
awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
|
|
@@ -3052,7 +3052,11 @@ awscli/examples/iam/delete-virtual-mfa-device.rst,sha256=nfDfb6vrEpCbCWFZafyMHTI
|
|
|
3052
3052
|
awscli/examples/iam/detach-group-policy.rst,sha256=aoBbceAKiZ2mv06ZyWLa9k8IKvWh3JSEQXvelE8JyL0,514
|
|
3053
3053
|
awscli/examples/iam/detach-role-policy.rst,sha256=V8l3nd1HVWks-N0oebSFAKFS-VhB29d45B0J7wosm4g,539
|
|
3054
3054
|
awscli/examples/iam/detach-user-policy.rst,sha256=5BgVx_4zeIAYU06t0bGNkEbWXgKjJNcDBgiu8PCPy1E,507
|
|
3055
|
+
awscli/examples/iam/disable-organizations-root-credentials-management.rst,sha256=ZrJQgpeQHjBfUc7mtLWNEJlMBqWzBUBUboaFsZBPYG8,653
|
|
3056
|
+
awscli/examples/iam/disable-organizations-root-sessions.rst,sha256=PYvKzgOeQ2hArky-YTm7eABoB2Uk-LzDA1YTD5Wu6SY,615
|
|
3055
3057
|
awscli/examples/iam/enable-mfa-device.rst,sha256=g2DrBa5OcrBToxwwC_i3WWrkHZ08gprsWfTBDXRtOa4,898
|
|
3058
|
+
awscli/examples/iam/enable-organizations-root-credentials-management.rst,sha256=rqFPCPRWepC_g8kl7I5zzmuLYhYcKjvEkiqnX2JAPQQ,661
|
|
3059
|
+
awscli/examples/iam/enable-organizations-root-sessions.rst,sha256=TPJBpn4IX6oYpFO3047X0J-fex7XqfJ1-WSZkKPkR48,629
|
|
3056
3060
|
awscli/examples/iam/generate-credential-report.rst,sha256=n8CbalvkRS8Dy9pnVO8-gb842kMaOMnmE4CfA_LCDTE,490
|
|
3057
3061
|
awscli/examples/iam/generate-organizations-access-report.rst,sha256=djstl4lOJB0P8nIIX18TtTLK1lL7HEGMJZRawf_vOAM,2106
|
|
3058
3062
|
awscli/examples/iam/generate-service-last-accessed-details.rst,sha256=amNeD6sQHXberyR7ABus6DaqhtfcHZFYYd9-ai1cwu0,1440
|
|
@@ -3098,6 +3102,7 @@ awscli/examples/iam/list-mfa-device-tags.rst,sha256=5AjmMfWZX_8qFncYIG5Dix4LDY-n
|
|
|
3098
3102
|
awscli/examples/iam/list-mfa-devices.rst,sha256=a5KW1o4NEQaoMFlZbLDBd3Sq_EwT_clNrssXIzh-2qo,1271
|
|
3099
3103
|
awscli/examples/iam/list-open-id-connect-provider-tags.rst,sha256=ypYIIMnwqT3DbIiZsHcqiE2KQMI4GQL8LCVqUodWfck,776
|
|
3100
3104
|
awscli/examples/iam/list-open-id-connect-providers.rst,sha256=-nPF3Jxr_c_eIQOxXIybton4SDl5axenleVDEc596e0,629
|
|
3105
|
+
awscli/examples/iam/list-organizations-features.rst,sha256=Y4mho5vY_OOMEksdAayirKvSOpCqF68pxXxhlaXYp2Q,647
|
|
3101
3106
|
awscli/examples/iam/list-policies-granting-service-access.rst,sha256=P9UAyDJGtsCpxMSdylmQ8F0B3WlnSgYInXSqIyfGF8I,1096
|
|
3102
3107
|
awscli/examples/iam/list-policies.rst,sha256=8MfbvdWOxWir5ejGZ2qGOoaTK9Ia2Lpaw98nOXrsLfY,2107
|
|
3103
3108
|
awscli/examples/iam/list-policy-tags.rst,sha256=A_H4MXQZYdZmXp2U4QlQkCjRiDHqzFSSaLRS5PPI0Z4,666
|
|
@@ -3738,10 +3743,10 @@ awscli/examples/iotwireless/update-destination.rst,sha256=OdX4De_a_hdJP1-9zxKIUR
|
|
|
3738
3743
|
awscli/examples/iotwireless/update-partner-account.rst,sha256=kYTM__-qGy4vXDzaIaICr1SWAmUpxvLpPF11-QoJsos,639
|
|
3739
3744
|
awscli/examples/iotwireless/update-wireless-device.rst,sha256=kePLhcNfg3jQGGkCOPJBSUX6YsKKq-9564ULxAfJcbc,637
|
|
3740
3745
|
awscli/examples/iotwireless/update-wireless-gateway.rst,sha256=2dnAdQfnZb7sSTKcgXjW9iNoRcblPddgn-ql-5w6vGA,539
|
|
3741
|
-
awscli/examples/ivs/batch-get-channel.rst,sha256=
|
|
3746
|
+
awscli/examples/ivs/batch-get-channel.rst,sha256=Cg-Pq30aCH-QWaM55kG501E_S10jFgFOQel4W0XRKOo,3087
|
|
3742
3747
|
awscli/examples/ivs/batch-get-stream-key.rst,sha256=v29EtIsRuQx1n1IOMq1O91Li_5clBIb_g8uwqYQYeaM,1192
|
|
3743
3748
|
awscli/examples/ivs/batch-start-viewer-session-revocation.rst,sha256=hDPtxAMp2ztMqfF-O2oV1IlYr2nYUvUqIoA9aUYxQjs,1497
|
|
3744
|
-
awscli/examples/ivs/create-channel.rst,sha256=
|
|
3749
|
+
awscli/examples/ivs/create-channel.rst,sha256=SS0pyXU0B4HlIf6vtR0uY6CV9mOmaEBBZ6p_qBVwvBI,8331
|
|
3745
3750
|
awscli/examples/ivs/create-playback-restriction-policy.rst,sha256=u2y5UorS0bgE3Op8vZ3LVwXNfStdmf5q3B2eqmkMwm4,1278
|
|
3746
3751
|
awscli/examples/ivs/create-recording-configuration.rst,sha256=Nxqd_cvFbyWSEk5MN1Kge5Gos6NlICm0ktp8VFzPYI8,1873
|
|
3747
3752
|
awscli/examples/ivs/create-stream-key.rst,sha256=x0kddgpeIXNEF--zwAzGpl7SYsO6pw5nrLfABz5TDAk,758
|
|
@@ -3750,12 +3755,12 @@ awscli/examples/ivs/delete-playback-key-pair.rst,sha256=EJllc5sLS415u3trMVvDQggF
|
|
|
3750
3755
|
awscli/examples/ivs/delete-playback-restriction-policy.rst,sha256=axJPp2hJg2C8Ja4mlXT7YnfHOHkR84A_PIQUSlvH-2k,570
|
|
3751
3756
|
awscli/examples/ivs/delete-recording-configuration.rst,sha256=Euj8SUBEqjRNJaByEDzgQPOwsV7pMWgSUV6TvdFLfdk,550
|
|
3752
3757
|
awscli/examples/ivs/delete-stream-key.rst,sha256=trs0tm8tfysNKmIGkjkvnMoaay2yxr7x_Vu0VVtYXQ4,511
|
|
3753
|
-
awscli/examples/ivs/get-channel.rst,sha256=
|
|
3758
|
+
awscli/examples/ivs/get-channel.rst,sha256=fUZXYHkhp9lXbbGC9YjFUZHohYMTYSBwUiBpqlgznJg,1570
|
|
3754
3759
|
awscli/examples/ivs/get-playback-key-pair.rst,sha256=HMyYT5yni5QmXaKZosmeM88uMAyew_QJlwO6DZKc6qA,737
|
|
3755
3760
|
awscli/examples/ivs/get-playback-restriction-policy.rst,sha256=dG3yX4InXqKJsfsH_ETh31H4I7tFFl6ri1F-gj55U5w,1191
|
|
3756
3761
|
awscli/examples/ivs/get-recording-configuration.rst,sha256=jlTwjIr5AYV3iGo2tdcm2AW1oI4T3YG5y4Xjjn5nnPc,1553
|
|
3757
3762
|
awscli/examples/ivs/get-stream-key.rst,sha256=EyF5F6e2jiJ32topRdRNYbdcDLiQ1UM-E9YpMAaPsQI,761
|
|
3758
|
-
awscli/examples/ivs/get-stream-session.rst,sha256=
|
|
3763
|
+
awscli/examples/ivs/get-stream-session.rst,sha256=dwvxQCeu-aaoIrCbKYLx1i_dpKg0kXpEUevxsNzGYvw,5399
|
|
3759
3764
|
awscli/examples/ivs/get-stream.rst,sha256=xQUWc67ZDM_LDRYC1Lz-FyRY4ZVYlB6uWJj8LMOfyI0,921
|
|
3760
3765
|
awscli/examples/ivs/import-playback-key-pair.rst,sha256=9wJy4zJsc6Ut7OwJWScuhus3G9DQ09iypPSpUzF-vZs,866
|
|
3761
3766
|
awscli/examples/ivs/list-channels.rst,sha256=r2bNQS2DnqttN14_c20czCUZ_bCxmj8iJ2q8Z2UC4Co,3850
|
|
@@ -3771,7 +3776,7 @@ awscli/examples/ivs/start-viewer-session-revocation.rst,sha256=g_abp9wEEFyoY6YGT
|
|
|
3771
3776
|
awscli/examples/ivs/stop-stream.rst,sha256=Gu0OWeTtfrfmT6emKtpbhIHct5JxN2VJyxkCvIEkIhY,445
|
|
3772
3777
|
awscli/examples/ivs/tag-resource.rst,sha256=xy-QzuZMZyrBuDD4UayptEMyv11LQERtV6rryLGJmjo,567
|
|
3773
3778
|
awscli/examples/ivs/untag-resource.rst,sha256=P_tRaLWCPf2ZwN3L2rasgvGIGKrrLdNW8-jrwhwfNX8,554
|
|
3774
|
-
awscli/examples/ivs/update-channel.rst,sha256=
|
|
3779
|
+
awscli/examples/ivs/update-channel.rst,sha256=_95yNokqpzHG7ElJYEeqDFcl4ukeUqC6UeNefNOR6kQ,13136
|
|
3775
3780
|
awscli/examples/ivs/update-playback-restriction-policy.rst,sha256=2oT1pzQ2yZm_ug9otYvBXY6hSaSg8Z8EmC5hBielfb0,1362
|
|
3776
3781
|
awscli/examples/ivs-realtime/create-encoder-configuration.rst,sha256=OGhUNFLELIum90i2w2aRFzlz0M1wox50viRghjtwx6E,945
|
|
3777
3782
|
awscli/examples/ivs-realtime/create-ingest-configuration.rst,sha256=hgUkA35ndX5qTwaU50BCB2d-vjfuyFG9Nf_bWGBXYBE,970
|
|
@@ -5716,6 +5721,7 @@ awscli/examples/storagegateway/refresh-cache.rst,sha256=8wgMg2cbQwIjpiZOL2f7zwRD
|
|
|
5716
5721
|
awscli/examples/sts/assume-role-with-saml.rst,sha256=sO8xMP47YdDEVLYDyqGcQYcSEiNJ1luJ-Z4VENFx91g,2456
|
|
5717
5722
|
awscli/examples/sts/assume-role-with-web-identity.rst,sha256=2ypD82glxiQn84bwix2fQ5PVqxUHEKPQ0lPjXYx_oc0,2358
|
|
5718
5723
|
awscli/examples/sts/assume-role.rst,sha256=vSCT5YlCtjaULoJtw-cwhxgA0JOydb4tWIJUGVfM1uE,1620
|
|
5724
|
+
awscli/examples/sts/assume-root.rst,sha256=Wjmf7cXWPt5sYbXpKnyfl9SGnSN2NmHYkNT3B_EP1KI,1506
|
|
5719
5725
|
awscli/examples/sts/decode-authorization-message.rst,sha256=HTnYRJLE2OojgFJUe-3hSNlpNWAFwnIEx2Iug3cowcY,3590
|
|
5720
5726
|
awscli/examples/sts/get-caller-identity.rst,sha256=lY39c8PWhICM6EUDvaH6D2Cb1dYRCo5yKNpYIuts67E,391
|
|
5721
5727
|
awscli/examples/sts/get-federation-token.rst,sha256=XCvzBgz9T6tbvG9yCfI90nALPczxzWI65GmgVkx6uqM,2400
|
|
@@ -6015,13 +6021,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
|
6015
6021
|
awscli/topics/s3-config.rst,sha256=FwwCczTylrSLwELuDQ-VA8sCI7ruwV9PEJJrqxjUeG0,11502
|
|
6016
6022
|
awscli/topics/s3-faq.rst,sha256=sS5jKHF_7X5eiGwpUg7aTqQt2zCRN-m_xXOcE0Bme0Q,1899
|
|
6017
6023
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
6018
|
-
awscli-1.36.
|
|
6019
|
-
awscli-1.36.
|
|
6020
|
-
awscli-1.36.
|
|
6021
|
-
awscli-1.36.
|
|
6022
|
-
awscli-1.36.
|
|
6023
|
-
awscli-1.36.
|
|
6024
|
-
awscli-1.36.
|
|
6025
|
-
awscli-1.36.
|
|
6026
|
-
awscli-1.36.
|
|
6027
|
-
awscli-1.36.
|
|
6024
|
+
awscli-1.36.30.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
6025
|
+
awscli-1.36.30.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
6026
|
+
awscli-1.36.30.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
6027
|
+
awscli-1.36.30.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
6028
|
+
awscli-1.36.30.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
6029
|
+
awscli-1.36.30.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
6030
|
+
awscli-1.36.30.dist-info/METADATA,sha256=iF_3XutADCn0KMqe2MQuOhh5AemUaFGe2JdUF-xUJGc,11331
|
|
6031
|
+
awscli-1.36.30.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
6032
|
+
awscli-1.36.30.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
6033
|
+
awscli-1.36.30.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
|