awscli 1.44.2__py3-none-any.whl → 1.44.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.
Files changed (25) hide show
  1. awscli/__init__.py +1 -1
  2. awscli/customizations/cloudtrail/validation.py +22 -2
  3. awscli/examples/cloudformation/create-generated-template.rst +50 -0
  4. awscli/examples/cloudformation/create-stack-refactor.rst +16 -0
  5. awscli/examples/cloudformation/delete-generated-template.rst +10 -0
  6. awscli/examples/cloudformation/describe-generated-template.rst +62 -0
  7. awscli/examples/cloudformation/describe-resource-scan.rst +38 -0
  8. awscli/examples/cloudformation/describe-stack-refactor.rst +20 -0
  9. awscli/examples/cloudformation/execute-stack-refactor.rst +10 -0
  10. awscli/examples/cloudformation/list-generated-templates.rst +41 -0
  11. awscli/examples/cloudformation/list-resource-scan-related-resources.rst +47 -0
  12. awscli/examples/cloudformation/list-resource-scan-resources.rst +30 -0
  13. awscli/examples/cloudformation/list-stack-refactor-actions.rst +71 -0
  14. awscli/examples/cloudformation/start-resource-scan.rst +14 -0
  15. awscli/examples/medical-imaging/create-datastore.rst +2 -2
  16. {awscli-1.44.2.dist-info → awscli-1.44.4.dist-info}/METADATA +2 -2
  17. {awscli-1.44.2.dist-info → awscli-1.44.4.dist-info}/RECORD +25 -13
  18. {awscli-1.44.2.data → awscli-1.44.4.data}/scripts/aws +0 -0
  19. {awscli-1.44.2.data → awscli-1.44.4.data}/scripts/aws.cmd +0 -0
  20. {awscli-1.44.2.data → awscli-1.44.4.data}/scripts/aws_bash_completer +0 -0
  21. {awscli-1.44.2.data → awscli-1.44.4.data}/scripts/aws_completer +0 -0
  22. {awscli-1.44.2.data → awscli-1.44.4.data}/scripts/aws_zsh_completer.sh +0 -0
  23. {awscli-1.44.2.dist-info → awscli-1.44.4.dist-info}/LICENSE.txt +0 -0
  24. {awscli-1.44.2.dist-info → awscli-1.44.4.dist-info}/WHEEL +0 -0
  25. {awscli-1.44.2.dist-info → awscli-1.44.4.dist-info}/top_level.txt +0 -0
awscli/__init__.py CHANGED
@@ -18,7 +18,7 @@ A Universal Command Line Environment for Amazon Web Services.
18
18
 
19
19
  import os
20
20
 
21
- __version__ = '1.44.2'
21
+ __version__ = '1.44.4'
22
22
 
23
23
  #
24
24
  # Get our data path to be added to botocore's search path
@@ -282,9 +282,10 @@ class DigestProvider(object):
282
282
  """
283
283
  digests = []
284
284
  marker = self._create_digest_key(start_date, prefix)
285
+ s3_digest_files_prefix = self._create_digest_prefix(start_date, prefix)
285
286
  client = self._client_provider.get_client(bucket)
286
287
  paginator = client.get_paginator('list_objects')
287
- page_iterator = paginator.paginate(Bucket=bucket, Marker=marker)
288
+ page_iterator = paginator.paginate(Bucket=bucket, Marker=marker, Prefix=s3_digest_files_prefix)
288
289
  key_filter = page_iterator.search('Contents[*].Key')
289
290
  # Create a target start end end date
290
291
  target_start_date = format_date(normalize_date(start_date))
@@ -294,7 +295,7 @@ class DigestProvider(object):
294
295
  # Ensure digests are from the same trail.
295
296
  digest_key_regex = re.compile(self._create_digest_key_regex(prefix))
296
297
  for key in key_filter:
297
- if digest_key_regex.match(key):
298
+ if key and digest_key_regex.match(key):
298
299
  # Use a lexicographic comparison to know when to stop.
299
300
  extracted_date = extract_digest_key_date(key)
300
301
  if extracted_date > target_end_date:
@@ -361,6 +362,25 @@ class DigestProvider(object):
361
362
  key = key_prefix + '/' + key
362
363
  return key
363
364
 
365
+ def _create_digest_prefix(self, start_date, key_prefix):
366
+ """Creates an S3 prefix to scope listing to trail's region.
367
+
368
+ :return: Returns a prefix string to limit S3 listing scope.
369
+ """
370
+ template = 'AWSLogs/'
371
+ template_params = {
372
+ 'account_id': self.account_id,
373
+ 'source_region': self.trail_source_region
374
+ }
375
+ if self.organization_id:
376
+ template += '{organization_id}/'
377
+ template_params['organization_id'] = self.organization_id
378
+ template += '{account_id}/CloudTrail-Digest/{source_region}'
379
+ prefix = template.format(**template_params)
380
+ if key_prefix:
381
+ prefix = key_prefix + '/' + prefix
382
+ return prefix
383
+
364
384
  def _create_digest_key_regex(self, key_prefix):
365
385
  """Creates a regular expression used to match against S3 keys"""
366
386
  template = 'AWSLogs/'
@@ -0,0 +1,50 @@
1
+ **To create a generated template from scanned resources**
2
+
3
+ The following ``create-generated-template`` example creates a generated template named ``MyTemplate`` from scanned resources. ::
4
+
5
+ aws cloudformation create-generated-template \
6
+ --generated-template-name MyTemplate \
7
+ --resources file://resources.json
8
+
9
+ Contents of ``resources.json``::
10
+
11
+ [
12
+ {
13
+ "ResourceType": "AWS::EKS::Cluster",
14
+ "LogicalResourceId":"MyCluster",
15
+ "ResourceIdentifier": {
16
+ "ClusterName": "MyAppClusterName"
17
+ }
18
+ },
19
+ {
20
+ "ResourceType": "AWS::AutoScaling::AutoScalingGroup",
21
+ "LogicalResourceId":"MyASG",
22
+ "ResourceIdentifier": {
23
+ "AutoScalingGroupName": "MyAppASGName"
24
+ }
25
+ },
26
+ {
27
+ "ResourceType": "AWS::EKS::Nodegroup",
28
+ "LogicalResourceId":"MyNodegroup",
29
+ "ResourceIdentifier": {
30
+ "NodegroupName": "MyAppNodegroupName"
31
+ }
32
+ },
33
+ {
34
+ "ResourceType": "AWS::IAM::Role",
35
+ "LogicalResourceId":"MyRole",
36
+ "ResourceIdentifier": {
37
+ "RoleId": "arn:aws::iam::123456789012:role/MyAppIAMRole"
38
+ }
39
+ }
40
+ ]
41
+
42
+ Output::
43
+
44
+ {
45
+ "Arn":
46
+ "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/7fc8512c-d8cb-4e02-b266-d39c48344e48",
47
+ "Name": "MyTemplate"
48
+ }
49
+
50
+ For more information, see `Create a CloudFormation template from resources scanned with IaC generator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/iac-generator-create-template-from-scanned-resources.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,16 @@
1
+ **To create the stack definition for a stack refactor operation**
2
+
3
+ The following ``create-stack-refactor`` example creates the stack definition for stack refactoring. ::
4
+
5
+ aws cloudformation create-stack-refactor \
6
+ --stack-definitions \
7
+ StackName=Stack1,TemplateBody@=file://template1-updated.yaml \
8
+ StackName=Stack2,TemplateBody@=file://template2-updated.yaml
9
+
10
+ Output::
11
+
12
+ {
13
+ "StackRefactorId": "9c384f70-4e07-4ed7-a65d-fee5eb430841"
14
+ }
15
+
16
+ For more information, see `Stack refactoring <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-refactoring.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,10 @@
1
+ **To delete a generated template**
2
+
3
+ The following ``delete-generated-template`` example deletes the specified template. ::
4
+
5
+ aws cloudformation delete-generated-template \
6
+ --generated-template-name MyTemplate
7
+
8
+ This command produces no output.
9
+
10
+ For more information, see `Generating templates from existing resources <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/generate-IaC.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,62 @@
1
+ **To describe a generated template**
2
+
3
+ The following ``describe-generated-template`` example describes the specified template. ::
4
+
5
+ aws cloudformation describe-generated-template \
6
+ --generated-template-name MyTemplate
7
+
8
+ Output::
9
+
10
+ {
11
+ "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedTemplate/7d881acf-f307-4ded-910e-f8fb49b96894",
12
+ "GeneratedTemplateName": "MyTemplate",
13
+ "Resources": [
14
+ {
15
+ "ResourceType": "AWS::EC2::SecurityGroup",
16
+ "LogicalResourceId": "EC2SecurityGroup",
17
+ "ResourceIdentifier": {
18
+ "Id": "sg-1234567890abcdef0"
19
+ },
20
+ "ResourceStatus": "COMPLETE",
21
+ "ResourceStatusReason": "Resource Template complete",
22
+ "Warnings": []
23
+ },
24
+ {
25
+ "ResourceType": "AWS::EC2::Instance",
26
+ "LogicalResourceId": "EC2Instance",
27
+ "ResourceIdentifier": {
28
+ "InstanceId": "i-1234567890abcdef0"
29
+ },
30
+ "ResourceStatus": "COMPLETE",
31
+ "ResourceStatusReason": "Resource Template complete",
32
+ "Warnings": []
33
+ },
34
+ {
35
+ "ResourceType": "AWS::EC2::KeyPair",
36
+ "LogicalResourceId": "EC2KeyPairSshkeypair",
37
+ "ResourceIdentifier": {
38
+ "KeyName": "sshkeypair"
39
+ },
40
+ "ResourceStatus": "COMPLETE",
41
+ "ResourceStatusReason": "Resource Template complete",
42
+ "Warnings": []
43
+ }
44
+ ],
45
+ "Status": "COMPLETE",
46
+ "StatusReason": "All resources complete",
47
+ "CreationTime": "2025-09-23T19:38:06.435000+00:00",
48
+ "LastUpdatedTime": "2025-09-23T19:38:10.798000+00:00",
49
+ "Progress": {
50
+ "ResourcesSucceeded": 3,
51
+ "ResourcesFailed": 0,
52
+ "ResourcesProcessing": 0,
53
+ "ResourcesPending": 0
54
+ },
55
+ "TemplateConfiguration": {
56
+ "DeletionPolicy": "RETAIN",
57
+ "UpdateReplacePolicy": "RETAIN"
58
+ },
59
+ "TotalWarnings": 0
60
+ }
61
+
62
+ For more information, see `Generating templates from existing resources <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/generate-IaC.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,38 @@
1
+ **To describe a resource scan**
2
+
3
+ The following ``describe-resource-scan`` example describes the resource scan with the specified scan ID. ::
4
+
5
+ aws cloudformation describe-resource-scan --region \
6
+ --resource-scan-id arn:aws:cloudformation:us-east-1:123456789012:resourceScan/0a699f15-489c-43ca-a3ef-3e6ecfa5da60
7
+
8
+ Output::
9
+
10
+ {
11
+ "ResourceScanId": "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/0a699f15-489c-43ca-a3ef-3e6ecfa5da60",
12
+ "Status": "COMPLETE",
13
+ "StartTime": "2025-08-21T03:10:38.485000+00:00",
14
+ "EndTime": "2025-08-21T03:20:28.485000+00:00",
15
+ "PercentageCompleted": 100.0,
16
+ "ResourceTypes": [
17
+ "AWS::CloudFront::CachePolicy",
18
+ "AWS::CloudFront::OriginRequestPolicy",
19
+ "AWS::EC2::DHCPOptions",
20
+ "AWS::EC2::InternetGateway",
21
+ "AWS::EC2::KeyPair",
22
+ "AWS::EC2::NetworkAcl",
23
+ "AWS::EC2::NetworkInsightsPath",
24
+ "AWS::EC2::NetworkInterface",
25
+ "AWS::EC2::PlacementGroup",
26
+ "AWS::EC2::Route",
27
+ "AWS::EC2::RouteTable",
28
+ "AWS::EC2::SecurityGroup",
29
+ "AWS::EC2::Subnet",
30
+ "AWS::EC2::SubnetCidrBlock",
31
+ "AWS::EC2::SubnetNetworkAclAssociation",
32
+ "AWS::EC2::SubnetRouteTableAssociation",
33
+ ...
34
+ ],
35
+ "ResourcesRead": 676
36
+ }
37
+
38
+ For more information, see `Generating templates from existing resources <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/generate-IaC.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,20 @@
1
+ **To describe a stack refactor operation**
2
+
3
+ The following ``describe-stack-refactor`` example describes the stack refactor operation with the specified stack refactor ID. ::
4
+
5
+ aws cloudformation describe-stack-refactor \
6
+ --stack-refactor-id 9c384f70-4e07-4ed7-a65d-fee5eb430841
7
+
8
+ Output::
9
+
10
+ {
11
+ "StackRefactorId": "9c384f70-4e07-4ed7-a65d-fee5eb430841",
12
+ "StackIds": [
13
+ "arn:aws:cloudformation:us-east-1:123456789012:stack/Stack1/3e6a1ff0-94b1-11f0-aa6f-0a88d2e03acf",
14
+ "arn:aws:cloudformation:us-east-1:123456789012:stack/Stack2/5da91650-94b1-11f0-81cf-0a23500e151b"
15
+ ],
16
+ "ExecutionStatus": "AVAILABLE",
17
+ "Status": "CREATE_COMPLETE"
18
+ }
19
+
20
+ For more information, see `Stack refactoring <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-refactoring.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,10 @@
1
+ **To complete a stack refactor operation**
2
+
3
+ The following ``execute-stack-refactor`` example completes the stack refactor operation with the specified stack refactor ID. ::
4
+
5
+ aws cloudformation execute-stack-refactor \
6
+ --stack-refactor-id 9c384f70-4e07-4ed7-a65d-fee5eb430841
7
+
8
+ This command produces no output.
9
+
10
+ For more information, see `Stack refactoring <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-refactoring.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,41 @@
1
+ **To list generated templates**
2
+
3
+ The following ``list-generated-templates`` example lists all generated templates. ::
4
+
5
+ aws cloudformation list-generated-templates
6
+
7
+ Output::
8
+
9
+ {
10
+ "Summaries": [
11
+ {
12
+ "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedtemplate/7fc8512c-d8cb-4e02-b266-d39c48344e48",
13
+ "GeneratedTemplateName": "MyTemplate",
14
+ "Status": "COMPLETE",
15
+ "StatusReason": "All resources complete",
16
+ "CreationTime": "2025-09-23T20:13:24.283000+00:00",
17
+ "LastUpdatedTime": "2025-09-23T20:13:28.610000+00:00",
18
+ "NumberOfResources": 4
19
+ },
20
+ {
21
+ "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedTemplate/f10dd1c4-edc6-4823-8153-ab6112b8d051",
22
+ "GeneratedTemplateName": "MyEC2InstanceTemplate",
23
+ "Status": "COMPLETE",
24
+ "StatusReason": "All resources complete",
25
+ "CreationTime": "2024-08-08T19:35:49.790000+00:00",
26
+ "LastUpdatedTime": "2024-08-08T19:35:52.207000+00:00",
27
+ "NumberOfResources": 3
28
+ },
29
+ {
30
+ "GeneratedTemplateId": "arn:aws:cloudformation:us-east-1:123456789012:generatedTemplate/e5a1c89f-7ce2-41bd-9bdf-75b7c852e3ca",
31
+ "GeneratedTemplateName": "MyEKSNodeGroupTemplate",
32
+ "Status": "COMPLETE",
33
+ "StatusReason": "All resources complete",
34
+ "CreationTime": "2024-07-16T20:39:27.883000+00:00",
35
+ "LastUpdatedTime": "2024-07-16T20:39:35.766000+00:00",
36
+ "NumberOfResources": 4
37
+ }
38
+ ]
39
+ }
40
+
41
+ For more information, see `Generating templates from existing resources <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/generate-IaC.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,47 @@
1
+ **To list related resources from a resource scan**
2
+
3
+ The following ``list-resource-scan-related-resources`` example lists resources from the specified resource scan that are related to resources in ``resources.json``. ::
4
+
5
+ aws cloudformation list-resource-scan-related-resources \
6
+ --resource-scan-id arn:aws:cloudformation:us-east-1:123456789012:resourceScan/0a699f15-489c-43ca-a3ef-3e6ecfa5da60 \
7
+ --resources file://resources.json
8
+
9
+ Contents of ``resources.json``::
10
+
11
+ [
12
+ {
13
+ "ResourceType": "AWS::EKS::Cluster",
14
+ "ResourceIdentifier": {
15
+ "ClusterName": "MyAppClusterName"
16
+ }
17
+ },
18
+ {
19
+ "ResourceType": "AWS::AutoScaling::AutoScalingGroup",
20
+ "ResourceIdentifier": {
21
+ "AutoScalingGroupName": "MyAppASGName"
22
+ }
23
+ }
24
+ ]
25
+
26
+ Output::
27
+
28
+ {
29
+ "RelatedResources": [
30
+ {
31
+ "ResourceType": "AWS::EKS::Nodegroup",
32
+ "ResourceIdentifier": {
33
+ "NodegroupName": "MyAppNodegroupName"
34
+ },
35
+ "ManagedByStack": false
36
+ },
37
+ {
38
+ "ResourceType": "AWS::IAM::Role",
39
+ "ResourceIdentifier": {
40
+ "RoleId": "arn:aws::iam::123456789012:role/MyAppIAMRole"
41
+ },
42
+ "ManagedByStack": false
43
+ }
44
+ ]
45
+ }
46
+
47
+ For more information, see `Create a CloudFormation template from resources scanned with IaC generator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/iac-generator-create-template-from-scanned-resources.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,30 @@
1
+ **To list resources from a resource scan**
2
+
3
+ The following ``list-resource-scan-resources`` example lists resources from the specified resource scan, filtered by resource identifier. ::
4
+
5
+ aws cloudformation list-resource-scan-resources \
6
+ --resource-scan-id arn:aws:cloudformation:us-east-1:123456789012:resourceScan/0a699f15-489c-43ca-a3ef-3e6ecfa5da60 \
7
+ --resource-identifier MyApp
8
+
9
+ Output::
10
+
11
+ {
12
+ "Resources": [
13
+ {
14
+ "ResourceType": "AWS::EKS::Cluster",
15
+ "ResourceIdentifier": {
16
+ "ClusterName": "MyAppClusterName"
17
+ },
18
+ "ManagedByStack": false
19
+ },
20
+ {
21
+ "ResourceType": "AWS::AutoScaling::AutoScalingGroup",
22
+ "ResourceIdentifier": {
23
+ "AutoScalingGroupName": "MyAppASGName"
24
+ },
25
+ "ManagedByStack": false
26
+ }
27
+ ]
28
+ }
29
+
30
+ For more information, see `Create a CloudFormation template from resources scanned with IaC generator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/iac-generator-create-template-from-scanned-resources.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,71 @@
1
+ **To list actions for a stack refactor operation**
2
+
3
+ The following ``list-stack-refactor-actions`` example lists actions for the stack refactor operation with the specified stack refactor ID. ::
4
+
5
+ aws cloudformation list-stack-refactor-actions \
6
+ --stack-refactor-id 9c384f70-4e07-4ed7-a65d-fee5eb430841
7
+
8
+ Output::
9
+
10
+ {
11
+ "StackRefactorActions": [
12
+ {
13
+ "Action": "MOVE",
14
+ "Entity": "RESOURCE",
15
+ "PhysicalResourceId": "MyTestLambdaRole",
16
+ "Description": "No configuration changes detected.",
17
+ "Detection": "AUTO",
18
+ "TagResources": [],
19
+ "UntagResources": [],
20
+ "ResourceMapping": {
21
+ "Source": {
22
+ "StackName": "arn:aws:cloudformation:us-east-1:123456789012:stack/Stack1/3e6a1ff0-94b1-11f0-aa6f-0a88d2e03acf",
23
+ "LogicalResourceId": "MyLambdaRole"
24
+ },
25
+ "Destination": {
26
+ "StackName": "arn:aws:cloudformation:us-east-1:123456789012:stack/Stack2/5da91650-94b1-11f0-81cf-0a23500e151b",
27
+ "LogicalResourceId": "MyLambdaRole"
28
+ }
29
+ }
30
+ },
31
+ {
32
+ "Action": "MOVE",
33
+ "Entity": "RESOURCE",
34
+ "PhysicalResourceId": "MyTestFunction",
35
+ "Description": "Resource configuration changes will be validated during refactor execution.",
36
+ "Detection": "AUTO",
37
+ "TagResources": [
38
+ {
39
+ "Key": "aws:cloudformation:stack-name",
40
+ "Value": "Stack2"
41
+ },
42
+ {
43
+ "Key": "aws:cloudformation:logical-id",
44
+ "Value": "MyFunction"
45
+ },
46
+ {
47
+ "Key": "aws:cloudformation:stack-id",
48
+ "Value": "arn:aws:cloudformation:us-east-1:123456789012:stack/Stack2/5da91650-94b1-11f0-81cf-0a23500e151b"
49
+ }
50
+ ],
51
+ "UntagResources": [
52
+ "aws:cloudformation:stack-name",
53
+ "aws:cloudformation:logical-id",
54
+ "aws:cloudformation:stack-id"
55
+ ],
56
+ "ResourceMapping": {
57
+ "Source": {
58
+ "StackName": "arn:aws:cloudformation:us-east-1:123456789012:stack/Stack1/3e6a1ff0-94b1-11f0-aa6f-0a88d2e03acf",
59
+ "LogicalResourceId": "MyFunction"
60
+ },
61
+ "Destination": {
62
+ "StackName": "arn:aws:cloudformation:us-east-1:123456789012:stack/Stack2/5da91650-94b1-11f0-81cf-0a23500e151b",
63
+ "LogicalResourceId": "MyFunction"
64
+ }
65
+ }
66
+ }
67
+ ]
68
+ }
69
+
70
+
71
+ For more information, see `Stack refactoring <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stack-refactoring.html>`__ in the *AWS CloudFormation User Guide*.
@@ -0,0 +1,14 @@
1
+ **To start a resource scan**
2
+
3
+ The following ``start-resource-scan`` example starts a resource scan that scans all existing resources in the current account and Region. ::
4
+
5
+ aws cloudformation start-resource-scan
6
+
7
+ Output::
8
+
9
+ {
10
+ "ResourceScanId":
11
+ "arn:aws:cloudformation:us-east-1:123456789012:resourceScan/0a699f15-489c-43ca-a3ef-3e6ecfa5da60"
12
+ }
13
+
14
+ For more information, see `Start a resource scan with CloudFormation IaC generator <https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/iac-generator-start-resource-scan.html>`__ in the *AWS CloudFormation User Guide*.
@@ -1,4 +1,4 @@
1
- **To create a data store**
1
+ **Example 1: To create a data store**
2
2
 
3
3
  The following ``create-datastore`` code example creates a data store with the name ``my-datastore``.
4
4
  When you create a datastore without specifying a ``--lossless-storage-format``, AWS HealthImaging defaults to HTJ2K (High Throughput JPEG 2000). ::
@@ -13,7 +13,7 @@ Output::
13
13
  "datastoreStatus": "CREATING"
14
14
  }
15
15
 
16
- **To create a data store with JPEG 2000 Lossless storage format**
16
+ **Example 2: To create a data store with JPEG 2000 Lossless storage format**
17
17
 
18
18
  A data store configured with JPEG 2000 Lossless storage format will transcode and persist lossless image frames in JPEG 2000 format. Image frames can then be retrieved in
19
19
  JPEG 2000 Lossless without transcoding. The following ``create-datastore`` code example creates a data store configured for JPEG 2000 Lossless storage format with the name ``my-datastore``. ::
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.44.2
3
+ Version: 1.44.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
@@ -24,7 +24,7 @@ Classifier: Programming Language :: Python :: 3.13
24
24
  Classifier: Programming Language :: Python :: 3.14
25
25
  Requires-Python: >= 3.9
26
26
  License-File: LICENSE.txt
27
- Requires-Dist: botocore (==1.42.12)
27
+ Requires-Dist: botocore (==1.42.14)
28
28
  Requires-Dist: docutils (<=0.19,>=0.18.1)
29
29
  Requires-Dist: s3transfer (<0.17.0,>=0.16.0)
30
30
  Requires-Dist: PyYAML (<6.1,>=3.10)
@@ -1,4 +1,4 @@
1
- awscli/__init__.py,sha256=4lUyeb2-Nff_DogQKmV45JntqL-7nnYcJxAgJqRs6Ts,1533
1
+ awscli/__init__.py,sha256=Kvh9mlYECR_dDj_7k8HgHo67RcVIo8dPbGG2tDZJOk4,1533
2
2
  awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
3
3
  awscli/alias.py,sha256=gB5jGInOl97UbgwGuKCjR_a_VudK0lAV1W6U_zeetZA,11348
4
4
  awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
@@ -86,7 +86,7 @@ awscli/customizations/cloudformation/yamlhelper.py,sha256=PwSRzdpL2lOhhwlnmtLCp3
86
86
  awscli/customizations/cloudtrail/__init__.py,sha256=6IMtaLoCrMMf1LdsmLLp5Q-uLeH_hpyCHIH1o2boYPQ,1337
87
87
  awscli/customizations/cloudtrail/subscribe.py,sha256=kvpviUZqm9E4x5RSSY2UVpM5UHStSA5cCjogF1ap1iA,13742
88
88
  awscli/customizations/cloudtrail/utils.py,sha256=dd-2CmiEbqXatOYOG5W7L-rpuxTatijdMJ-qmASrCwI,1224
89
- awscli/customizations/cloudtrail/validation.py,sha256=vUDdPOIcpoN9D8uKMcWkEGLePf_sa5k0NExTnrghs9g,40242
89
+ awscli/customizations/cloudtrail/validation.py,sha256=hEl8SO5RRLaCYh4nNyQu-6iviTasyB3XtGKDbqcNuVY,41098
90
90
  awscli/customizations/codeartifact/__init__.py,sha256=dgIMOQhLehpxG8pAzs8XWB3J9HGD9ZxLYLJu-UVV0wo,334
91
91
  awscli/customizations/codeartifact/login.py,sha256=h_rH0-HzvbX5ri48IZVLA-64iROm0A1HE371WyXlwcY,27648
92
92
  awscli/customizations/codedeploy/__init__.py,sha256=FT9vGCIrGANuGV5vZ8j_0DljBF6ocxqokqBGzPqFCio,565
@@ -763,11 +763,14 @@ awscli/examples/cloudformation/batch-describe-type-configurations.rst,sha256=ZL5
763
763
  awscli/examples/cloudformation/cancel-update-stack.rst,sha256=iXh30epVbKsksPDXoHLeoFQ5JMksU12FH48oflQ3BYU,217
764
764
  awscli/examples/cloudformation/continue-update-rollback.rst,sha256=ZMhu63rYhTlTMBjLu7DuKEMh1MzzF_9t_sKn51BQt1o,276
765
765
  awscli/examples/cloudformation/create-change-set.rst,sha256=s1MSdjdw4YCeBQCvhFY1eyG9tqCLbyuZ3m23G_Qp9aY,766
766
+ awscli/examples/cloudformation/create-generated-template.rst,sha256=2jhaIb4QyRzM21BdZXKFZRYRcFIhOBXJOCcHZyX1E98,1722
766
767
  awscli/examples/cloudformation/create-stack-instances.rst,sha256=gKIqXy8ulNPwAOeNENLXe1F3O85VNIwFSu5z5NBnbW8,700
768
+ awscli/examples/cloudformation/create-stack-refactor.rst,sha256=3PGDpJ6s78kMrE5cyw_nX_LgZ3-GRJo260rimpX5fVk,658
767
769
  awscli/examples/cloudformation/create-stack-set.rst,sha256=82JxJAgETgM66X3ooHugVMZAnwrCn_kH2KwIiPzJZZ4,591
768
770
  awscli/examples/cloudformation/create-stack.rst,sha256=humDEb33XPY_9TU6Geu-WOCHZ5Rk9ZZSP0Zj0kkVujA,710
769
771
  awscli/examples/cloudformation/deactivate-type.rst,sha256=9k99N_Wv6gah62NGdu0gUoxQT0TLBomSOahneSi-sYw,535
770
772
  awscli/examples/cloudformation/delete-change-set.rst,sha256=_m2-Hk5Ut2LcuGucGZyLz-4j_k4rln9jI4Mki4C5_9c,638
773
+ awscli/examples/cloudformation/delete-generated-template.rst,sha256=IqwgnZOJbY-vD5D235t1JRWS4091rs0xNFO2TpNZymU,453
771
774
  awscli/examples/cloudformation/delete-stack-instances.rst,sha256=jReVOjh3C2ASdJ_o26uyEwLoBFDDeEbeYIQjHn4dQWQ,548
772
775
  awscli/examples/cloudformation/delete-stack-set.rst,sha256=FzjvhUbleFfrfwE0nhvGuLvt7nUFJFBeb2bb6oj0vps,328
773
776
  awscli/examples/cloudformation/delete-stack.rst,sha256=eCeyw4KK2kd6KeBnaHuMbFKnv1Ro4MmWfRR1xP_ucuY,203
@@ -775,10 +778,13 @@ awscli/examples/cloudformation/deploy.rst,sha256=ScCk6_Zlkz9zeJYj-eN14Wt0HX_TfpW
775
778
  awscli/examples/cloudformation/deregister-type.rst,sha256=7vxUxiDu10RZAB1fLPiBN9a9H4hAZUWwyhap3ExIdjs,583
776
779
  awscli/examples/cloudformation/describe-account-limits.rst,sha256=Ok-FBdlfdrjzhRATgKILu6UPY3sgVSCIsChkGZfDR5o,576
777
780
  awscli/examples/cloudformation/describe-change-set.rst,sha256=kMIigrByCeO8q1jWMnChs3gB_Kwci2j1ToutRt0YTaA,2363
781
+ awscli/examples/cloudformation/describe-generated-template.rst,sha256=eEk_OEDu-LCVGu2AydCRsaU7S4luwvowmvHnrp6tPck,2391
778
782
  awscli/examples/cloudformation/describe-publisher.rst,sha256=N9haVyCFJZeAKjz_SGMe8jrmrjT5qeghzk5OtkF-_b0,751
783
+ awscli/examples/cloudformation/describe-resource-scan.rst,sha256=uYKT2wYhoKuvoyTEnCvBmC0gRSa8d8eRWx2nTl8j7xs,1587
779
784
  awscli/examples/cloudformation/describe-stack-drift-detection-status.rst,sha256=_htysZzfqc3UScZfdNeTxIF9uLOsLNzwTib-8m33Pxs,773
780
785
  awscli/examples/cloudformation/describe-stack-events.rst,sha256=R653lU52444tdrSqBoIerZWkfnQnmoaCGA2xZzOlb64,1679
781
786
  awscli/examples/cloudformation/describe-stack-instance.rst,sha256=qlBqxl0jNTVV7GP4oPt7o1K370tCUHobQCgFt2l4RT4,1304
787
+ awscli/examples/cloudformation/describe-stack-refactor.rst,sha256=mb12wcEF7wGsfJRZT9coa-CU4yZnYAJQ3CFuLW2C67o,886
782
788
  awscli/examples/cloudformation/describe-stack-resource-drifts.rst,sha256=3JMANAk8SSixakVzs4ze3pXSV43Uq9F0OK2UCagt_yc,2337
783
789
  awscli/examples/cloudformation/describe-stack-resource.rst,sha256=4BKJOYcb5RGzVE6f-_UdsZTc0feheQ3mdFORRGiVtm0,958
784
790
  awscli/examples/cloudformation/describe-stack-resources.rst,sha256=KOzwcdupPsXqgTBGwD0x5NrNZXjTVQ7FKmwBTr4nXJw,2130
@@ -792,13 +798,18 @@ awscli/examples/cloudformation/detect-stack-resource-drift.rst,sha256=Bzs362f8L_
792
798
  awscli/examples/cloudformation/detect-stack-set-drift.rst,sha256=PhmaeHlQ0VL5MIS4wX9N7Tud3TjtUmi02xBeZkb9xTk,740
793
799
  awscli/examples/cloudformation/estimate-template-cost.rst,sha256=jARDzPPwifNOvsqZ5WrIijfl-b9u0-7D0CHglK_ed3Q,419
794
800
  awscli/examples/cloudformation/execute-change-set.rst,sha256=Z4hjJef5D-36Y-WX-EGuHCTo3gCr4QbXNT65tOgot3c,567
801
+ awscli/examples/cloudformation/execute-stack-refactor.rst,sha256=YecjIPujSMknQrqXvBUweN92mPJAZuCMPxL7NFCaZvM,498
795
802
  awscli/examples/cloudformation/get-stack-policy.rst,sha256=VNHvUj5ZYLkimkjGd1AJpnfbGCtiVtBDhYRf3eGJ3kg,659
796
803
  awscli/examples/cloudformation/get-template-summary.rst,sha256=Bob7igmjmuEE7n9EzIARCIyR-2G65PYjc65bCLBnKzY,736
797
804
  awscli/examples/cloudformation/get-template.rst,sha256=yN14tJuVP4GVwvo1F29rEgxXDPVe-cqT_V4LXbstlME,1077
798
805
  awscli/examples/cloudformation/list-change-sets.rst,sha256=-QK9cyRZwmPq3qo-k5QxdIPDxEQHEfXCGxAaETdDbVg,823
799
806
  awscli/examples/cloudformation/list-exports.rst,sha256=liuNfh-_IVfXeT4G-YIaGarC-oMSqaRWyRi8CWmPRlc,1047
807
+ awscli/examples/cloudformation/list-generated-templates.rst,sha256=AJw8hwDMHeHrYCVJeJwl1OqyLZt8eabfJXyH-9cMHO4,1947
800
808
  awscli/examples/cloudformation/list-imports.rst,sha256=HhCSy9GjPeO6F5zDAH97HVRxR_8fjx-6jjeAVFzjTpM,365
809
+ awscli/examples/cloudformation/list-resource-scan-related-resources.rst,sha256=DU7kgvahWzrmvNlO1jGUNet26_yVi-KsFuKy5QMlujs,1685
810
+ awscli/examples/cloudformation/list-resource-scan-resources.rst,sha256=e26-wLPHQPU2heMWajhuthFqRSLupWcoOwtpIuqk1Ro,1217
801
811
  awscli/examples/cloudformation/list-stack-instances.rst,sha256=2QfOOh9Isc3WBNt-3_5eJ1HQEbExqnv1j29cDnyk0OE,1702
812
+ awscli/examples/cloudformation/list-stack-refactor-actions.rst,sha256=smMezURjUt3T_EFM17ynJbugwJjH73E4yGKKxcrxQ3E,3125
802
813
  awscli/examples/cloudformation/list-stack-resources.rst,sha256=489xPd5WXyscePkZBWE_N4B04EeIXgwIrqGJzAfgs5s,1608
803
814
  awscli/examples/cloudformation/list-stack-set-operation-results.rst,sha256=sHuGXGjR5fFUCW8GAbaQwfMNjw6-CnooTf1BrULAYA8,1161
804
815
  awscli/examples/cloudformation/list-stack-set-operations.rst,sha256=dz-VMVJAcODj7mOfSKLtWCvCGQw_4nLZhPKbxmaYLiE,932
@@ -815,6 +826,7 @@ awscli/examples/cloudformation/set-stack-policy.rst,sha256=qg2j_Thy8QBPZF5cwg7eV
815
826
  awscli/examples/cloudformation/set-type-configuration.rst,sha256=0Dsr6B95UggDk-RELazxXLKjn32ahIAohf_mATwUIFg,797
816
827
  awscli/examples/cloudformation/set-type-default-version.rst,sha256=bGKsBSd_4e-AwV0KrjxbZoQ89LVoisdkI-uvUwhi0Vw,531
817
828
  awscli/examples/cloudformation/signal-resource.rst,sha256=aVK_Su_K4a2FGiWF7p8c5xgQhdgJrGheuUT3HC1313U,397
829
+ awscli/examples/cloudformation/start-resource-scan.rst,sha256=MqkhcR_FR0IBL-er-TCbPbS61DgdchW1GStlJ16z0UY,603
818
830
  awscli/examples/cloudformation/stop-stack-set-operation.rst,sha256=OFpCH7qMSCp12B8ubpN-Uydct3eBt4ATYX7B2a7wMPc,346
819
831
  awscli/examples/cloudformation/test-type.rst,sha256=KOX0QfTdHi7BIgM1F5fiOLwfruIw5HAJ9aL6U1EhS9g,682
820
832
  awscli/examples/cloudformation/update-stack-instances.rst,sha256=1EHdFpVH41a0Bgr5fzMRFMQe0UZOZQwbxN-shHQ2rtM,657
@@ -4280,7 +4292,7 @@ awscli/examples/mediatailor/get-playback-configuration.rst,sha256=BQv5afCCokimSK
4280
4292
  awscli/examples/mediatailor/list-playback-configurations.rst,sha256=jxInO0Lm1vCj_Ifc2L413z2SjRaw7SeQ_ZCx4TUwQ-8,3343
4281
4293
  awscli/examples/mediatailor/put-playback-configuration.rst,sha256=yWywM_zUGQz6Gb_-jM4jKKE-TBhFlp-2i0sgP7qbkRk,1715
4282
4294
  awscli/examples/medical-imaging/copy-image-set.rst,sha256=lOXuIVw0d47dD66bDHDwziZk_lT3nNHPpFQWtbH1i1U,4279
4283
- awscli/examples/medical-imaging/create-datastore.rst,sha256=oDPzKuIwmNLyyhggMkao4-JP_K6xa22EksK2Bhb5K8A,1353
4295
+ awscli/examples/medical-imaging/create-datastore.rst,sha256=e5rNdL1sk4DTr2PAKFnl1WKvkX932edufe-_t4Ec05U,1375
4284
4296
  awscli/examples/medical-imaging/delete-datastore.rst,sha256=YlqXZ6R0KD3tvBiAt2b97NE2neuQnVrbV57YSiAOggg,503
4285
4297
  awscli/examples/medical-imaging/delete-image-set.rst,sha256=7FQ4aJqZ_3rnk37tHTRCf_Oiv0dT8jTw6O_5v-hNMUQ,658
4286
4298
  awscli/examples/medical-imaging/get-datastore.rst,sha256=cSbJrgSHD5J3NKU0CpjzI6T1_yTGcoTvQi5W1w6a1t8,1755
@@ -6061,13 +6073,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
6061
6073
  awscli/topics/s3-config.rst,sha256=5EIVd4ggLBHtzjtHFvQp9hY415yMGZiG7S_rO9qy2t0,11663
6062
6074
  awscli/topics/s3-faq.rst,sha256=9qO0HFI6F9hx1wVEUDl8Jy6yoCUd9zbtv-Z0Re4dsiw,2934
6063
6075
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
6064
- awscli-1.44.2.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6065
- awscli-1.44.2.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6066
- awscli-1.44.2.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6067
- awscli-1.44.2.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6068
- awscli-1.44.2.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6069
- awscli-1.44.2.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6070
- awscli-1.44.2.dist-info/METADATA,sha256=w3Hv7GoDsCl4BrL1j1SlyUOCJWeZa6KwA234kBO3X_M,11200
6071
- awscli-1.44.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6072
- awscli-1.44.2.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6073
- awscli-1.44.2.dist-info/RECORD,,
6076
+ awscli-1.44.4.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6077
+ awscli-1.44.4.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6078
+ awscli-1.44.4.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6079
+ awscli-1.44.4.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6080
+ awscli-1.44.4.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6081
+ awscli-1.44.4.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6082
+ awscli-1.44.4.dist-info/METADATA,sha256=yBXF_jWk-g8HBFvRm369A2oVoOejweMkQjzmmdIk5W0,11200
6083
+ awscli-1.44.4.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6084
+ awscli-1.44.4.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6085
+ awscli-1.44.4.dist-info/RECORD,,
File without changes