awscli 1.38.7__py3-none-any.whl → 1.38.9__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/cloudformation/_package_description.rst +1 -1
- awscli/examples/codecommit/get-merge-commit.rst +1 -2
- awscli/examples/cognito-idp/get-identity-provider-by-identifier.rst +35 -0
- awscli/examples/cognito-idp/get-log-delivery-configuration.rst +32 -0
- awscli/examples/cognito-idp/get-signing-certificate.rst +14 -13
- awscli/examples/cognito-idp/get-ui-customization.rst +22 -19
- awscli/examples/cognito-idp/get-user-attribute-verification-code.rst +19 -0
- awscli/examples/cognito-idp/get-user-auth-factors.rst +20 -0
- awscli/examples/cognito-idp/get-user-pool-mfa-config.rst +33 -0
- awscli/examples/cognito-idp/get-user.rst +56 -0
- awscli/examples/cognito-idp/global-sign-out.rst +10 -0
- awscli/examples/cognito-idp/initiate-auth.rst +27 -0
- awscli/examples/cognito-idp/list-devices.rst +23 -25
- awscli/examples/cognito-idp/list-groups.rst +32 -0
- awscli/examples/cognito-idp/list-identity-providers.rst +29 -0
- awscli/examples/cognito-idp/list-resource-servers.rst +43 -0
- awscli/examples/cognito-idp/list-tags-for-resource.rst +17 -0
- awscli/examples/cognito-idp/list-user-import-jobs.rst +61 -57
- awscli/examples/cognito-idp/list-user-pool-clients.rst +32 -0
- awscli/examples/cognito-idp/list-user-pools.rst +48 -22
- awscli/examples/cognito-idp/list-users.rst +98 -35
- awscli/examples/cognito-idp/list-web-authn-credentials.rst +22 -0
- awscli/examples/cognito-idp/respond-to-auth-challenge.rst +78 -27
- awscli/examples/cognito-idp/revoke-token.rst +11 -0
- awscli/examples/cognito-idp/set-log-delivery-configuration.rst +33 -0
- awscli/examples/cognito-idp/set-risk-configuration.rst +136 -23
- awscli/examples/cognito-idp/set-ui-customization.rst +45 -18
- awscli/examples/cognito-idp/set-user-mfa-preference.rst +6 -5
- awscli/examples/cognito-idp/set-user-pool-mfa-config.rst +38 -0
- awscli/examples/cognito-idp/start-user-import-job.rst +27 -29
- awscli/examples/cognito-idp/start-web-authn-registration.rst +47 -0
- awscli/examples/cognito-idp/stop-user-import-job.rst +29 -31
- awscli/examples/ecs/create-cluster.rst +46 -42
- awscli/examples/ecs/put-account-setting.rst +8 -5
- awscli/examples/ecs/update-cluster-settings.rst +6 -6
- awscli/examples/ecs/update-service.rst +235 -7
- awscli/examples/emr/add-steps.rst +8 -8
- awscli/examples/emr/create-cluster-examples.rst +5 -5
- awscli/examples/rds/cancel-export-task.rst +22 -22
- awscli/examples/rds/describe-export-tasks.rst +40 -40
- awscli/examples/rds/restore-db-cluster-from-s3.rst +64 -64
- awscli/examples/rds/start-export-task.rst +26 -26
- awscli/examples/s3/_concepts.rst +2 -2
- awscli/examples/s3/cp.rst +30 -30
- awscli/examples/s3/ls.rst +7 -7
- awscli/examples/s3/mb.rst +6 -6
- awscli/examples/s3/mv.rst +21 -21
- awscli/examples/s3/rb.rst +8 -8
- awscli/examples/s3/rm.rst +12 -12
- awscli/examples/s3/sync.rst +27 -27
- awscli/examples/s3api/get-bucket-policy.rst +2 -2
- {awscli-1.38.7.dist-info → awscli-1.38.9.dist-info}/METADATA +2 -2
- {awscli-1.38.7.dist-info → awscli-1.38.9.dist-info}/RECORD +62 -44
- {awscli-1.38.7.data → awscli-1.38.9.data}/scripts/aws +0 -0
- {awscli-1.38.7.data → awscli-1.38.9.data}/scripts/aws.cmd +0 -0
- {awscli-1.38.7.data → awscli-1.38.9.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.38.7.data → awscli-1.38.9.data}/scripts/aws_completer +0 -0
- {awscli-1.38.7.data → awscli-1.38.9.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.38.7.dist-info → awscli-1.38.9.dist-info}/LICENSE.txt +0 -0
- {awscli-1.38.7.dist-info → awscli-1.38.9.dist-info}/WHEEL +0 -0
- {awscli-1.38.7.dist-info → awscli-1.38.9.dist-info}/top_level.txt +0 -0
awscli/examples/s3/rm.rst
CHANGED
|
@@ -2,54 +2,54 @@
|
|
|
2
2
|
|
|
3
3
|
The following ``rm`` command deletes a single s3 object::
|
|
4
4
|
|
|
5
|
-
aws s3 rm s3://
|
|
5
|
+
aws s3 rm s3://amzn-s3-demo-bucket/test2.txt
|
|
6
6
|
|
|
7
7
|
Output::
|
|
8
8
|
|
|
9
|
-
delete: s3://
|
|
9
|
+
delete: s3://amzn-s3-demo-bucket/test2.txt
|
|
10
10
|
|
|
11
11
|
**Example 2: Delete all contents in a bucket**
|
|
12
12
|
|
|
13
13
|
The following ``rm`` command recursively deletes all objects under a specified bucket and prefix when passed with the
|
|
14
|
-
parameter ``--recursive``. In this example, the bucket ``
|
|
14
|
+
parameter ``--recursive``. In this example, the bucket ``amzn-s3-demo-bucket`` contains the objects ``test1.txt`` and
|
|
15
15
|
``test2.txt``::
|
|
16
16
|
|
|
17
|
-
aws s3 rm s3://
|
|
17
|
+
aws s3 rm s3://amzn-s3-demo-bucket \
|
|
18
18
|
--recursive
|
|
19
19
|
|
|
20
20
|
Output::
|
|
21
21
|
|
|
22
|
-
delete: s3://
|
|
23
|
-
delete: s3://
|
|
22
|
+
delete: s3://amzn-s3-demo-bucket/test1.txt
|
|
23
|
+
delete: s3://amzn-s3-demo-bucket/test2.txt
|
|
24
24
|
|
|
25
25
|
**Example 3: Delete all contents in a bucket, except ``.jpg`` files**
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
The following ``rm`` command recursively deletes all objects under a specified bucket and prefix when passed with the
|
|
29
29
|
parameter ``--recursive`` while excluding some objects by using an ``--exclude`` parameter. In this example, the bucket
|
|
30
|
-
``
|
|
30
|
+
``amzn-s3-demo-bucket`` has the objects ``test1.txt`` and ``test2.jpg``::
|
|
31
31
|
|
|
32
|
-
aws s3 rm s3://
|
|
32
|
+
aws s3 rm s3://amzn-s3-demo-bucket/ \
|
|
33
33
|
--recursive \
|
|
34
34
|
--exclude "*.jpg"
|
|
35
35
|
|
|
36
36
|
Output::
|
|
37
37
|
|
|
38
|
-
delete: s3://
|
|
38
|
+
delete: s3://amzn-s3-demo-bucket/test1.txt
|
|
39
39
|
|
|
40
40
|
**Example 4: Delete all contents in a bucket, except objects under the specified prefix**
|
|
41
41
|
|
|
42
42
|
The following ``rm`` command recursively deletes all objects under a specified bucket and prefix when passed with the
|
|
43
43
|
parameter ``--recursive`` while excluding all objects under a particular prefix by using an ``--exclude`` parameter. In
|
|
44
|
-
this example, the bucket ``
|
|
44
|
+
this example, the bucket ``amzn-s3-demo-bucket`` has the objects ``test1.txt`` and ``another/test.txt``::
|
|
45
45
|
|
|
46
|
-
aws s3 rm s3://
|
|
46
|
+
aws s3 rm s3://amzn-s3-demo-bucket/ \
|
|
47
47
|
--recursive \
|
|
48
48
|
--exclude "another/*"
|
|
49
49
|
|
|
50
50
|
Output::
|
|
51
51
|
|
|
52
|
-
delete: s3://
|
|
52
|
+
delete: s3://amzn-s3-demo-bucket/test1.txt
|
|
53
53
|
|
|
54
54
|
**Example 5: Delete an object from an S3 access point**
|
|
55
55
|
|
awscli/examples/s3/sync.rst
CHANGED
|
@@ -4,15 +4,15 @@ The following ``sync`` command syncs objects from a local directory to the speci
|
|
|
4
4
|
uploading the local files to S3. A local file will require uploading if the size of the local file is different than
|
|
5
5
|
the size of the S3 object, the last modified time of the local file is newer than the last modified time of the S3
|
|
6
6
|
object, or the local file does not exist under the specified bucket and prefix. In this example, the user syncs the
|
|
7
|
-
bucket ``
|
|
8
|
-
``test2.txt``. The bucket ``
|
|
7
|
+
bucket ``amzn-s3-demo-bucket`` to the local current directory. The local current directory contains the files ``test.txt`` and
|
|
8
|
+
``test2.txt``. The bucket ``amzn-s3-demo-bucket`` contains no objects. ::
|
|
9
9
|
|
|
10
|
-
aws s3 sync . s3://
|
|
10
|
+
aws s3 sync . s3://amzn-s3-demo-bucket
|
|
11
11
|
|
|
12
12
|
Output::
|
|
13
13
|
|
|
14
|
-
upload: test.txt to s3://
|
|
15
|
-
upload: test2.txt to s3://
|
|
14
|
+
upload: test.txt to s3://amzn-s3-demo-bucket/test.txt
|
|
15
|
+
upload: test2.txt to s3://amzn-s3-demo-bucket/test2.txt
|
|
16
16
|
|
|
17
17
|
**Example 2: Sync all S3 objects from the specified S3 bucket to another bucket**
|
|
18
18
|
|
|
@@ -21,15 +21,15 @@ prefix and bucket by copying S3 objects. An S3 object will require copying if th
|
|
|
21
21
|
the last modified time of the source is newer than the last modified time of the destination, or the S3 object does not
|
|
22
22
|
exist under the specified bucket and prefix destination.
|
|
23
23
|
|
|
24
|
-
In this example, the user syncs the bucket ``
|
|
24
|
+
In this example, the user syncs the bucket ``amzn-s3-demo-bucket`` to the bucket ``amzn-s3-demo-bucket2``. The bucket ``amzn-s3-demo-bucket`` contains the objects ``test.txt`` and ``test2.txt``. The bucket
|
|
25
25
|
``amzn-s3-demo-bucket2`` contains no objects::
|
|
26
26
|
|
|
27
|
-
aws s3 sync s3://
|
|
27
|
+
aws s3 sync s3://amzn-s3-demo-bucket s3://amzn-s3-demo-bucket2
|
|
28
28
|
|
|
29
29
|
Output::
|
|
30
30
|
|
|
31
|
-
copy: s3://
|
|
32
|
-
copy: s3://
|
|
31
|
+
copy: s3://amzn-s3-demo-bucket/test.txt to s3://amzn-s3-demo-bucket2/test.txt
|
|
32
|
+
copy: s3://amzn-s3-demo-bucket/test2.txt to s3://amzn-s3-demo-bucket2/test2.txt
|
|
33
33
|
|
|
34
34
|
**Example 3: Sync all S3 objects from the specified S3 bucket to the local directory**
|
|
35
35
|
|
|
@@ -38,62 +38,62 @@ downloading S3 objects. An S3 object will require downloading if the size of the
|
|
|
38
38
|
local file, the last modified time of the S3 object is newer than the last modified time of the local file, or the S3
|
|
39
39
|
object does not exist in the local directory. Take note that when objects are downloaded from S3, the last modified
|
|
40
40
|
time of the local file is changed to the last modified time of the S3 object. In this example, the user syncs the
|
|
41
|
-
bucket ``
|
|
41
|
+
bucket ``amzn-s3-demo-bucket`` to the current local directory. The bucket ``amzn-s3-demo-bucket`` contains the objects ``test.txt`` and
|
|
42
42
|
``test2.txt``. The current local directory has no files::
|
|
43
43
|
|
|
44
|
-
aws s3 sync s3://
|
|
44
|
+
aws s3 sync s3://amzn-s3-demo-bucket .
|
|
45
45
|
|
|
46
46
|
Output::
|
|
47
47
|
|
|
48
|
-
download: s3://
|
|
49
|
-
download: s3://
|
|
48
|
+
download: s3://amzn-s3-demo-bucket/test.txt to test.txt
|
|
49
|
+
download: s3://amzn-s3-demo-bucket/test2.txt to test2.txt
|
|
50
50
|
|
|
51
51
|
**Example 4: Sync all local objects to the specified bucket and delete all files that do not match**
|
|
52
52
|
|
|
53
53
|
The following ``sync`` command syncs objects under a specified prefix and bucket to files in a local directory by
|
|
54
54
|
uploading the local files to S3. Because of the ``--delete`` parameter, any files existing under the
|
|
55
55
|
specified prefix and bucket but not existing in the local directory will be deleted. In this example, the user syncs
|
|
56
|
-
the bucket ``
|
|
57
|
-
``test2.txt``. The bucket ``
|
|
56
|
+
the bucket ``amzn-s3-demo-bucket`` to the local current directory. The local current directory contains the files ``test.txt`` and
|
|
57
|
+
``test2.txt``. The bucket ``amzn-s3-demo-bucket`` contains the object ``test3.txt``::
|
|
58
58
|
|
|
59
|
-
aws s3 sync . s3://
|
|
59
|
+
aws s3 sync . s3://amzn-s3-demo-bucket \
|
|
60
60
|
--delete
|
|
61
61
|
|
|
62
62
|
Output::
|
|
63
63
|
|
|
64
|
-
upload: test.txt to s3://
|
|
65
|
-
upload: test2.txt to s3://
|
|
66
|
-
delete: s3://
|
|
64
|
+
upload: test.txt to s3://amzn-s3-demo-bucket/test.txt
|
|
65
|
+
upload: test2.txt to s3://amzn-s3-demo-bucket/test2.txt
|
|
66
|
+
delete: s3://amzn-s3-demo-bucket/test3.txt
|
|
67
67
|
|
|
68
68
|
**Example 5: Sync all local objects to the specified bucket except ``.jpg`` files**
|
|
69
69
|
|
|
70
70
|
The following ``sync`` command syncs objects under a specified prefix and bucket to files in a local directory by
|
|
71
71
|
uploading the local files to S3. Because of the ``--exclude`` parameter, all files matching the pattern
|
|
72
|
-
existing both in S3 and locally will be excluded from the sync. In this example, the user syncs the bucket ``
|
|
72
|
+
existing both in S3 and locally will be excluded from the sync. In this example, the user syncs the bucket ``amzn-s3-demo-bucket``
|
|
73
73
|
to the local current directory. The local current directory contains the files ``test.jpg`` and ``test2.txt``. The
|
|
74
|
-
bucket ``
|
|
74
|
+
bucket ``amzn-s3-demo-bucket`` contains the object ``test.jpg`` of a different size than the local ``test.jpg``::
|
|
75
75
|
|
|
76
|
-
aws s3 sync . s3://
|
|
76
|
+
aws s3 sync . s3://amzn-s3-demo-bucket \
|
|
77
77
|
--exclude "*.jpg"
|
|
78
78
|
|
|
79
79
|
Output::
|
|
80
80
|
|
|
81
|
-
upload: test2.txt to s3://
|
|
81
|
+
upload: test2.txt to s3://amzn-s3-demo-bucket/test2.txt
|
|
82
82
|
|
|
83
83
|
**Example 6: Sync all local objects to the specified bucket except specified directory files**
|
|
84
84
|
|
|
85
85
|
The following ``sync`` command syncs files under a local directory to objects under a specified prefix and bucket by
|
|
86
86
|
downloading S3 objects. This example uses the ``--exclude`` parameter flag to exclude a specified directory
|
|
87
87
|
and S3 prefix from the ``sync`` command. In this example, the user syncs the local current directory to the bucket
|
|
88
|
-
``
|
|
89
|
-
``
|
|
88
|
+
``amzn-s3-demo-bucket``. The local current directory contains the files ``test.txt`` and ``another/test2.txt``. The bucket
|
|
89
|
+
``amzn-s3-demo-bucket`` contains the objects ``another/test5.txt`` and ``test1.txt``::
|
|
90
90
|
|
|
91
|
-
aws s3 sync s3://
|
|
91
|
+
aws s3 sync s3://amzn-s3-demo-bucket/ . \
|
|
92
92
|
--exclude "*another/*"
|
|
93
93
|
|
|
94
94
|
Output::
|
|
95
95
|
|
|
96
|
-
download: s3://
|
|
96
|
+
download: s3://amzn-s3-demo-bucket/test1.txt to test1.txt
|
|
97
97
|
|
|
98
98
|
**Example 7: Sync all objects between buckets in different regions**
|
|
99
99
|
|
|
@@ -16,9 +16,9 @@ make modifications to the file, and then use ``put-bucket-policy`` to
|
|
|
16
16
|
apply the modified bucket policy. To download the bucket policy to a file,
|
|
17
17
|
you can run::
|
|
18
18
|
|
|
19
|
-
aws s3api get-bucket-policy --bucket
|
|
19
|
+
aws s3api get-bucket-policy --bucket amzn-s3-demo-bucket --query Policy --output text > policy.json
|
|
20
20
|
|
|
21
21
|
You can then modify the ``policy.json`` file as needed. Finally you can apply
|
|
22
22
|
this modified policy back to the S3 bucket by running::
|
|
23
23
|
|
|
24
|
-
aws s3api put-bucket-policy --bucket
|
|
24
|
+
aws s3api put-bucket-policy --bucket amzn-s3-demo-bucket --policy file://policy.json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.38.
|
|
3
|
+
Version: 1.38.9
|
|
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.9)
|
|
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=krA5LJv2GmiKOuZA9wLkbV9s9RCImu-McqOsE7e30-c,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
|
|
@@ -738,7 +738,7 @@ awscli/examples/cloudcontrol/list-resource-requests.rst,sha256=4RDKnlLXblL7ZnzYS
|
|
|
738
738
|
awscli/examples/cloudcontrol/list-resources.rst,sha256=hOfny2L4EshkHMILYO9RFNZaL9c1-M82MWV_P0kNVB8,829
|
|
739
739
|
awscli/examples/cloudcontrol/update-resource.rst,sha256=xK_BwVa_HJmLFRiiC3n-4B-ATKQIcBMHg3KSgmi-Mso,966
|
|
740
740
|
awscli/examples/cloudformation/_deploy_description.rst,sha256=tKFsU-kBgkYWmZhsyD8dqzdI15X_NGcVkp8h5V_odZ0,392
|
|
741
|
-
awscli/examples/cloudformation/_package_description.rst,sha256=
|
|
741
|
+
awscli/examples/cloudformation/_package_description.rst,sha256=x502ZaLUlN690Ec7wr3gWWTU9g1dYwrYHXigKDTl0ws,3558
|
|
742
742
|
awscli/examples/cloudformation/activate-type.rst,sha256=lK7ABVXq9IjRunlNx6VhWDIJp53XiZSadgfbzuu6w08,676
|
|
743
743
|
awscli/examples/cloudformation/batch-describe-type-configurations.rst,sha256=ZL59dBVV7gFBhVWcwWAt0lFnvyimZljfoN1BJKpoRCk,1304
|
|
744
744
|
awscli/examples/cloudformation/cancel-update-stack.rst,sha256=iXh30epVbKsksPDXoHLeoFQ5JMksU12FH48oflQ3BYU,217
|
|
@@ -1010,7 +1010,7 @@ awscli/examples/codecommit/get-commit.rst,sha256=IsMPr6t37XYBMfWz3-AraVtdVk1hxBv
|
|
|
1010
1010
|
awscli/examples/codecommit/get-differences.rst,sha256=SoXGSdH_XQyBg_M7-peNkYkgHmG9T6EJSdieI2xp7Yk,1302
|
|
1011
1011
|
awscli/examples/codecommit/get-file.rst,sha256=Nom3He4JRZtX3GAb4QmO9SaJCxDBnsZfcvQDkDTaylQ,789
|
|
1012
1012
|
awscli/examples/codecommit/get-folder.rst,sha256=54LzwDMnCdqdhVZT1V03-EidxDsgUTNEldIV1PCiNZU,1997
|
|
1013
|
-
awscli/examples/codecommit/get-merge-commit.rst,sha256=
|
|
1013
|
+
awscli/examples/codecommit/get-merge-commit.rst,sha256=mUmZGMuhmqQRWBWeICNcSCCZd1kLPQQQgdO4mXd9WYs,865
|
|
1014
1014
|
awscli/examples/codecommit/get-merge-conflicts.rst,sha256=IynnDZDlDIoaPveCgVWgfhScxb00tkelsjxidJwkwxg,1809
|
|
1015
1015
|
awscli/examples/codecommit/get-merge-options.rst,sha256=MCrI8uUodp09YGTp2Ado5Lw1gTh330ZxptYnoXBrOVg,996
|
|
1016
1016
|
awscli/examples/codecommit/get-pull-request-approval-states.rst,sha256=gekGPeMqQNrjuNlkTKUCkQ0ffiOF10fIhea5N3qRtvc,702
|
|
@@ -1184,22 +1184,40 @@ awscli/examples/cognito-idp/forgot-password.rst,sha256=OJZlGHqma2qGojj6SmTygaraB
|
|
|
1184
1184
|
awscli/examples/cognito-idp/get-csv-header.rst,sha256=HG8kpX8nToXOl5eH10uaB_dqiakg5-764Gz5LkW3vhA,953
|
|
1185
1185
|
awscli/examples/cognito-idp/get-device.rst,sha256=hsxBZc--YayQOsph08YUkHUNBSt2Nd5P2CWp6pnuEFQ,1867
|
|
1186
1186
|
awscli/examples/cognito-idp/get-group.rst,sha256=tCXasYDzyvLR9RL3Rb8DZg0aTe0m_1glen5UjTlNH4w,834
|
|
1187
|
-
awscli/examples/cognito-idp/get-
|
|
1188
|
-
awscli/examples/cognito-idp/get-
|
|
1189
|
-
awscli/examples/cognito-idp/
|
|
1190
|
-
awscli/examples/cognito-idp/
|
|
1191
|
-
awscli/examples/cognito-idp/
|
|
1187
|
+
awscli/examples/cognito-idp/get-identity-provider-by-identifier.rst,sha256=3xbHq9NKmCEA3jmxGzO9j-DKwt4IYT68H_CHTKumjK4,1450
|
|
1188
|
+
awscli/examples/cognito-idp/get-log-delivery-configuration.rst,sha256=J1YaY9eLK-jIPJO34JVgMWkhU-NneT5oHu-WPVCZiEM,1286
|
|
1189
|
+
awscli/examples/cognito-idp/get-signing-certificate.rst,sha256=w2ag_WBVdMTi_XhvNlOrZ78uZD6WOgsmzvNN5d1ks7Y,547
|
|
1190
|
+
awscli/examples/cognito-idp/get-ui-customization.rst,sha256=9svlfmPMpi22mFY2XDWcaoelvOJmwk0k5Vq-gCnGCf8,2794
|
|
1191
|
+
awscli/examples/cognito-idp/get-user-attribute-verification-code.rst,sha256=86MIDuU08-dki4Q6X-P4oslotMlYLt_iavd1qEOmdOc,758
|
|
1192
|
+
awscli/examples/cognito-idp/get-user-auth-factors.rst,sha256=hMeRbK0X_4KjW3REEHbvQN70UZg_Hti16_ffsnIfpVI,672
|
|
1193
|
+
awscli/examples/cognito-idp/get-user-pool-mfa-config.rst,sha256=VQbOIymEc2pG8JYYL3U9PGI4zhhj6KwbiF_dwRTLIP4,1312
|
|
1194
|
+
awscli/examples/cognito-idp/get-user.rst,sha256=2-pUNeUt-pd2pIuXBN5WpsH-l3XLgi9okkQZL1QSeQ4,1773
|
|
1195
|
+
awscli/examples/cognito-idp/global-sign-out.rst,sha256=QElgHzMwHxV7hrPZ7l8pun-8dShG0U-2ClskUMVKY8I,399
|
|
1196
|
+
awscli/examples/cognito-idp/initiate-auth.rst,sha256=K0hHFrENDHDlxjRoQGtJXNSUcbZb__BcZhRGR24sjbc,1146
|
|
1197
|
+
awscli/examples/cognito-idp/list-devices.rst,sha256=S_ZGYpqfsJhhKLatHN6BXwbBbPzVwSWUPHqfxXJSYSU,1863
|
|
1198
|
+
awscli/examples/cognito-idp/list-groups.rst,sha256=GcMSgNwczTeuq7KDQ-D_1fKj4iR5o6piFr_UTRPQ1po,1190
|
|
1199
|
+
awscli/examples/cognito-idp/list-identity-providers.rst,sha256=XB-xcv8-IVWW7x4Z3aLYDnv404zsaFJXq1zNafnKHJc,1030
|
|
1200
|
+
awscli/examples/cognito-idp/list-resource-servers.rst,sha256=-RKeOQTr-vPT8HF1pr31-5zK8FyLIgQk8T8RpaBU-Ak,1606
|
|
1201
|
+
awscli/examples/cognito-idp/list-tags-for-resource.rst,sha256=-REaxk2gPbpjB_BLsn2iOtRNsJpUQcheDgf1TMDSFeY,602
|
|
1202
|
+
awscli/examples/cognito-idp/list-user-import-jobs.rst,sha256=EM2nMe3Evkfr5z_XWgKFF258ysJjaubp84BEI353cyw,3727
|
|
1203
|
+
awscli/examples/cognito-idp/list-user-pool-clients.rst,sha256=dSPNHXmLxJfhtUJgoAyc7go21RkARBr99JMoo-T4-0E,1087
|
|
1204
|
+
awscli/examples/cognito-idp/list-user-pools.rst,sha256=sKjrohAHwNr0OPGjMVXRczB3k97o326wFXoDQ5udWfQ,1949
|
|
1192
1205
|
awscli/examples/cognito-idp/list-users-in-group.rst,sha256=iPYJRJZcaysUqThBAVhgZgBBrSipHsBqECjfd_LEPYI,1594
|
|
1193
|
-
awscli/examples/cognito-idp/list-users.rst,sha256=
|
|
1206
|
+
awscli/examples/cognito-idp/list-users.rst,sha256=zqmeWaw-dI27WNwjVmuajGk5eV_qJx6QDs5OV8NVFGU,3644
|
|
1207
|
+
awscli/examples/cognito-idp/list-web-authn-credentials.rst,sha256=6riokI2IJTqK1PLWMUN_XViVYbzJhaWewJ4DdXQFuWg,971
|
|
1194
1208
|
awscli/examples/cognito-idp/resend-confirmation-code.rst,sha256=P7I8jeMD8eaXhJvd0LuIhQ20SXFaDTAicNW6WpuA5uM,667
|
|
1195
|
-
awscli/examples/cognito-idp/respond-to-auth-challenge.rst,sha256=
|
|
1196
|
-
awscli/examples/cognito-idp/
|
|
1197
|
-
awscli/examples/cognito-idp/set-
|
|
1198
|
-
awscli/examples/cognito-idp/set-
|
|
1209
|
+
awscli/examples/cognito-idp/respond-to-auth-challenge.rst,sha256=ZMpvV1Tja3mohOMX9oK6-eAPINCQkpYrR8qNbUGjgrw,3138
|
|
1210
|
+
awscli/examples/cognito-idp/revoke-token.rst,sha256=HBZQKkXrk-9opYHuDIVwP0yBaaylyz9Nah80jEMyf9k,456
|
|
1211
|
+
awscli/examples/cognito-idp/set-log-delivery-configuration.rst,sha256=KBdF5NonVH47LgCqYEUyplsVXMi8RrvOaJVDEL-2dmQ,1586
|
|
1212
|
+
awscli/examples/cognito-idp/set-risk-configuration.rst,sha256=l7YHhuaNL6sMupuNfvZYpyULXK9zkAptkxgF9UQHkdI,10549
|
|
1213
|
+
awscli/examples/cognito-idp/set-ui-customization.rst,sha256=i7_DPD2YP7fz33Ia8gpOYxaE10cWw3imOtP1uBe8aoo,11534
|
|
1214
|
+
awscli/examples/cognito-idp/set-user-mfa-preference.rst,sha256=B8wsFPFcUtbBAvUQzvZWgst2KmjJ41VfL6z9h28emu0,673
|
|
1215
|
+
awscli/examples/cognito-idp/set-user-pool-mfa-config.rst,sha256=nyZIuKje71lD3zyNnpRMniArSzsXNLcrtD6rr7Qzgbk,2101
|
|
1199
1216
|
awscli/examples/cognito-idp/set-user-settings.rst,sha256=bEPDVPxjkF-HMjT0tf8FZBs6SWhrZWKpZIG_LYuc8Ks,195
|
|
1200
1217
|
awscli/examples/cognito-idp/sign-up.rst,sha256=NVkIeh4xRJbOHvGRilzUPUnHRcMieRUDtNkfByW_u8k,370
|
|
1201
|
-
awscli/examples/cognito-idp/start-user-import-job.rst,sha256=
|
|
1202
|
-
awscli/examples/cognito-idp/
|
|
1218
|
+
awscli/examples/cognito-idp/start-user-import-job.rst,sha256=r4PuTs3XKRyLrB5AHqF9Rjv7EiIfG-_DAgQ5tKk89zE,1364
|
|
1219
|
+
awscli/examples/cognito-idp/start-web-authn-registration.rst,sha256=hPGuU6dIyzW9ACQkifIVXf-LepXCkTt9abMwnKVR1gc,1734
|
|
1220
|
+
awscli/examples/cognito-idp/stop-user-import-job.rst,sha256=fu_b84faku2vJLq1jsCsjb9kMT4ZZHXFnkrDvEGZ7JU,1504
|
|
1203
1221
|
awscli/examples/cognito-idp/update-auth-event-feedback.rst,sha256=JanhUZ1_jszlnyLCL5nRtIeczZLTZG8YJFBbEWKE6Mk,312
|
|
1204
1222
|
awscli/examples/cognito-idp/update-device-status.rst,sha256=F_1gNCSc7wlqSB49jhkTQ9V-IWq2CQqw0Jk0WYvsNI4,242
|
|
1205
1223
|
awscli/examples/cognito-idp/update-group.rst,sha256=idEtTNhunMtEZvfgGck2531u8e4C5wmbBstTr_5tp28,560
|
|
@@ -2365,7 +2383,7 @@ awscli/examples/ecr-public/tag-resource.rst,sha256=d7W4OnGTLOo523sRZnnXYXXesccqG
|
|
|
2365
2383
|
awscli/examples/ecr-public/untag-resource.rst,sha256=NQLXIGg7zIGaOn6GfiIyNyie3IRxbuSQg4l-B-Hls7w,588
|
|
2366
2384
|
awscli/examples/ecs/capacity-provider-update.rst,sha256=-ynz-2m3NxfyFNF2xCEBdcuQPx83b1JOs2836XDQcJo,1950
|
|
2367
2385
|
awscli/examples/ecs/create-capacity-provider.rst,sha256=RmdbP8SVIXFUGPKpdSKkqsTnzAzN6LwkmCMYZd-WC0g,1623
|
|
2368
|
-
awscli/examples/ecs/create-cluster.rst,sha256=
|
|
2386
|
+
awscli/examples/ecs/create-cluster.rst,sha256=K9Y_pNu8hFagKPJgfKFuSXGs_xmkFsmmOlfofewpetE,5860
|
|
2369
2387
|
awscli/examples/ecs/create-service.rst,sha256=YiMb8eHH0yANn08F4WRtKC0PrnyYjXqeLv2NkgqHdGg,9553
|
|
2370
2388
|
awscli/examples/ecs/create-task-set.rst,sha256=QFLHfhvU3C1CK_HiFcb5d3T6I0QG8JfsSOQssSY-pDs,1598
|
|
2371
2389
|
awscli/examples/ecs/delete-account-setting.rst,sha256=ZsljBcOiVagRW32A0BesG4Tq1qrQwqlnDUQG7dIXj4M,715
|
|
@@ -2400,7 +2418,7 @@ awscli/examples/ecs/list-task-definition-families.rst,sha256=drHAF31G1b-0UpvLMB-
|
|
|
2400
2418
|
awscli/examples/ecs/list-task-definitions.rst,sha256=lCJ6YxfJm_z9_HeWz5OFua1ns-wvHtQGwxKZCk5XiYo,1511
|
|
2401
2419
|
awscli/examples/ecs/list-tasks.rst,sha256=Z77I44mxZnKySRv2lSgE6kAawn79PwFhnHg21Qd1_ik,1027
|
|
2402
2420
|
awscli/examples/ecs/put-account-setting-default.rst,sha256=KY_vSLhiIuNGon1DqsQT2loPT7_nHE8DcI0Dmg2cIko,770
|
|
2403
|
-
awscli/examples/ecs/put-account-setting.rst,sha256=
|
|
2421
|
+
awscli/examples/ecs/put-account-setting.rst,sha256=evk80P4UZpDzmyL1t7dICKoMNb2jjWV8TJm6Cq37Yh4,777
|
|
2404
2422
|
awscli/examples/ecs/put-account-settings.rst,sha256=ZUzQlbUBOLdO414Pvy6TszaqC9UGdsswjrpXuQ4psro,543
|
|
2405
2423
|
awscli/examples/ecs/put-attributes.rst,sha256=S2mwDAQUAWJJtUS8HywHT9MVN8DnxgxjfMShU4r8n9Y,665
|
|
2406
2424
|
awscli/examples/ecs/put-cluster-capacity-providers.rst,sha256=FvzCz0vkOUVFW9TWevQGe-WN8XTPignyZpZ8tqs98kE,9906
|
|
@@ -2410,12 +2428,12 @@ awscli/examples/ecs/start-task.rst,sha256=fMOCzzQzcC4JAXHTmf2zlNywl3sG6INjS4LXH4
|
|
|
2410
2428
|
awscli/examples/ecs/stop-task.rst,sha256=R0gpzlxaQtQIahTzzAwvZAKCJ8aLR_C-AnWmeUEf_jo,1496
|
|
2411
2429
|
awscli/examples/ecs/tag-resource.rst,sha256=wwHgJOlBWNy6d2ZetCQ0Pm32N5DucknQHi-pVMD-KZM,627
|
|
2412
2430
|
awscli/examples/ecs/untag-resource.rst,sha256=Ip6Ym3OJUB0K8w5qCVcJD5JV92b4rshwdm6Rb21_NRk,306
|
|
2413
|
-
awscli/examples/ecs/update-cluster-settings.rst,sha256=
|
|
2431
|
+
awscli/examples/ecs/update-cluster-settings.rst,sha256=TqiHBdFK3S4PMLNUuVCmr-d8zXKSh7WwoaQxoo7UDyQ,1103
|
|
2414
2432
|
awscli/examples/ecs/update-cluster.rst,sha256=OV38bU7OamXfvwykap_sqxbrRRPAJtD4A6IOlP-ketw,6861
|
|
2415
2433
|
awscli/examples/ecs/update-container-agent.rst,sha256=nt5BBtWbdqJY3coD_7G3LMMtuDIzKaDln_6F8J8tus4,842
|
|
2416
2434
|
awscli/examples/ecs/update-container-instances-state.rst,sha256=4dSKofws7Y1kSmhow-TfESecyG9tlzVjSlYVMevBE5I,10437
|
|
2417
2435
|
awscli/examples/ecs/update-service-primary-task-set.rst,sha256=M9ZKYEjcl2lkDom45XJtP2Tu0O5kBQuk9erw6Y5UZmw,1594
|
|
2418
|
-
awscli/examples/ecs/update-service.rst,sha256=
|
|
2436
|
+
awscli/examples/ecs/update-service.rst,sha256=OPzH_Wk3RNnBKnSFuIVNu-2A2k8a45niiYWBkU0ecQc,9923
|
|
2419
2437
|
awscli/examples/ecs/update-task-protection.rst,sha256=Ltv-BQHFUkVQKMflK2wBPZhC-fri4djDptnCejUvEVw,1740
|
|
2420
2438
|
awscli/examples/ecs/update-task-set.rst,sha256=NimKKM9kaehqwRdzETkLMQASvzcJCMHAhO-g88BmcQ0,1553
|
|
2421
2439
|
awscli/examples/ecs/wait/services-inactive.rst,sha256=X6nH3H6E-wmR63IsQJs0AtlPtOJ4ehxcvTv9Dh1j8AY,284
|
|
@@ -2657,9 +2675,9 @@ awscli/examples/elbv2/wait/load-balancers-deleted.rst,sha256=8nfAvccReyUgzXFtkV6
|
|
|
2657
2675
|
awscli/examples/elbv2/wait/target-deregistered.rst,sha256=Ky0Mx3FAsU5SrOS_IjwuASdX5A6vzb-OGWGGqKxDBjg,446
|
|
2658
2676
|
awscli/examples/elbv2/wait/target-in-service.rst,sha256=YYn_BgFRsxalSeAfdOPBuZwc_Pvfpc6Jr8R8xTPfUtQ,449
|
|
2659
2677
|
awscli/examples/emr/add-instance-fleet.rst,sha256=86QceC6G-Xg_2SokLSEhO4rBpvSsh-X3w3OB27jdFx4,521
|
|
2660
|
-
awscli/examples/emr/add-steps.rst,sha256=
|
|
2678
|
+
awscli/examples/emr/add-steps.rst,sha256=olWBzE0otGWhUrl5mkZd3P78xSj-xYzvrQVLm0yfgrs,4653
|
|
2661
2679
|
awscli/examples/emr/add-tags.rst,sha256=h35saPb_5aiRrzpGAyYsGQp8pDmd002-ouKr2sMOsck,648
|
|
2662
|
-
awscli/examples/emr/create-cluster-examples.rst,sha256=
|
|
2680
|
+
awscli/examples/emr/create-cluster-examples.rst,sha256=bUgOHFMq48JyjyUePiRYPLZuD5mMed5KhlyHBdHY0i0,31458
|
|
2663
2681
|
awscli/examples/emr/create-cluster-synopsis.txt,sha256=_ggsfLeHBw-MAYKdJSlWzT3atyvwazmm6TBYh2iXeeI,1347
|
|
2664
2682
|
awscli/examples/emr/create-default-roles.rst,sha256=pmYwkYa9HgK5Qn6VBFSL5SgWbyV9jNRDNmV_wE_TdKA,5688
|
|
2665
2683
|
awscli/examples/emr/create-security-configuration.rst,sha256=m3vxwRSYxuDRoIB33gFXxoiD03JKccb329eiE_K2byc,4003
|
|
@@ -4677,7 +4695,7 @@ awscli/examples/rds/add-tags-to-resource.rst,sha256=y5vlSoYw1RpMTNUSYUx8oo1cRZkU
|
|
|
4677
4695
|
awscli/examples/rds/apply-pending-maintenance-action.rst,sha256=q5Ggrtse4mHYI0naKBYsGhTsE3j6Wn6qj2FU0vieV0M,1273
|
|
4678
4696
|
awscli/examples/rds/authorize-db-security-group-ingress.rst,sha256=IMBVzEMA3RN5mLu-5Swz0yhdQlpoJv6mQRTduwjFI2o,1153
|
|
4679
4697
|
awscli/examples/rds/backtrack-db-cluster.rst,sha256=eEn9VLRuk76_kadVBJ07F8g3NJ8UqW27BnOIs12Cwug,370
|
|
4680
|
-
awscli/examples/rds/cancel-export-task.rst,sha256=
|
|
4698
|
+
awscli/examples/rds/cancel-export-task.rst,sha256=KKxAyvzi1IrcbFnQuBEUvW_9HLYZodN0smBj0U7oeB0,1223
|
|
4681
4699
|
awscli/examples/rds/copy-db-cluster-parameter-group.rst,sha256=Lwa26jqqPjx8pPM8N2Ohy4PibYyqJbPxOhTLN1I_6_8,1049
|
|
4682
4700
|
awscli/examples/rds/copy-db-cluster-snapshot.rst,sha256=UZGxbwnJERmvyud6s94ZYX8tyG_VhWanGA5Kb7XiRo4,1701
|
|
4683
4701
|
awscli/examples/rds/copy-db-parameter-group.rst,sha256=MMnAzHxhAo56KzXclUjJBy9xB_HjjIqwX76tGECvCNE,899
|
|
@@ -4749,7 +4767,7 @@ awscli/examples/rds/describe-engine-default-parameters.rst,sha256=n9QZ3SMpQNCAia
|
|
|
4749
4767
|
awscli/examples/rds/describe-event-categories.rst,sha256=JlS4wO5Ol31QHNY3VRHsf5eWcctKwX9BteEDpesf5A0,1924
|
|
4750
4768
|
awscli/examples/rds/describe-event-subscriptions.rst,sha256=HjL3fYz9ljL6IJrmvSqqAhTzdOYrGvRn4gU19CLcb6Y,918
|
|
4751
4769
|
awscli/examples/rds/describe-events.rst,sha256=hAWw49nZompsYWucHPoYJD7YoTkAg3gROubXXhC2860,1118
|
|
4752
|
-
awscli/examples/rds/describe-export-tasks.rst,sha256=
|
|
4770
|
+
awscli/examples/rds/describe-export-tasks.rst,sha256=WMK-Yj3jUWGezyqMBnvHm8hHBQ_G00PZHR5LMZPeZlI,1843
|
|
4753
4771
|
awscli/examples/rds/describe-global-clusters.rst,sha256=4Q8WXBt98SnchMWqr80vKjurtiq25n_KnTE63-bh8YA,1001
|
|
4754
4772
|
awscli/examples/rds/describe-option-group-options.rst,sha256=ZhKOJzK5fhG45Fdt_kIWIJidn7bHGaQCl-o3Cs45H54,2513
|
|
4755
4773
|
awscli/examples/rds/describe-option-groups.rst,sha256=v1T2fGYAA7RQkpqrEktFp3HTCxVrCLnJJz51g59XrSE,1053
|
|
@@ -4796,7 +4814,7 @@ awscli/examples/rds/remove-source-identifier-from-subscription.rst,sha256=jgJMZC
|
|
|
4796
4814
|
awscli/examples/rds/remove-tags-from-resource.rst,sha256=P5LDQCkgpJ3DqYi34qPV-pGtviGnuRtFbZb_T4fOfPc,637
|
|
4797
4815
|
awscli/examples/rds/reset-db-cluster-parameter-group.rst,sha256=dEDYrotCWvLB5xCaHk1ez1wNCFxIJNQBp-iW6M5V848,1505
|
|
4798
4816
|
awscli/examples/rds/reset-db-parameter-group.rst,sha256=cQrAIJOXknJsoALwJFwmYjARlanEFtzE0evXViw1qJs,1734
|
|
4799
|
-
awscli/examples/rds/restore-db-cluster-from-s3.rst,sha256=
|
|
4817
|
+
awscli/examples/rds/restore-db-cluster-from-s3.rst,sha256=B74xgJDoVqaiE3joN6zPUpb8J7IDlPp4wHs3D8mzffE,2785
|
|
4800
4818
|
awscli/examples/rds/restore-db-cluster-from-snapshot.rst,sha256=SZTMYUWZs2fOV5NSuEd_nN6YBOiwVk7YhZj0JZ9nXgI,2693
|
|
4801
4819
|
awscli/examples/rds/restore-db-cluster-to-point-in-time.rst,sha256=FgVqwBTGUqxLa88FBOno1oIl-geNquwyUV9YbtFIOgk,2827
|
|
4802
4820
|
awscli/examples/rds/restore-db-instance-from-db-snapshot.rst,sha256=5ynAa_HiVBGPQaEsn7iCeWN02fJPmg6vE4UdBIAH45o,1635
|
|
@@ -4806,7 +4824,7 @@ awscli/examples/rds/start-activity-stream.rst,sha256=bzkITWkYLa-a2mX_t3xyWMdnBrV
|
|
|
4806
4824
|
awscli/examples/rds/start-db-cluster.rst,sha256=IkilLYshcWRROpg0kC7B00n50ai6h1BXQoqjWTYBqr0,820
|
|
4807
4825
|
awscli/examples/rds/start-db-instance-automated-backups-replication.rst,sha256=f7W7esFUd891QECMigGIOWFJoHvmhdNbduSjU1WQCEE,1760
|
|
4808
4826
|
awscli/examples/rds/start-db-instance.rst,sha256=R7Z05L0an3pXnnzSmjKZODYFr6Jn_HceL4xaRSE570k,330
|
|
4809
|
-
awscli/examples/rds/start-export-task.rst,sha256=
|
|
4827
|
+
awscli/examples/rds/start-export-task.rst,sha256=gowciXs7YC_VUbibYANgRMEM2AYqCdIIazrjNHVwPQQ,1327
|
|
4810
4828
|
awscli/examples/rds/stop-activity-stream.rst,sha256=kJNc6qrjl2UzmbgfE9OWkSt8R6-3cuJTGJFYf85mPN0,786
|
|
4811
4829
|
awscli/examples/rds/stop-db-cluster.rst,sha256=myVg0qC2CFXXodlZgTdPrbjn91DaRGZmbdL4YdMHn4s,816
|
|
4812
4830
|
awscli/examples/rds/stop-db-instance-automated-backups-replication.rst,sha256=ejJmuFNsYLj3C7nTem5N3b1XWLgaBVqG2myShjVuiDo,1837
|
|
@@ -5108,15 +5126,15 @@ awscli/examples/route53resolver/update-firewall-rule-group-association.rst,sha25
|
|
|
5108
5126
|
awscli/examples/route53resolver/update-firewall-rule.rst,sha256=LMhLMYztXCAWn3mojNRve-wLrijDbPrABY3PnkJtp9o,1061
|
|
5109
5127
|
awscli/examples/route53resolver/update-resolver-endpoint.rst,sha256=Y6TPOrGSr5rSsL9q1Pn2vqPVA7t3DyUFd2qw6IEVeaM,1105
|
|
5110
5128
|
awscli/examples/route53resolver/update-resolver-rule.rst,sha256=zlQgjnbKXltx35KQYc4AtePobnux8rb3KTKCs0lsN7E,2749
|
|
5111
|
-
awscli/examples/s3/_concepts.rst,sha256=
|
|
5112
|
-
awscli/examples/s3/cp.rst,sha256=
|
|
5113
|
-
awscli/examples/s3/ls.rst,sha256=
|
|
5114
|
-
awscli/examples/s3/mb.rst,sha256=
|
|
5115
|
-
awscli/examples/s3/mv.rst,sha256=
|
|
5129
|
+
awscli/examples/s3/_concepts.rst,sha256=AoNoxNdz39lMQcZ-pRhW03QIg05J8kwTI38lT6IWltM,7879
|
|
5130
|
+
awscli/examples/s3/cp.rst,sha256=zjXY2o3eykyqe5fq-o5VqfB5T1mEmBIbyzxUVoq17MM,7346
|
|
5131
|
+
awscli/examples/s3/ls.rst,sha256=wUA78JV2nliaDzLx1zyBdKcX6j4IBWEzpwSxFWgU72U,3764
|
|
5132
|
+
awscli/examples/s3/mb.rst,sha256=UyimQrHgjcy4V6HFHUlsHRgwBpqInIIy86cLGcaJ0TE,699
|
|
5133
|
+
awscli/examples/s3/mv.rst,sha256=FX-8K024y18pvEMsaZYXLvo-xMz7rCqypkNRFLu7qUo,4346
|
|
5116
5134
|
awscli/examples/s3/presign.rst,sha256=4D0AYCtk3AiBhX9HmmhcG4htsj1Rdz_NsaQMw6c4hTE,1456
|
|
5117
|
-
awscli/examples/s3/rb.rst,sha256=
|
|
5118
|
-
awscli/examples/s3/rm.rst,sha256=
|
|
5119
|
-
awscli/examples/s3/sync.rst,sha256
|
|
5135
|
+
awscli/examples/s3/rb.rst,sha256=t0RIhgD7hN0bvw-xOuwP8DuzGyoI8MW1jofUjiSWLHg,818
|
|
5136
|
+
awscli/examples/s3/rm.rst,sha256=XIvepw_9C4XJjPoSJcRlYy4l1YA2uVOSSjfxztRCp-o,2256
|
|
5137
|
+
awscli/examples/s3/sync.rst,sha256=qFMBQcOSugq-DADdYdR8zOhjT_YACol4rLSZz6kN51c,6249
|
|
5120
5138
|
awscli/examples/s3/website.rst,sha256=qX7ZrkvGkwaHH0GSABBdqKHyjAYklNtpCKhHVeD7YV4,972
|
|
5121
5139
|
awscli/examples/s3/mv/_description.rst,sha256=IIN0gX8cHrjo_nohv2Sy33JUYs-M72nK5wRM3dBg5Zg,838
|
|
5122
5140
|
awscli/examples/s3api/abort-multipart-upload.rst,sha256=OMrFDhXt0l5y5DxqtMp_y2_E7rSXSVUfuGx-vTe_ez8,587
|
|
@@ -5157,7 +5175,7 @@ awscli/examples/s3api/get-bucket-notification-configuration.rst,sha256=1X0Cac8gv
|
|
|
5157
5175
|
awscli/examples/s3api/get-bucket-notification.rst,sha256=LU-nW_Lk9Gsrfl8Ln5POaiNnssVjull6jEQBbYcZXHc,488
|
|
5158
5176
|
awscli/examples/s3api/get-bucket-ownership-controls.rst,sha256=5KAFoT6smXzluL0ZIwwOFExjN8Wkx-4QANmNrmy1if4,657
|
|
5159
5177
|
awscli/examples/s3api/get-bucket-policy-status.rst,sha256=NIcQDGzLe7InS8x9dztob-r3LWINKNF0uU92INNswwI,378
|
|
5160
|
-
awscli/examples/s3api/get-bucket-policy.rst,sha256=
|
|
5178
|
+
awscli/examples/s3api/get-bucket-policy.rst,sha256=nSSQXZP_fCV8HK0qrbz2tTGQD4fMTerxJ-cPcOX0S30,1137
|
|
5161
5179
|
awscli/examples/s3api/get-bucket-replication.rst,sha256=26u-hYWz04-tyLX-XKFpc1a6wvF2djJJ4-EafnoPJ7k,697
|
|
5162
5180
|
awscli/examples/s3api/get-bucket-request-payment.rst,sha256=szihUlKQqz_dvJ0dutO9EbgITG2BaV0cSVFCmvYX8cI,324
|
|
5163
5181
|
awscli/examples/s3api/get-bucket-tagging.rst,sha256=vu5L0XNImKi21yQoOvDU5SWJIrqVR6Ik6XBR7fzxjMc,305
|
|
@@ -6057,13 +6075,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
|
6057
6075
|
awscli/topics/s3-config.rst,sha256=kyLbdEEePnHW0hoMmQDkt4o6PbqAdpO5ph_51GgQyXg,11664
|
|
6058
6076
|
awscli/topics/s3-faq.rst,sha256=Kw1w4NFHOTXq9Mz5S3HHw3mBkyeEzH4ruB0PD6-EO1c,2938
|
|
6059
6077
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
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.
|
|
6068
|
-
awscli-1.38.
|
|
6069
|
-
awscli-1.38.
|
|
6078
|
+
awscli-1.38.9.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
6079
|
+
awscli-1.38.9.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
6080
|
+
awscli-1.38.9.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
6081
|
+
awscli-1.38.9.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
6082
|
+
awscli-1.38.9.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
6083
|
+
awscli-1.38.9.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
6084
|
+
awscli-1.38.9.dist-info/METADATA,sha256=LX3kwcyLZz98oXcMowatMmEgJW-QYDVDYqS-mk4DWMI,11329
|
|
6085
|
+
awscli-1.38.9.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
6086
|
+
awscli-1.38.9.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
6087
|
+
awscli-1.38.9.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
|