@cloud-copilot/iam-data 0.20.202607241 → 0.20.202607251
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.
|
@@ -2309,6 +2309,23 @@
|
|
|
2309
2309
|
],
|
|
2310
2310
|
"dependentActions": []
|
|
2311
2311
|
},
|
|
2312
|
+
"describeattachedfilesconfiguration": {
|
|
2313
|
+
"name": "DescribeAttachedFilesConfiguration",
|
|
2314
|
+
"description": "Grants permission to describe an attached files configuration in an Amazon Connect instance",
|
|
2315
|
+
"accessLevel": "Read",
|
|
2316
|
+
"resourceTypes": [
|
|
2317
|
+
{
|
|
2318
|
+
"name": "instance",
|
|
2319
|
+
"required": true,
|
|
2320
|
+
"conditionKeys": [],
|
|
2321
|
+
"dependentActions": []
|
|
2322
|
+
}
|
|
2323
|
+
],
|
|
2324
|
+
"conditionKeys": [
|
|
2325
|
+
"connect:InstanceId"
|
|
2326
|
+
],
|
|
2327
|
+
"dependentActions": []
|
|
2328
|
+
},
|
|
2312
2329
|
"describeauthenticationprofile": {
|
|
2313
2330
|
"name": "DescribeAuthenticationProfile",
|
|
2314
2331
|
"description": "Grants permission to describe authentication profile resources in an Amazon Connect instance",
|
|
@@ -3693,6 +3710,23 @@
|
|
|
3693
3710
|
],
|
|
3694
3711
|
"dependentActions": []
|
|
3695
3712
|
},
|
|
3713
|
+
"listattachedfilesconfigurations": {
|
|
3714
|
+
"name": "ListAttachedFilesConfigurations",
|
|
3715
|
+
"description": "Grants permission to list attached files configurations in an Amazon Connect instance",
|
|
3716
|
+
"accessLevel": "List",
|
|
3717
|
+
"resourceTypes": [
|
|
3718
|
+
{
|
|
3719
|
+
"name": "instance",
|
|
3720
|
+
"required": true,
|
|
3721
|
+
"conditionKeys": [],
|
|
3722
|
+
"dependentActions": []
|
|
3723
|
+
}
|
|
3724
|
+
],
|
|
3725
|
+
"conditionKeys": [
|
|
3726
|
+
"connect:InstanceId"
|
|
3727
|
+
],
|
|
3728
|
+
"dependentActions": []
|
|
3729
|
+
},
|
|
3696
3730
|
"listauthenticationprofiles": {
|
|
3697
3731
|
"name": "ListAuthenticationProfiles",
|
|
3698
3732
|
"description": "Grants permission to list authentication profile resources in an Amazon Connect instance",
|
|
@@ -6391,6 +6425,23 @@
|
|
|
6391
6425
|
],
|
|
6392
6426
|
"dependentActions": []
|
|
6393
6427
|
},
|
|
6428
|
+
"updateattachedfilesconfiguration": {
|
|
6429
|
+
"name": "UpdateAttachedFilesConfiguration",
|
|
6430
|
+
"description": "Grants permission to update an attached files configuration in an Amazon Connect instance",
|
|
6431
|
+
"accessLevel": "Write",
|
|
6432
|
+
"resourceTypes": [
|
|
6433
|
+
{
|
|
6434
|
+
"name": "instance",
|
|
6435
|
+
"required": true,
|
|
6436
|
+
"conditionKeys": [],
|
|
6437
|
+
"dependentActions": []
|
|
6438
|
+
}
|
|
6439
|
+
],
|
|
6440
|
+
"conditionKeys": [
|
|
6441
|
+
"connect:InstanceId"
|
|
6442
|
+
],
|
|
6443
|
+
"dependentActions": []
|
|
6444
|
+
},
|
|
6394
6445
|
"updateauthenticationprofile": {
|
|
6395
6446
|
"name": "UpdateAuthenticationProfile",
|
|
6396
6447
|
"description": "Grants permission to update authentication profile resources in an Amazon Connect instance",
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
},
|
|
23
23
|
"authentication-profile": {
|
|
24
24
|
"key": "authentication-profile",
|
|
25
|
-
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/authentication-profile/${AuthenticationProfileId}"
|
|
25
|
+
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/authentication-profile/${AuthenticationProfileId}",
|
|
26
|
+
"conditionKeys": [
|
|
27
|
+
"aws:ResourceTag/${TagKey}"
|
|
28
|
+
]
|
|
26
29
|
},
|
|
27
30
|
"aws-managed-view": {
|
|
28
31
|
"key": "aws-managed-view",
|
|
@@ -30,7 +33,10 @@
|
|
|
30
33
|
},
|
|
31
34
|
"contact": {
|
|
32
35
|
"key": "contact",
|
|
33
|
-
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/contact/${ContactId}"
|
|
36
|
+
"arn": "arn:${Partition}:connect:${Region}:${Account}:instance/${InstanceId}/contact/${ContactId}",
|
|
37
|
+
"conditionKeys": [
|
|
38
|
+
"aws:ResourceTag/${TagKey}"
|
|
39
|
+
]
|
|
34
40
|
},
|
|
35
41
|
"contact-evaluation": {
|
|
36
42
|
"key": "contact-evaluation",
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloud-copilot/iam-data",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.202607251",
|
|
4
4
|
"description": "AWS IAM Data",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/cloud-copilot/iam-data.git"
|
|
8
8
|
},
|
|
9
|
-
"updatedAt": "2026-07-
|
|
9
|
+
"updatedAt": "2026-07-25T05:33:27.430Z",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"import": "./dist/esm/index.js",
|