awscli 1.37.1__py3-none-any.whl → 1.37.2__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.

Files changed (33) hide show
  1. awscli/__init__.py +1 -1
  2. awscli/examples/ec2/create-vpc-endpoint.rst +2 -2
  3. awscli/examples/healthlake/create-fhir-datastore.rst +35 -8
  4. awscli/examples/healthlake/delete-fhir-datastore.rst +7 -8
  5. awscli/examples/healthlake/describe-fhir-datastore.rst +20 -10
  6. awscli/examples/healthlake/describe-fhir-export-job.rst +11 -6
  7. awscli/examples/healthlake/describe-fhir-import-job.rst +5 -6
  8. awscli/examples/healthlake/list-fhir-datastores.rst +16 -16
  9. awscli/examples/healthlake/list-fhir-export-jobs.rst +22 -19
  10. awscli/examples/healthlake/list-fhir-import-jobs.rst +31 -18
  11. awscli/examples/healthlake/list-tags-for-resource.rst +4 -5
  12. awscli/examples/healthlake/start-fhir-export-job.rst +5 -5
  13. awscli/examples/healthlake/start-fhir-import-job.rst +7 -6
  14. awscli/examples/healthlake/tag-resource.rst +5 -6
  15. awscli/examples/healthlake/untag-resource.rst +5 -6
  16. awscli/examples/observabilityadmin/get-telemetry-evaluation-status-for-organization.rst +13 -0
  17. awscli/examples/observabilityadmin/get-telemetry-evaluation-status.rst +13 -0
  18. awscli/examples/observabilityadmin/list-resource-telemetry-for-organization.rst +43 -0
  19. awscli/examples/observabilityadmin/list-resource-telemetry.rst +29 -0
  20. awscli/examples/observabilityadmin/start-telemetry-evaluation-for-organization.rst +9 -0
  21. awscli/examples/observabilityadmin/start-telemetry-evaluation.rst +9 -0
  22. awscli/examples/observabilityadmin/stop-telemetry-evaluation-for-organization.rst +9 -0
  23. awscli/examples/observabilityadmin/stop-telemetry-evaluation.rst +9 -0
  24. {awscli-1.37.1.dist-info → awscli-1.37.2.dist-info}/METADATA +2 -2
  25. {awscli-1.37.1.dist-info → awscli-1.37.2.dist-info}/RECORD +33 -25
  26. {awscli-1.37.1.data → awscli-1.37.2.data}/scripts/aws +0 -0
  27. {awscli-1.37.1.data → awscli-1.37.2.data}/scripts/aws.cmd +0 -0
  28. {awscli-1.37.1.data → awscli-1.37.2.data}/scripts/aws_bash_completer +0 -0
  29. {awscli-1.37.1.data → awscli-1.37.2.data}/scripts/aws_completer +0 -0
  30. {awscli-1.37.1.data → awscli-1.37.2.data}/scripts/aws_zsh_completer.sh +0 -0
  31. {awscli-1.37.1.dist-info → awscli-1.37.2.dist-info}/LICENSE.txt +0 -0
  32. {awscli-1.37.1.dist-info → awscli-1.37.2.dist-info}/WHEEL +0 -0
  33. {awscli-1.37.1.dist-info → awscli-1.37.2.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.37.1'
21
+ __version__ = '1.37.2'
22
22
 
23
23
  #
24
24
  # Get our data path to be added to botocore's search path
@@ -86,7 +86,7 @@ For more information, see `Creating an interface endpoint <https://docs.aws.amaz
86
86
 
87
87
  **Example 3: To create a Gateway Load Balancer endpoint**
88
88
 
89
- The following ``create-vpc-endpoint`` example creates a Gateway Load Balancer endpoint between VPC ``vpc-111122223333aabbc`` and and a service that is configured using a Gateway Load Balancer. ::
89
+ The following ``create-vpc-endpoint`` example creates a Gateway Load Balancer endpoint between VPC ``vpc-111122223333aabbc`` and a service that is configured using a Gateway Load Balancer. ::
90
90
 
91
91
  aws ec2 create-vpc-endpoint \
92
92
  --service-name com.amazonaws.vpce.us-east-1.vpce-svc-123123a1c43abc123 \
@@ -115,4 +115,4 @@ Output::
115
115
  }
116
116
  }
117
117
 
118
- For more information, see `Gateway Load Balancer endpoints <https://docs.aws.amazon.com/vpc/latest/privatelink/vpce-gateway-load-balancer.html>`__ in the *User Guide for AWSPrivateLink*.
118
+ For more information, see `Gateway Load Balancer endpoints <https://docs.aws.amazon.com/vpc/latest/privatelink/vpce-gateway-load-balancer.html>`__ in the *User Guide for AWSPrivateLink*.
@@ -1,20 +1,47 @@
1
- **To create a FHIR Data Store.**
1
+ **Example 1: Create a SigV4-enabled HealthLake data store**
2
2
 
3
- The following ``create-fhir-datastore`` example demonstrates how to create a new Data Store in Amazon HealthLake. ::
3
+ The following ``create-fhir-datastore`` example demonstrates how to create a new data store in AWS HealthLake. ::
4
4
 
5
5
  aws healthlake create-fhir-datastore \
6
- --region us-east-1 \
7
- --datastore-type-version R4 \
8
6
  --datastore-type-version R4 \
9
7
  --datastore-name "FhirTestDatastore"
10
8
 
11
9
  Output::
12
10
 
13
11
  {
14
- "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/(Datastore ID)/r4/",
15
- "DatastoreArn": "arn:aws:healthlake:us-east-1:(AWS Account ID):datastore/(Datastore ID)",
12
+ "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/(Data store ID)/r4/",
13
+ "DatastoreArn": "arn:aws:healthlake:us-east-1:(AWS Account ID):datastore/(Data store ID)",
14
+ "DatastoreStatus": "CREATING",
15
+ "DatastoreId": "(Data store ID)"
16
+ }
17
+
18
+ **Example 2: Create a SMART on FHIR-enabled HealthLake data store**
19
+
20
+ The following ``create-fhir-datastore`` example demonstrates how to create a new SMART on FHIR-enabled data store in AWS HealthLake. ::
21
+
22
+ aws healthlake create-fhir-datastore \
23
+ --datastore-name "your-data-store-name" \
24
+ --datastore-type-version R4 \
25
+ --preload-data-config PreloadDataType="SYNTHEA" \
26
+ --sse-configuration '{ "KmsEncryptionConfig": { "CmkType": "CUSTOMER_MANAGED_KMS_KEY", "KmsKeyId": "arn:aws:kms:us-east-1:your-account-id:key/your-key-id" } }' \
27
+ --identity-provider-configuration file://identity_provider_configuration.json
28
+
29
+ Contents of ``identity_provider_configuration.json``::
30
+
31
+ {
32
+ "AuthorizationStrategy": "SMART_ON_FHIR_V1",
33
+ "FineGrainedAuthorizationEnabled": true,
34
+ "IdpLambdaArn": "arn:aws:lambda:your-region:your-account-id:function:your-lambda-name",
35
+ "Metadata": "{\"issuer\":\"https://ehr.example.com\", \"jwks_uri\":\"https://ehr.example.com/.well-known/jwks.json\",\"authorization_endpoint\":\"https://ehr.example.com/auth/authorize\",\"token_endpoint\":\"https://ehr.token.com/auth/token\",\"token_endpoint_auth_methods_supported\":[\"client_secret_basic\",\"foo\"],\"grant_types_supported\":[\"client_credential\",\"foo\"],\"registration_endpoint\":\"https://ehr.example.com/auth/register\",\"scopes_supported\":[\"openId\",\"profile\",\"launch\"],\"response_types_supported\":[\"code\"],\"management_endpoint\":\"https://ehr.example.com/user/manage\",\"introspection_endpoint\":\"https://ehr.example.com/user/introspect\",\"revocation_endpoint\":\"https://ehr.example.com/user/revoke\",\"code_challenge_methods_supported\":[\"S256\"],\"capabilities\":[\"launch-ehr\",\"sso-openid-connect\",\"client-public\"]}"
36
+ }
37
+
38
+ Output::
39
+
40
+ {
41
+ "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/(Data store ID)/r4/",
42
+ "DatastoreArn": "arn:aws:healthlake:us-east-1:(AWS Account ID):datastore/(Data store ID)",
16
43
  "DatastoreStatus": "CREATING",
17
- "DatastoreId": "(Datastore ID)"
44
+ "DatastoreId": "(Data store ID)"
18
45
  }
19
46
 
20
- For more information, see `Creating and monitoring a FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>`__ in the *Amazon HealthLake Developer Guide*.
47
+ For more information, see `Creating and monitoring a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>`__ in the *AWS HealthLake Developer Guide*.
@@ -1,18 +1,17 @@
1
- **To delete a FHIR Data Store**
1
+ **To delete a FHIR data store**
2
2
 
3
- The following ``delete-fhir-datastore`` example demonstrates how to delete a Data Store and all of its contents in Amazon HealthLake. ::
3
+ The following ``delete-fhir-datastore`` example demonstrates how to delete a data store and all of its contents in AWS HealthLake. ::
4
4
 
5
5
  aws healthlake delete-fhir-datastore \
6
- --datastore-id (Data Store ID) \
7
- --region us-east-1
6
+ --datastore-id (Data store ID)
8
7
 
9
8
  Output::
10
9
 
11
10
  {
12
- "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/(Datastore ID)/r4/",
13
- "DatastoreArn": "arn:aws:healthlake:us-east-1:(AWS Account ID):datastore/(Datastore ID)",
11
+ "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/(Data store ID)/r4/",
12
+ "DatastoreArn": "arn:aws:healthlake:us-east-1:(AWS Account ID):datastore/(Data store ID)",
14
13
  "DatastoreStatus": "DELETING",
15
- "DatastoreId": "(Datastore ID)"
14
+ "DatastoreId": "(Data store ID)"
16
15
  }
17
16
 
18
- For more information, see `Creating and monitoring a FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>` in the *Amazon HealthLake Developer Guide*.
17
+ For more information, see `Creating and monitoring a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>` in the *AWS HealthLake Developer Guide*.
@@ -1,10 +1,9 @@
1
- **To describe a FHIR Data Store**
1
+ **To describe a FHIR data store**
2
2
 
3
- The following ``describe-fhir-datastore`` example demonstrates how to find the properties of a Data Store in Amazon HealthLake. ::
3
+ The following ``describe-fhir-datastore`` example demonstrates how to find the properties of a data store in AWS HealthLake. ::
4
4
 
5
5
  aws healthlake describe-fhir-datastore \
6
- --datastore-id "1f2f459836ac6c513ce899f9e4f66a59" \
7
- --region us-east-1
6
+ --datastore-id "1f2f459836ac6c513ce899f9e4f66a59"
8
7
 
9
8
 
10
9
  Output::
@@ -14,13 +13,24 @@ Output::
14
13
  "PreloadDataConfig": {
15
14
  "PreloadDataType": "SYNTHEA"
16
15
  },
17
- "DatastoreName": "FhirTestDatastore",
18
- "DatastoreArn": "arn:aws:healthlake:us-east-1:(AWS Account ID):datastore/(Datastore ID)",
19
- "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/(Datastore ID)/r4/",
20
- "DatastoreStatus": "CREATING",
16
+ "SseConfiguration": {
17
+ "KmsEncryptionConfig": {
18
+ "CmkType": "CUSTOMER_MANAGED_KMS_KEY",
19
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111"
20
+ }
21
+ },
22
+ "DatastoreName": "Demo",
23
+ "DatastoreArn": "arn:aws:healthlake:us-east-1:<AWS Account ID>:datastore/<Data store ID>",
24
+ "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/<Data store ID>/r4/",
25
+ "DatastoreStatus": "ACTIVE",
21
26
  "DatastoreTypeVersion": "R4",
22
- "DatastoreId": "(Datastore ID)"
27
+ "CreatedAt": 1603761064.881,
28
+ "DatastoreId": "<Data store ID>",
29
+ "IdentityProviderConfiguration": {
30
+ "AuthorizationStrategy": "AWS_AUTH",
31
+ "FineGrainedAuthorizationEnabled": false
32
+ }
23
33
  }
24
34
  }
25
35
 
26
- For more information, see `Creating and monitoring a FHIR Data Stores <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>`__ in the *Amazon HealthLake Developer Guide*.
36
+ For more information, see `Creating and monitoring a FHIR data stores <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>`__ in the *AWS HealthLake Developer Guide*.
@@ -1,9 +1,9 @@
1
1
  **To describe a FHIR export job**
2
2
 
3
- The following ``describe-fhir-export-job`` example shows how to find the properties of a FHIR export job in Amazon HealthLake. ::
3
+ The following ``describe-fhir-export-job`` example shows how to find the properties of a FHIR export job in AWS HealthLake. ::
4
4
 
5
5
  aws healthlake describe-fhir-export-job \
6
- --datastore-id (Datastore ID) \
6
+ --datastore-id (Data store ID) \
7
7
  --job-id 9b9a51943afaedd0a8c0c26c49135a31
8
8
 
9
9
  Output::
@@ -13,12 +13,17 @@ Output::
13
13
  "DataAccessRoleArn": "arn:aws:iam::(AWS Account ID):role/(Role Name)",
14
14
  "JobStatus": "IN_PROGRESS",
15
15
  "JobId": "9009813e9d69ba7cf79bcb3468780f16",
16
- "SubmitTime": 1609175692.715,
16
+ "SubmitTime": "2024-11-20T11:31:46.672000-05:00",
17
+ "EndTime": "2024-11-20T11:34:01.636000-05:00",
17
18
  "OutputDataConfig": {
18
- "S3Uri": "s3://(Bucket Name)/(Prefix Name)/59593b2d0367ce252b5e66bf5fd6b574-FHIR_EXPORT-9009813e9d69ba7cf79bcb3468780f16/"
19
+ "S3Configuration": {
20
+ "S3Uri": "s3://(Bucket Name)/(Prefix Name)/",
21
+ "KmsKeyId": "arn:aws:kms:us-east-1:012345678910:key/d330e7fc-b56c-4216-a250-f4c43ef46e83"
22
+ }
23
+
19
24
  },
20
- "DatastoreId": "(Datastore ID)"
25
+ "DatastoreId": "(Data store ID)"
21
26
  }
22
27
  }
23
28
 
24
- For more information, see `Exporting files from a FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/export-datastore.html>`__ in the *Amazon HealthLake Developer Guide*.
29
+ For more information, see `Exporting files from a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/export-datastore.html>`__ in the *AWS HealthLake Developer Guide*.
@@ -1,11 +1,10 @@
1
1
  **To describe a FHIR import job**
2
2
 
3
- The following ``describe-fhir-import-job`` example shows how to learn the properties of a FHIR import job using Amazon HealthLake. ::
3
+ The following ``describe-fhir-import-job`` example shows how to learn the properties of a FHIR import job using AWS HealthLake. ::
4
4
 
5
5
  aws healthlake describe-fhir-import-job \
6
- --datastore-id (Datastore ID) \
7
- --job-id c145fbb27b192af392f8ce6e7838e34f \
8
- --region us-east-1
6
+ --datastore-id (Data store ID) \
7
+ --job-id c145fbb27b192af392f8ce6e7838e34f
9
8
 
10
9
  Output::
11
10
 
@@ -20,8 +19,8 @@ Output::
20
19
  "JobId": "c145fbb27b192af392f8ce6e7838e34f",
21
20
  "SubmitTime": 1606272542.161,
22
21
  "EndTime": 1606272609.497,
23
- "DatastoreId": "(Datastore ID)"
22
+ "DatastoreId": "(Data store ID)"
24
23
  }
25
24
  }
26
25
 
27
- For more information, see `Importing files to a FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/import-datastore.html>`__ in the *Amazon HealthLake Developer Guide*.
26
+ For more information, see `Importing files to a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/import-datastore.html>`__ in the *AWS HealthLake Developer Guide*.
@@ -1,9 +1,8 @@
1
- **To list FHIR Data Stores**
1
+ **To list FHIR data stores**
2
2
 
3
- The following ``list-fhir-datastores`` example shows to how to use the command and how users can filter results based on Data Store status in Amazon HealthLake. ::
3
+ The following ``list-fhir-datastores`` example shows to how to use the command and how users can filter results based on data store status in AWS HealthLake. ::
4
4
 
5
5
  aws healthlake list-fhir-datastores \
6
- --region us-east-1 \
7
6
  --filter DatastoreStatus=ACTIVE
8
7
 
9
8
  Output::
@@ -14,24 +13,25 @@ Output::
14
13
  "PreloadDataConfig": {
15
14
  "PreloadDataType": "SYNTHEA"
16
15
  },
17
- "DatastoreName": "FhirTestDatastore",
18
- "DatastoreArn": "arn:aws:healthlake:us-east-1:<AWS Account ID>:datastore/<Datastore ID>",
19
- "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/<Datastore ID>/r4/",
20
- "DatastoreStatus": "ACTIVE",
21
- "DatastoreTypeVersion": "R4",
22
- "CreatedAt": 1605574003.209,
23
- "DatastoreId": "<Datastore ID>"
24
- },
25
- {
16
+ "SseConfiguration": {
17
+ "KmsEncryptionConfig": {
18
+ "CmkType": "CUSTOMER_MANAGED_KMS_KEY",
19
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111"
20
+ }
21
+ },
26
22
  "DatastoreName": "Demo",
27
- "DatastoreArn": "arn:aws:healthlake:us-east-1:<AWS Account ID>:datastore/<Datastore ID>",
28
- "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/<Datastore ID>/r4/",
23
+ "DatastoreArn": "arn:aws:healthlake:us-east-1:<AWS Account ID>:datastore/<Data store ID>",
24
+ "DatastoreEndpoint": "https://healthlake.us-east-1.amazonaws.com/datastore/<Data store ID>/r4/",
29
25
  "DatastoreStatus": "ACTIVE",
30
26
  "DatastoreTypeVersion": "R4",
31
27
  "CreatedAt": 1603761064.881,
32
- "DatastoreId": "<Datastore ID>"
28
+ "DatastoreId": "<Data store ID>",
29
+ "IdentityProviderConfiguration": {
30
+ "AuthorizationStrategy": "AWS_AUTH",
31
+ "FineGrainedAuthorizationEnabled": false
32
+ }
33
33
  }
34
34
  ]
35
35
  }
36
36
 
37
- For more information, see `Creating and monitoring a FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>`__ in the *Amazon HealthLake Developer Guide*.
37
+ For more information, see `Creating and monitoring a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/working-with-FHIR-healthlake.html>`__ in the *AWS HealthLake Developer Guide*.
@@ -3,7 +3,7 @@
3
3
  The following ``list-fhir-export-jobs`` example shows how to use the command to view a list of export jobs associated with an account. ::
4
4
 
5
5
  aws healthlake list-fhir-export-jobs \
6
- --datastore-id (Datastore ID) \
6
+ --datastore-id (Data store ID) \
7
7
  --submitted-before (DATE like 2024-10-13T19:00:00Z)\
8
8
  --submitted-after (DATE like 2020-10-13T19:00:00Z )\
9
9
  --job-name "FHIR-EXPORT" \
@@ -13,23 +13,26 @@ The following ``list-fhir-export-jobs`` example shows how to use the command to
13
13
  Output::
14
14
 
15
15
  {
16
- "ExportJobProperties": {
17
- "OutputDataConfig": {
18
- "S3Uri": "s3://(Bucket Name)/(Prefix Name)/"
19
- "S3Configuration": {
20
- "S3Uri": "s3://(Bucket Name)/(Prefix Name)/",
21
- "KmsKeyId" : "(KmsKey Id)"
22
- },
23
- },
24
- "DataAccessRoleArn": "arn:aws:iam::(AWS Account ID):role/(Role Name)",
25
- "JobStatus": "COMPLETED",
26
- "JobId": "c145fbb27b192af392f8ce6e7838e34f",
27
- "JobName" "FHIR-EXPORT",
28
- "SubmitTime": 1606272542.161,
29
- "EndTime": 1606272609.497,
30
- "DatastoreId": "(Datastore ID)"
31
- }
16
+ "ExportJobPropertiesList": [
17
+ {
18
+ "ExportJobProperties": {
19
+ "OutputDataConfig": {
20
+ "S3Uri": "s3://(Bucket Name)/(Prefix Name)/",
21
+ "S3Configuration": {
22
+ "S3Uri": "s3://(Bucket Name)/(Prefix Name)/",
23
+ "KmsKeyId": "(KmsKey Id)"
24
+ }
25
+ },
26
+ "DataAccessRoleArn": "arn:aws:iam::(AWS Account ID):role/(Role Name)",
27
+ "JobStatus": "COMPLETED",
28
+ "JobId": "c145fbb27b192af392f8ce6e7838e34f",
29
+ "JobName": "FHIR-EXPORT",
30
+ "SubmitTime": "2024-11-20T11:31:46.672000-05:00",
31
+ "EndTime": "2024-11-20T11:34:01.636000-05:00",
32
+ "DatastoreId": "(Data store ID)"
33
+ }
34
+ }
35
+ ]
32
36
  }
33
- "NextToken": String
34
37
 
35
- For more information, see `Exporting files from a FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/export-datastore.html>`__ in the Amazon HealthLake Developer Guide.
38
+ For more information, see `Exporting files from a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/export-datastore.html>`__ in the AWS HealthLake Developer Guide.
@@ -3,7 +3,7 @@
3
3
  The following ``list-fhir-import-jobs`` example shows how to use the command to view a list of all import jobs associated with an account. ::
4
4
 
5
5
  aws healthlake list-fhir-import-jobs \
6
- --datastore-id (Datastore ID) \
6
+ --datastore-id (Data store ID) \
7
7
  --submitted-before (DATE like 2024-10-13T19:00:00Z) \
8
8
  --submitted-after (DATE like 2020-10-13T19:00:00Z ) \
9
9
  --job-name "FHIR-IMPORT" \
@@ -13,23 +13,36 @@ The following ``list-fhir-import-jobs`` example shows how to use the command to
13
13
  Output::
14
14
 
15
15
  {
16
- "ImportJobProperties": {
17
- "OutputDataConfig": {
18
- "S3Uri": "s3://(Bucket Name)/(Prefix Name)/",
16
+ "ImportJobPropertiesList": [
17
+ {
18
+ "JobId": "c0fddbf76f238297632d4aebdbfc9ddf",
19
+ "JobStatus": "COMPLETED",
20
+ "SubmitTime": "2024-11-20T10:08:46.813000-05:00",
21
+ "EndTime": "2024-11-20T10:10:09.093000-05:00",
22
+ "DatastoreId": "(Data store ID)",
23
+ "InputDataConfig": {
24
+ "S3Uri": "s3://(Bucket Name)/(Prefix Name)/"
25
+ },
26
+ "JobOutputDataConfig": {
19
27
  "S3Configuration": {
20
- "S3Uri": "s3://(Bucket Name)/(Prefix Name)/",
21
- "KmsKeyId" : "(KmsKey Id)"
22
- },
23
- },
24
- "DataAccessRoleArn": "arn:aws:iam::(AWS Account ID):role/(Role Name)",
25
- "JobStatus": "COMPLETED",
26
- "JobId": "c145fbb27b192af392f8ce6e7838e34f",
27
- "JobName" "FHIR-IMPORT",
28
- "SubmitTime": 1606272542.161,
29
- "EndTime": 1606272609.497,
30
- "DatastoreId": "(Datastore ID)"
31
- }
28
+ "S3Uri": "s3://(Bucket Name)/import/6407b9ae4c2def3cb6f1a46a0c599ec0-FHIR_IMPORT-c0fddbf76f238297632d4aebdbfc9ddf/",
29
+ "KmsKeyId": "arn:aws:kms:us-east-1:123456789012:key/b7f645cb-e564-4981-8672-9e012d1ff1a0"
30
+ }
31
+ },
32
+ "JobProgressReport": {
33
+ "TotalNumberOfScannedFiles": 1,
34
+ "TotalSizeOfScannedFilesInMB": 0.001798,
35
+ "TotalNumberOfImportedFiles": 1,
36
+ "TotalNumberOfResourcesScanned": 1,
37
+ "TotalNumberOfResourcesImported": 1,
38
+ "TotalNumberOfResourcesWithCustomerError": 0,
39
+ "TotalNumberOfFilesReadWithCustomerError": 0,
40
+ "Throughput": 0.0
41
+ },
42
+ "DataAccessRoleArn": "arn:aws:iam::(AWS Account ID):role/(Role Name)"
43
+ }
44
+ ]
32
45
  }
33
- "NextToken": String
34
46
 
35
- For more information, see `Importing files to FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/import-examples.html>`__ in the Amazon HealthLake Developer Guide.
47
+
48
+ For more information, see `Importing files to FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/import-examples.html>`__ in the AWS HealthLake Developer Guide.
@@ -1,10 +1,9 @@
1
- **To list tags for a Data Store**
1
+ **To list tags for a data store**
2
2
 
3
- The following ``list-tags-for-resource`` example lists the tags associated with the specified Data Store.::
3
+ The following ``list-tags-for-resource`` example lists the tags associated with the specified data store.::
4
4
 
5
5
  aws healthlake list-tags-for-resource \
6
- --resource-arn "arn:aws:healthlake:us-east-1:674914422125:datastore/fhir/0725c83f4307f263e16fd56b6d8ebdbe" \
7
- --region us-east-1
6
+ --resource-arn "arn:aws:healthlake:us-east-1:123456789012:datastore/fhir/0725c83f4307f263e16fd56b6d8ebdbe"
8
7
 
9
8
  Output::
10
9
 
@@ -15,4 +14,4 @@ Output::
15
14
  }
16
15
  }
17
16
 
18
- For more information, see `Tagging resources in Amazon HealthLake <https://docs.aws.amazon.com/healthlake/latest/devguide/tagging.html>`__ in the Amazon HealthLake Developer Guide.
17
+ For more information, see `Tagging resources in AWS HealthLake <https://docs.aws.amazon.com/healthlake/latest/devguide/tagging.html>`__ in the AWS HealthLake Developer Guide.
@@ -1,18 +1,18 @@
1
1
  **To start a FHIR export job**
2
2
 
3
- The following ``start-fhir-export-job`` example shows how to start a FHIR export job using Amazon HealthLake. ::
3
+ The following ``start-fhir-export-job`` example shows how to start a FHIR export job using AWS HealthLake. ::
4
4
 
5
5
  aws healthlake start-fhir-export-job \
6
- --output-data-config S3Uri="s3://(Bucket Name)/(Prefix Name)/" \
7
- --datastore-id (Datastore ID) \
6
+ --output-data-config '{"S3Configuration": {"S3Uri":"s3://(Bucket Name)/(Prefix Name)/","KmsKeyId":"arn:aws:kms:us-east-1:012345678910:key/d330e7fc-b56c-4216-a250-f4c43ef46e83"}}' \
7
+ --datastore-id (Data store ID) \
8
8
  --data-access-role-arn arn:aws:iam::(AWS Account ID):role/(Role Name)
9
9
 
10
10
  Output::
11
11
 
12
12
  {
13
- "DatastoreId": "(Datastore ID)",
13
+ "DatastoreId": "(Data store ID)",
14
14
  "JobStatus": "SUBMITTED",
15
15
  "JobId": "9b9a51943afaedd0a8c0c26c49135a31"
16
16
  }
17
17
 
18
- For more information, see `Exporting files from a FHIR Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/export-datastore.html>`__ in the *Amazon HealthLake Developer Guide*.
18
+ For more information, see `Exporting files from a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/export-datastore.html>`__ in the *AWS HealthLake Developer Guide*.
@@ -1,19 +1,20 @@
1
1
  **To start a FHIR import job**
2
2
 
3
- The following ``start-fhir-import-job`` example shows how to start a FHIR import job using Amazon HealthLake. ::
3
+ The following ``start-fhir-import-job`` example shows how to start a FHIR import job using AWS HealthLake. ::
4
4
 
5
5
  aws healthlake start-fhir-import-job \
6
6
  --input-data-config S3Uri="s3://(Bucket Name)/(Prefix Name)/" \
7
- --datastore-id (Datastore ID) \
8
- --data-access-role-arn "arn:aws:iam::(AWS Account ID):role/(Role Name)" \
9
- --region us-east-1
7
+ --job-output-data-config '{"S3Configuration": {"S3Uri":"s3://(Bucket Name)/(Prefix Name)/","KmsKeyId":"arn:aws:kms:us-east-1:012345678910:key/d330e7fc-b56c-4216-a250-f4c43ef46e83"}}' \
8
+ --datastore-id (Data store ID) \
9
+ --data-access-role-arn "arn:aws:iam::(AWS Account ID):role/(Role Name)"
10
10
 
11
11
  Output::
12
12
 
13
13
  {
14
- "DatastoreId": "(Datastore ID)",
14
+ "DatastoreId": "(Data store ID)",
15
15
  "JobStatus": "SUBMITTED",
16
16
  "JobId": "c145fbb27b192af392f8ce6e7838e34f"
17
17
  }
18
18
 
19
- For more information, see `Importing files to a FHIR Data Store 'https://docs.aws.amazon.com/healthlake/latest/devguide/import-datastore.html`__ in the *Amazon HeatlhLake Developer Guide*.
19
+ For more information, see `Importing files to a FHIR data store <https://docs.aws.amazon.com/healthlake/latest/devguide/import-datastore.html>`__ in the *AWS HealthLake Developer Guide*.
20
+
@@ -1,12 +1,11 @@
1
- **To add a tag to Data Store**
1
+ **To add a tag to data store**
2
2
 
3
- The following ``tag-resource`` example shows how to add a tag to a Data Store. ::
3
+ The following ``tag-resource`` example shows how to add a tag to a data store. ::
4
4
 
5
5
  aws healthlake tag-resource \
6
- --resource-arn "arn:aws:healthlake:us-east-1:691207106566:datastore/fhir/0725c83f4307f263e16fd56b6d8ebdbe" \
7
- --tags '[{"Key": "key1", "Value": "value1"}]' \
8
- --region us-east-1
6
+ --resource-arn "arn:aws:healthlake:us-east-1:123456789012:datastore/fhir/0725c83f4307f263e16fd56b6d8ebdbe" \
7
+ --tags '[{"Key": "key1", "Value": "value1"}]'
9
8
 
10
9
  This command produces no output.
11
10
 
12
- For more information, see 'Adding a tag to a Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/add-a-tag.html>'__ in the *Amazon HealthLake Developer Guide.*.
11
+ For more information, see `Adding a tag to a data store <https://docs.aws.amazon.com/healthlake/latest/devguide/add-a-tag.html>`__ in the *AWS HealthLake Developer Guide.*.
@@ -1,12 +1,11 @@
1
- **To remove tags from a Data Store.**
1
+ **To remove tags from a data store.**
2
2
 
3
- The following ``untag-resource`` example shows how to remove tags from a Data Store. ::
3
+ The following ``untag-resource`` example shows how to remove tags from a data store. ::
4
4
 
5
5
  aws healthlake untag-resource \
6
- --resource-arn "arn:aws:healthlake:us-east-1:674914422125:datastore/fhir/b91723d65c6fdeb1d26543a49d2ed1fa" \
7
- --tag-keys '["key1"]' \
8
- --region us-east-1
6
+ --resource-arn "arn:aws:healthlake:us-east-1:123456789012:datastore/fhir/b91723d65c6fdeb1d26543a49d2ed1fa" \
7
+ --tag-keys '["key1"]'
9
8
 
10
9
  This command produces no output.
11
10
 
12
- For more information, see `Removing tags from a Data Store <https://docs.aws.amazon.com/healthlake/latest/devguide/remove-tags.html>`__ in the *Amazon HealthLake Developer Guide*.
11
+ For more information, see `Removing tags from a data store <https://docs.aws.amazon.com/healthlake/latest/devguide/remove-tags.html>`__ in the *AWS HealthLake Developer Guide*.
@@ -0,0 +1,13 @@
1
+ **To get telemetry onboarding status for the organization**
2
+
3
+ The following ``get-telemetry-evaluation-status-for-organization`` example returns the current onboarding status of the telemetry config feature for the organization. ::
4
+
5
+ aws observabilityadmin get-telemetry-evaluation-status-for-organization
6
+
7
+ Output::
8
+
9
+ {
10
+ "Status": "RUNNING"
11
+ }
12
+
13
+ For more information, see `Auditing CloudWatch telemetry configurations <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-cloudwatch.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -0,0 +1,13 @@
1
+ **To get telemetry onboarding status for the account**
2
+
3
+ The following ``get-telemetry-evaluation-status`` example returns the current onboarding status of the telemetry config feature in the specified account. ::
4
+
5
+ aws observabilityadmin get-telemetry-evaluation-status
6
+
7
+ Output::
8
+
9
+ {
10
+ "Status": "RUNNING"
11
+ }
12
+
13
+ For more information, see `Auditing CloudWatch telemetry configurations <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-cloudwatch.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -0,0 +1,43 @@
1
+ **To retrieve the telemetry configurations for the organization**
2
+
3
+ The following ``list-resource-telemetry-for-organization`` example returns a list of telemetry configurations in the organization for AWS resources supported by telemetry config. ::
4
+
5
+ aws observabilityadmin list-resource-telemetry-for-organization \
6
+ --resource-types AWS::EC2::Instance
7
+
8
+ Output::
9
+
10
+ {
11
+ "TelemetryConfigurations": [
12
+ {
13
+ "AccountIdentifier": "111111111111",
14
+ "TelemetryConfigurationState": {
15
+ "Logs": "NotApplicable",
16
+ "Metrics": "Disabled",
17
+ "Traces": "NotApplicable"
18
+ },
19
+ "ResourceType": "AWS::EC2::Instance",
20
+ "ResourceIdentifier": "i-a166400b",
21
+ "ResourceTags": {
22
+ "Name": "dev"
23
+ },
24
+ "LastUpdateTimeStamp": 1733168548521
25
+ },
26
+ {
27
+ "AccountIdentifier": "222222222222",
28
+ "TelemetryConfigurationState": {
29
+ "Logs": "NotApplicable",
30
+ "Metrics": "Disabled",
31
+ "Traces": "NotApplicable"
32
+ },
33
+ "ResourceType": "AWS::EC2::Instance",
34
+ "ResourceIdentifier": "i-b188560f",
35
+ "ResourceTags": {
36
+ "Name": "apache"
37
+ },
38
+ "LastUpdateTimeStamp": 1732744260182
39
+ }
40
+ ]
41
+ }
42
+
43
+ For more information, see `Auditing CloudWatch telemetry configurations <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-cloudwatch.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -0,0 +1,29 @@
1
+ **To retrieve the telemetry configurations for the account**
2
+
3
+ The following ``list-resource-telemetry`` example returns a list of telemetry configurations for AWS resources supported by telemetry config in the specified account. ::
4
+
5
+ aws observabilityadmin list-resource-telemetry \
6
+ --resource-types AWS::EC2::Instance
7
+
8
+ Output::
9
+
10
+ {
11
+ "TelemetryConfigurations": [
12
+ {
13
+ "AccountIdentifier": "111111111111",
14
+ "TelemetryConfigurationState": {
15
+ "Logs": "NotApplicable",
16
+ "Metrics": "Disabled",
17
+ "Traces": "NotApplicable"
18
+ },
19
+ "ResourceType": "AWS::EC2::Instance",
20
+ "ResourceIdentifier": "i-0e979d278b040f856",
21
+ "ResourceTags": {
22
+ "Name": "apache"
23
+ },
24
+ "LastUpdateTimeStamp": 1732744260182
25
+ }
26
+ ]
27
+ }
28
+
29
+ For more information, see `Auditing CloudWatch telemetry configurations <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-cloudwatch.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -0,0 +1,9 @@
1
+ **To enable the telemetry config feature**
2
+
3
+ The following ``start-telemetry-evaluation-for-organization`` example enables the telemetry config feature for the organization. ::
4
+
5
+ aws observabilityadmin start-telemetry-evaluation-for-organization
6
+
7
+ This command produces no output.
8
+
9
+ For more information, see `Turning on CloudWatch telemetry auditing <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-turn-on.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -0,0 +1,9 @@
1
+ **To enable the telemetry config feature**
2
+
3
+ The following ``start-telemetry-evaluation`` example enables the telemetry config feature in the specified account. ::
4
+
5
+ aws observabilityadmin start-telemetry-evaluation
6
+
7
+ This command produces no output.
8
+
9
+ For more information, see `Turning on CloudWatch telemetry auditing <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-turn-on.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -0,0 +1,9 @@
1
+ **To disable the telemetry config feature**
2
+
3
+ The following ``stop-telemetry-evaluation-for-organization`` example disables the telemetry config feature for the organization. ::
4
+
5
+ aws observabilityadmin stop-telemetry-evaluation-for-organization
6
+
7
+ This command produces no output.
8
+
9
+ For more information, see `Turning off CloudWatch telemetry auditing <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-turn-off.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -0,0 +1,9 @@
1
+ **To disable the telemetry config feature**
2
+
3
+ The following ``stop-telemetry-evaluation`` example disables the telemetry config feature in the specified account. ::
4
+
5
+ aws observabilityadmin stop-telemetry-evaluation
6
+
7
+ This command produces no output.
8
+
9
+ For more information, see `Turning off CloudWatch telemetry auditing <https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/telemetry-config-turn-off.html>`__ in the *Amazon CloudWatch User Guide*.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: awscli
3
- Version: 1.37.1
3
+ Version: 1.37.2
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.36.1)
26
+ Requires-Dist: botocore (==1.36.2)
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=p4i1ejXxLHQhbQ0CLaTFgLL7c0BtoAFYfAcxOdf0gJc,1533
1
+ awscli/__init__.py,sha256=PMkwUPY54uQU9Y2n342eV8WWPaSgUvQxVlFA6noPtkU,1533
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
@@ -1826,7 +1826,7 @@ awscli/examples/ec2/create-verified-access-trust-provider.rst,sha256=1pJLR41vWcA
1826
1826
  awscli/examples/ec2/create-volume.rst,sha256=31PqwEYeG0c-eulwcGyOAHY_AOOaHWfCASyjnNmHkC4,3377
1827
1827
  awscli/examples/ec2/create-vpc-endpoint-connection-notification.rst,sha256=OZAwrdjIgZYZlEHT29EJu9zD6w6UsVim7R79aIcbys8,921
1828
1828
  awscli/examples/ec2/create-vpc-endpoint-service-configuration.rst,sha256=UbLber2Lz_OJ8ralvMq-H4_ipSJrrdljc1wNuttGPlU,2820
1829
- awscli/examples/ec2/create-vpc-endpoint.rst,sha256=g8L31pb8UwEzzB-iZhO28EVUrHzgpuOpbifN6FYf2kE,4797
1829
+ awscli/examples/ec2/create-vpc-endpoint.rst,sha256=wiT-rocdjOv6BIuVt-53d50T006Xbj_luV0PV-f_5A4,4794
1830
1830
  awscli/examples/ec2/create-vpc-peering-connection.rst,sha256=zmnY1K9psrow60xl_3JwhSVQVk4iKRo5HwyNdeb98b0,1971
1831
1831
  awscli/examples/ec2/create-vpc.rst,sha256=GcXDL_fMzGxKEgoTMPtg611-D6nhD2iAiHoVB2eMTmk,5309
1832
1832
  awscli/examples/ec2/create-vpn-connection-route.rst,sha256=pXLb7g0PmxlKkH5qM2PdTqoVhp0OJnLfCquP58__Yts,290
@@ -2994,19 +2994,19 @@ awscli/examples/guardduty/update-ip-set.rst,sha256=_AlsG9W6mBgPCQDP8D1GBwd92Iwkz
2994
2994
  awscli/examples/health/describe-affected-entities.rst,sha256=rBj9YxiiMS0Osum6MFLORoOOddWZEN0Wjh7OHJxKhpU,1140
2995
2995
  awscli/examples/health/describe-event-details.rst,sha256=d83e2wiNidiOqdzkt-nCp6o4KIqLCU7J2S2UvVFR20c,1692
2996
2996
  awscli/examples/health/describe-events.rst,sha256=ubZzwAjHmWMmkl1FEYgFOfUf55a3_LbcudOe0s7sQsI,8598
2997
- awscli/examples/healthlake/create-fhir-datastore.rst,sha256=iZgCaqbqARqjdFiHpUf85Hlf9vbz7f7LE6JmdzVfZwI,877
2998
- awscli/examples/healthlake/delete-fhir-datastore.rst,sha256=t0MyCQHv3f1btrQ4t2Kky7oDS9n_kDDA7BajdD5iONw,810
2999
- awscli/examples/healthlake/describe-fhir-datastore.rst,sha256=tNaL2yUOlkLnuQUuJhVSR7F9OEeHI3lyimNvQ_cZWYs,1085
3000
- awscli/examples/healthlake/describe-fhir-export-job.rst,sha256=dZa_l-qLEmt7xHT0JAA-rv8-6Yoo3gBoPU58kAm4IQM,1039
3001
- awscli/examples/healthlake/describe-fhir-import-job.rst,sha256=wAFj8AG-Y85s3s6Npzo4MApCJyzEJRSeUUC7AY7k2IU,1027
3002
- awscli/examples/healthlake/list-fhir-datastores.rst,sha256=r1VOw3wO8ZkF0tdlAHPvvVBaFb1FDC9PqdswejP9n0w,1600
3003
- awscli/examples/healthlake/list-fhir-export-jobs.rst,sha256=cn4cW0x_zAlCbrODy4em13LqvZYXBPDpbHT70vHSni8,1364
3004
- awscli/examples/healthlake/list-fhir-import-jobs.rst,sha256=CSTkCJ0M3pj8Uv1tC-j-ZEbOdgITqKEaJh8bRA--TsY,1397
3005
- awscli/examples/healthlake/list-tags-for-resource.rst,sha256=Rz1GWOu-hkvYl70WNqGoGZVOmW_tGzQ2JB34mgjIRjs,621
3006
- awscli/examples/healthlake/start-fhir-export-job.rst,sha256=OVbIQh8QtJellvOjas1LQr5YyG_t9u-XAhHGG8EiCE4,741
3007
- awscli/examples/healthlake/start-fhir-import-job.rst,sha256=VZwLKhPHO7vwp1YC8FNXeRqBTp4Y8RHuN9Y4-CIceyQ,769
3008
- awscli/examples/healthlake/tag-resource.rst,sha256=tnRyNTu8VEb8-ILQO41Pso2oevOHQXu95FQsiHinOMc,559
3009
- awscli/examples/healthlake/untag-resource.rst,sha256=ZS7FsOrMAAfxTzspG2LdCaHPQR2y4Gg5Tq9SLIRjsGM,554
2997
+ awscli/examples/healthlake/create-fhir-datastore.rst,sha256=N3xs_EFb3omezqgvh8HY_AMPtWPaSknIHUuoJu2YMJM,2963
2998
+ awscli/examples/healthlake/delete-fhir-datastore.rst,sha256=Osa7ogOUiGQzKFSzarol-rOfXNpCymObUzzT72QNwdE,777
2999
+ awscli/examples/healthlake/describe-fhir-datastore.rst,sha256=VU3Tcyj-hH2ppaVCIj-8D1J4xhXP6FNGjSg7SYzRSDo,1538
3000
+ awscli/examples/healthlake/describe-fhir-export-job.rst,sha256=ML0wPclitaV625ygTxIGKHRPNxw0Gld0yxocukpuxn4,1200
3001
+ awscli/examples/healthlake/describe-fhir-import-job.rst,sha256=AQqggC2h8_C1ITZMITUo7RXNZkGp6Q_Tf4kfa2Ojg2A,993
3002
+ awscli/examples/healthlake/list-fhir-datastores.rst,sha256=TpRBbSBcz_v1ffvSihcSaHsY7YZalpLFF_7-3T5lHMs,1568
3003
+ awscli/examples/healthlake/list-fhir-export-jobs.rst,sha256=NIou9123xlXd0iCdlbTc8aQxcBF6dkKY54pl9nZc7a8,1614
3004
+ awscli/examples/healthlake/list-fhir-import-jobs.rst,sha256=vYpYCJB6I-8p31sfw5koXMhYO94arB8C5KgfCDYPP-E,2158
3005
+ awscli/examples/healthlake/list-tags-for-resource.rst,sha256=0OY4_nYKP9NUW4875nlO3uq_3xtSIk6TIP0bR75bcE4,586
3006
+ awscli/examples/healthlake/start-fhir-export-job.rst,sha256=ifYbVMLZyH7Yv-x4U03YbP1N9OsFiVX0raaeO7Pq1eE,853
3007
+ awscli/examples/healthlake/start-fhir-import-job.rst,sha256=rEkGp9qrQkyA4XhoSav82Dgta5I80XZdoQCI5syDSkI,932
3008
+ awscli/examples/healthlake/tag-resource.rst,sha256=RrK7uPb1kWIBi3t3WliOIgLYaHNE6n6EeHv4XreTwOA,527
3009
+ awscli/examples/healthlake/untag-resource.rst,sha256=2v4NSSEmAh-37cRSU2Uk85knFBuAyLauONgmlusC56k,522
3010
3010
  awscli/examples/iam/add-client-id-to-open-id-connect-provider.rst,sha256=x8LrXXr7_69OfiRcRgH45L_svNa_zEqQFSZ3TEjGoH8,743
3011
3011
  awscli/examples/iam/add-role-to-instance-profile.rst,sha256=ULlhqUTdWh2vTTnqe-C-v0vaiIAeybHrG5qIOFIvphg,637
3012
3012
  awscli/examples/iam/add-user-to-group.rst,sha256=y2xtqAeAGd5y74k0e8wI3R8a_GqVQ7Nyl3LHusP7VoI,466
@@ -4297,6 +4297,14 @@ awscli/examples/networkmonitor/tag-resource.rst,sha256=gAQeGmYu-ra-UnhaQtSY-xAoS
4297
4297
  awscli/examples/networkmonitor/untag-resource.rst,sha256=vK33iqSTQi7v8VhWjJBf8a91GyTGbZlOPDuRWrKDXBo,661
4298
4298
  awscli/examples/networkmonitor/update-monitor.rst,sha256=pRgNmy-N-656oGAIxYzjY25TlqU5pG2y5QExlQsfpA8,792
4299
4299
  awscli/examples/networkmonitor/update-probe.rst,sha256=KDR_No2oF9YnXIOAC8F7l0tuko2Fb5FzB2KKr_c6b9M,1184
4300
+ awscli/examples/observabilityadmin/get-telemetry-evaluation-status-for-organization.rst,sha256=8tbA7W0jEFs26hXn_Hm6_O1ylLGQk1a-7r57jRcaFb4,571
4301
+ awscli/examples/observabilityadmin/get-telemetry-evaluation-status.rst,sha256=7iR_3bl-fex7E6dhxV_4xowaj40FldtriURMRbz5SFY,537
4302
+ awscli/examples/observabilityadmin/list-resource-telemetry-for-organization.rst,sha256=lY_367mbpEpbvaTkA3nPi-N4qpimbxZ1z79zJtHolRw,1709
4303
+ awscli/examples/observabilityadmin/list-resource-telemetry.rst,sha256=fmAdO45KijJpZaxvu7l_Dwzu6FJio6oo0HVWcJGVhZA,1154
4304
+ awscli/examples/observabilityadmin/start-telemetry-evaluation-for-organization.rst,sha256=VU4jDiPIdbjxnfXHDSHssR73DDflAs5Jt9Krwj3nw_I,488
4305
+ awscli/examples/observabilityadmin/start-telemetry-evaluation.rst,sha256=Q_XdJK16wwswDe0R8xUptFYkz-_92s9Cgez0CAjAxj0,457
4306
+ awscli/examples/observabilityadmin/stop-telemetry-evaluation-for-organization.rst,sha256=BhJ00Ir2wea7iGI3zRP-Q_t740nLWUT2S6iB6T2UBQg,489
4307
+ awscli/examples/observabilityadmin/stop-telemetry-evaluation.rst,sha256=A5bbRAFiKY6I818rmgs3Mh1BpqRsgIJrpKZPCvsOFRE,459
4300
4308
  awscli/examples/omics/abort-multipart-read-set-upload.rst,sha256=8yx4sDvL1gNtYYiwwlhf3z18FnYajuc3kez3BPeOfvA,503
4301
4309
  awscli/examples/omics/accept-share.rst,sha256=rNn9bXBWqaQsVGAeEomVWoJLtauJiDqCGojeQRJtr7Q,478
4302
4310
  awscli/examples/omics/batch-delete-read-set.rst,sha256=lTDc16l5-NRTa7y4IW7S_V0tRL-r-0fUDIe_XLFvd_0,679
@@ -5996,13 +6004,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
5996
6004
  awscli/topics/s3-config.rst,sha256=kyLbdEEePnHW0hoMmQDkt4o6PbqAdpO5ph_51GgQyXg,11664
5997
6005
  awscli/topics/s3-faq.rst,sha256=Kw1w4NFHOTXq9Mz5S3HHw3mBkyeEzH4ruB0PD6-EO1c,2938
5998
6006
  awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
5999
- awscli-1.37.1.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6000
- awscli-1.37.1.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6001
- awscli-1.37.1.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6002
- awscli-1.37.1.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6003
- awscli-1.37.1.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6004
- awscli-1.37.1.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6005
- awscli-1.37.1.dist-info/METADATA,sha256=tZ9RpxFsh8Bw9NPLhQtz9Oj53OUeGUACs7MFEz0sz6A,11329
6006
- awscli-1.37.1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6007
- awscli-1.37.1.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6008
- awscli-1.37.1.dist-info/RECORD,,
6007
+ awscli-1.37.2.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
6008
+ awscli-1.37.2.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
6009
+ awscli-1.37.2.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
6010
+ awscli-1.37.2.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
6011
+ awscli-1.37.2.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
6012
+ awscli-1.37.2.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
6013
+ awscli-1.37.2.dist-info/METADATA,sha256=nF0aB9v722XzZhBvEviTRloa0pn2ADdeHjZiA56yNqs,11329
6014
+ awscli-1.37.2.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
6015
+ awscli-1.37.2.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
6016
+ awscli-1.37.2.dist-info/RECORD,,
File without changes