aws-sdk-core 2.11.628 → 2.11.629

Sign up to get free protection for your applications and to get access to all the features.
@@ -83,6 +83,24 @@
83
83
  {"shape":"InternalServiceException"}
84
84
  ]
85
85
  },
86
+ "CreateUserHierarchyGroup":{
87
+ "name":"CreateUserHierarchyGroup",
88
+ "http":{
89
+ "method":"PUT",
90
+ "requestUri":"/user-hierarchy-groups/{InstanceId}"
91
+ },
92
+ "input":{"shape":"CreateUserHierarchyGroupRequest"},
93
+ "output":{"shape":"CreateUserHierarchyGroupResponse"},
94
+ "errors":[
95
+ {"shape":"InvalidRequestException"},
96
+ {"shape":"InvalidParameterException"},
97
+ {"shape":"DuplicateResourceException"},
98
+ {"shape":"LimitExceededException"},
99
+ {"shape":"ResourceNotFoundException"},
100
+ {"shape":"ThrottlingException"},
101
+ {"shape":"InternalServiceException"}
102
+ ]
103
+ },
86
104
  "DeleteUser":{
87
105
  "name":"DeleteUser",
88
106
  "http":{
@@ -98,6 +116,22 @@
98
116
  {"shape":"InternalServiceException"}
99
117
  ]
100
118
  },
119
+ "DeleteUserHierarchyGroup":{
120
+ "name":"DeleteUserHierarchyGroup",
121
+ "http":{
122
+ "method":"DELETE",
123
+ "requestUri":"/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}"
124
+ },
125
+ "input":{"shape":"DeleteUserHierarchyGroupRequest"},
126
+ "errors":[
127
+ {"shape":"InvalidRequestException"},
128
+ {"shape":"InvalidParameterException"},
129
+ {"shape":"ResourceNotFoundException"},
130
+ {"shape":"ResourceInUseException"},
131
+ {"shape":"ThrottlingException"},
132
+ {"shape":"InternalServiceException"}
133
+ ]
134
+ },
101
135
  "DescribeContactFlow":{
102
136
  "name":"DescribeContactFlow",
103
137
  "http":{
@@ -693,6 +727,38 @@
693
727
  {"shape":"InternalServiceException"}
694
728
  ]
695
729
  },
730
+ "UpdateUserHierarchyGroupName":{
731
+ "name":"UpdateUserHierarchyGroupName",
732
+ "http":{
733
+ "method":"POST",
734
+ "requestUri":"/user-hierarchy-groups/{InstanceId}/{HierarchyGroupId}/name"
735
+ },
736
+ "input":{"shape":"UpdateUserHierarchyGroupNameRequest"},
737
+ "errors":[
738
+ {"shape":"InvalidRequestException"},
739
+ {"shape":"InvalidParameterException"},
740
+ {"shape":"DuplicateResourceException"},
741
+ {"shape":"ResourceNotFoundException"},
742
+ {"shape":"ThrottlingException"},
743
+ {"shape":"InternalServiceException"}
744
+ ]
745
+ },
746
+ "UpdateUserHierarchyStructure":{
747
+ "name":"UpdateUserHierarchyStructure",
748
+ "http":{
749
+ "method":"POST",
750
+ "requestUri":"/user-hierarchy-structure/{InstanceId}"
751
+ },
752
+ "input":{"shape":"UpdateUserHierarchyStructureRequest"},
753
+ "errors":[
754
+ {"shape":"InvalidRequestException"},
755
+ {"shape":"InvalidParameterException"},
756
+ {"shape":"ResourceNotFoundException"},
757
+ {"shape":"ResourceInUseException"},
758
+ {"shape":"ThrottlingException"},
759
+ {"shape":"InternalServiceException"}
760
+ ]
761
+ },
696
762
  "UpdateUserIdentityInfo":{
697
763
  "name":"UpdateUserIdentityInfo",
698
764
  "http":{
@@ -991,6 +1057,29 @@
991
1057
  "RoutingProfileId":{"shape":"RoutingProfileId"}
992
1058
  }
993
1059
  },
1060
+ "CreateUserHierarchyGroupRequest":{
1061
+ "type":"structure",
1062
+ "required":[
1063
+ "Name",
1064
+ "InstanceId"
1065
+ ],
1066
+ "members":{
1067
+ "Name":{"shape":"HierarchyGroupName"},
1068
+ "ParentGroupId":{"shape":"HierarchyGroupId"},
1069
+ "InstanceId":{
1070
+ "shape":"InstanceId",
1071
+ "location":"uri",
1072
+ "locationName":"InstanceId"
1073
+ }
1074
+ }
1075
+ },
1076
+ "CreateUserHierarchyGroupResponse":{
1077
+ "type":"structure",
1078
+ "members":{
1079
+ "HierarchyGroupId":{"shape":"HierarchyGroupId"},
1080
+ "HierarchyGroupArn":{"shape":"ARN"}
1081
+ }
1082
+ },
994
1083
  "CreateUserRequest":{
995
1084
  "type":"structure",
996
1085
  "required":[
@@ -1092,6 +1181,25 @@
1092
1181
  "max":9999,
1093
1182
  "min":0
1094
1183
  },
1184
+ "DeleteUserHierarchyGroupRequest":{
1185
+ "type":"structure",
1186
+ "required":[
1187
+ "HierarchyGroupId",
1188
+ "InstanceId"
1189
+ ],
1190
+ "members":{
1191
+ "HierarchyGroupId":{
1192
+ "shape":"HierarchyGroupId",
1193
+ "location":"uri",
1194
+ "locationName":"HierarchyGroupId"
1195
+ },
1196
+ "InstanceId":{
1197
+ "shape":"InstanceId",
1198
+ "location":"uri",
1199
+ "locationName":"InstanceId"
1200
+ }
1201
+ }
1202
+ },
1095
1203
  "DeleteUserRequest":{
1096
1204
  "type":"structure",
1097
1205
  "required":[
@@ -1439,6 +1547,13 @@
1439
1547
  },
1440
1548
  "HierarchyLevelId":{"type":"string"},
1441
1549
  "HierarchyLevelName":{"type":"string"},
1550
+ "HierarchyLevelUpdate":{
1551
+ "type":"structure",
1552
+ "required":["Name"],
1553
+ "members":{
1554
+ "Name":{"shape":"HierarchyLevelName"}
1555
+ }
1556
+ },
1442
1557
  "HierarchyPath":{
1443
1558
  "type":"structure",
1444
1559
  "members":{
@@ -1459,6 +1574,16 @@
1459
1574
  "LevelFive":{"shape":"HierarchyLevel"}
1460
1575
  }
1461
1576
  },
1577
+ "HierarchyStructureUpdate":{
1578
+ "type":"structure",
1579
+ "members":{
1580
+ "LevelOne":{"shape":"HierarchyLevelUpdate"},
1581
+ "LevelTwo":{"shape":"HierarchyLevelUpdate"},
1582
+ "LevelThree":{"shape":"HierarchyLevelUpdate"},
1583
+ "LevelFour":{"shape":"HierarchyLevelUpdate"},
1584
+ "LevelFive":{"shape":"HierarchyLevelUpdate"}
1585
+ }
1586
+ },
1462
1587
  "HistoricalMetric":{
1463
1588
  "type":"structure",
1464
1589
  "members":{
@@ -2346,6 +2471,16 @@
2346
2471
  "max":100,
2347
2472
  "min":1
2348
2473
  },
2474
+ "ResourceInUseException":{
2475
+ "type":"structure",
2476
+ "members":{
2477
+ "Message":{"shape":"Message"},
2478
+ "ResourceType":{"shape":"ResourceType"},
2479
+ "ResourceId":{"shape":"ARN"}
2480
+ },
2481
+ "error":{"httpStatusCode":409},
2482
+ "exception":true
2483
+ },
2349
2484
  "ResourceNotFoundException":{
2350
2485
  "type":"structure",
2351
2486
  "members":{
@@ -2354,6 +2489,18 @@
2354
2489
  "error":{"httpStatusCode":404},
2355
2490
  "exception":true
2356
2491
  },
2492
+ "ResourceType":{
2493
+ "type":"string",
2494
+ "enum":[
2495
+ "CONTACT",
2496
+ "CONTACT_FLOW",
2497
+ "INSTANCE",
2498
+ "PARTICIPANT",
2499
+ "HIERARCHY_LEVEL",
2500
+ "HIERARCHY_GROUP",
2501
+ "USER"
2502
+ ]
2503
+ },
2357
2504
  "ResumeContactRecordingRequest":{
2358
2505
  "type":"structure",
2359
2506
  "required":[
@@ -2856,6 +3003,27 @@
2856
3003
  "QueueConfigs":{"shape":"RoutingProfileQueueConfigList"}
2857
3004
  }
2858
3005
  },
3006
+ "UpdateUserHierarchyGroupNameRequest":{
3007
+ "type":"structure",
3008
+ "required":[
3009
+ "Name",
3010
+ "HierarchyGroupId",
3011
+ "InstanceId"
3012
+ ],
3013
+ "members":{
3014
+ "Name":{"shape":"HierarchyGroupName"},
3015
+ "HierarchyGroupId":{
3016
+ "shape":"HierarchyGroupId",
3017
+ "location":"uri",
3018
+ "locationName":"HierarchyGroupId"
3019
+ },
3020
+ "InstanceId":{
3021
+ "shape":"InstanceId",
3022
+ "location":"uri",
3023
+ "locationName":"InstanceId"
3024
+ }
3025
+ }
3026
+ },
2859
3027
  "UpdateUserHierarchyRequest":{
2860
3028
  "type":"structure",
2861
3029
  "required":[
@@ -2876,6 +3044,21 @@
2876
3044
  }
2877
3045
  }
2878
3046
  },
3047
+ "UpdateUserHierarchyStructureRequest":{
3048
+ "type":"structure",
3049
+ "required":[
3050
+ "HierarchyStructure",
3051
+ "InstanceId"
3052
+ ],
3053
+ "members":{
3054
+ "HierarchyStructure":{"shape":"HierarchyStructureUpdate"},
3055
+ "InstanceId":{
3056
+ "shape":"InstanceId",
3057
+ "location":"uri",
3058
+ "locationName":"InstanceId"
3059
+ }
3060
+ }
3061
+ },
2879
3062
  "UpdateUserIdentityInfoRequest":{
2880
3063
  "type":"structure",
2881
3064
  "required":[
@@ -63,7 +63,9 @@
63
63
  "errors":[
64
64
  {"shape":"ResourceNotFoundException"},
65
65
  {"shape":"InvalidOperationException"},
66
- {"shape":"InternalErrorException"}
66
+ {"shape":"InternalErrorException"},
67
+ {"shape":"InvalidInputException"},
68
+ {"shape":"LimitExceededException"}
67
69
  ]
68
70
  },
69
71
  "DeleteProtocolsList":{
@@ -563,7 +565,7 @@
563
565
  "type":"string",
564
566
  "max":1024,
565
567
  "min":1,
566
- "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=+\\-@]*)$"
568
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:/=,+\\-@]*)$"
567
569
  },
568
570
  "DisassociateAdminAccountRequest":{
569
571
  "type":"structure",
@@ -865,6 +867,68 @@
865
867
  "type":"list",
866
868
  "member":{"shape":"AWSAccountId"}
867
869
  },
870
+ "NetworkFirewallAction":{
871
+ "type":"string",
872
+ "max":128,
873
+ "min":1,
874
+ "pattern":"^[a-zA-Z0-9]+$"
875
+ },
876
+ "NetworkFirewallActionList":{
877
+ "type":"list",
878
+ "member":{"shape":"NetworkFirewallAction"}
879
+ },
880
+ "NetworkFirewallMissingExpectedRTViolation":{
881
+ "type":"structure",
882
+ "members":{
883
+ "ViolationTarget":{"shape":"ViolationTarget"},
884
+ "VPC":{"shape":"ResourceId"},
885
+ "AvailabilityZone":{"shape":"LengthBoundedString"},
886
+ "CurrentRouteTable":{"shape":"ResourceId"},
887
+ "ExpectedRouteTable":{"shape":"ResourceId"}
888
+ }
889
+ },
890
+ "NetworkFirewallMissingFirewallViolation":{
891
+ "type":"structure",
892
+ "members":{
893
+ "ViolationTarget":{"shape":"ViolationTarget"},
894
+ "VPC":{"shape":"ResourceId"},
895
+ "AvailabilityZone":{"shape":"LengthBoundedString"},
896
+ "TargetViolationReason":{"shape":"TargetViolationReason"}
897
+ }
898
+ },
899
+ "NetworkFirewallMissingSubnetViolation":{
900
+ "type":"structure",
901
+ "members":{
902
+ "ViolationTarget":{"shape":"ViolationTarget"},
903
+ "VPC":{"shape":"ResourceId"},
904
+ "AvailabilityZone":{"shape":"LengthBoundedString"},
905
+ "TargetViolationReason":{"shape":"TargetViolationReason"}
906
+ }
907
+ },
908
+ "NetworkFirewallPolicyDescription":{
909
+ "type":"structure",
910
+ "members":{
911
+ "StatelessRuleGroups":{"shape":"StatelessRuleGroupList"},
912
+ "StatelessDefaultActions":{"shape":"NetworkFirewallActionList"},
913
+ "StatelessFragmentDefaultActions":{"shape":"NetworkFirewallActionList"},
914
+ "StatelessCustomActions":{"shape":"NetworkFirewallActionList"},
915
+ "StatefulRuleGroups":{"shape":"StatefulRuleGroupList"}
916
+ }
917
+ },
918
+ "NetworkFirewallPolicyModifiedViolation":{
919
+ "type":"structure",
920
+ "members":{
921
+ "ViolationTarget":{"shape":"ViolationTarget"},
922
+ "CurrentPolicyDescription":{"shape":"NetworkFirewallPolicyDescription"},
923
+ "ExpectedPolicyDescription":{"shape":"NetworkFirewallPolicyDescription"}
924
+ }
925
+ },
926
+ "NetworkFirewallResourceName":{
927
+ "type":"string",
928
+ "max":128,
929
+ "min":1,
930
+ "pattern":"^[a-zA-Z0-9-]+$"
931
+ },
868
932
  "PaginationMaxResults":{
869
933
  "type":"integer",
870
934
  "max":100,
@@ -1171,7 +1235,11 @@
1171
1235
  "members":{
1172
1236
  "AwsVPCSecurityGroupViolation":{"shape":"AwsVPCSecurityGroupViolation"},
1173
1237
  "AwsEc2NetworkInterfaceViolation":{"shape":"AwsEc2NetworkInterfaceViolation"},
1174
- "AwsEc2InstanceViolation":{"shape":"AwsEc2InstanceViolation"}
1238
+ "AwsEc2InstanceViolation":{"shape":"AwsEc2InstanceViolation"},
1239
+ "NetworkFirewallMissingFirewallViolation":{"shape":"NetworkFirewallMissingFirewallViolation"},
1240
+ "NetworkFirewallMissingSubnetViolation":{"shape":"NetworkFirewallMissingSubnetViolation"},
1241
+ "NetworkFirewallMissingExpectedRTViolation":{"shape":"NetworkFirewallMissingExpectedRTViolation"},
1242
+ "NetworkFirewallPolicyModifiedViolation":{"shape":"NetworkFirewallPolicyModifiedViolation"}
1175
1243
  }
1176
1244
  },
1177
1245
  "ResourceViolations":{
@@ -1218,9 +1286,38 @@
1218
1286
  "SHIELD_ADVANCED",
1219
1287
  "SECURITY_GROUPS_COMMON",
1220
1288
  "SECURITY_GROUPS_CONTENT_AUDIT",
1221
- "SECURITY_GROUPS_USAGE_AUDIT"
1289
+ "SECURITY_GROUPS_USAGE_AUDIT",
1290
+ "NETWORK_FIREWALL"
1222
1291
  ]
1223
1292
  },
1293
+ "StatefulRuleGroup":{
1294
+ "type":"structure",
1295
+ "members":{
1296
+ "RuleGroupName":{"shape":"NetworkFirewallResourceName"},
1297
+ "ResourceId":{"shape":"ResourceId"}
1298
+ }
1299
+ },
1300
+ "StatefulRuleGroupList":{
1301
+ "type":"list",
1302
+ "member":{"shape":"StatefulRuleGroup"}
1303
+ },
1304
+ "StatelessRuleGroup":{
1305
+ "type":"structure",
1306
+ "members":{
1307
+ "RuleGroupName":{"shape":"NetworkFirewallResourceName"},
1308
+ "ResourceId":{"shape":"ResourceId"},
1309
+ "Priority":{"shape":"StatelessRuleGroupPriority"}
1310
+ }
1311
+ },
1312
+ "StatelessRuleGroupList":{
1313
+ "type":"list",
1314
+ "member":{"shape":"StatelessRuleGroup"}
1315
+ },
1316
+ "StatelessRuleGroupPriority":{
1317
+ "type":"integer",
1318
+ "max":65535,
1319
+ "min":1
1320
+ },
1224
1321
  "Tag":{
1225
1322
  "type":"structure",
1226
1323
  "required":[
@@ -1335,7 +1432,11 @@
1335
1432
  "RESOURCE_MISSING_SECURITY_GROUP",
1336
1433
  "RESOURCE_VIOLATES_AUDIT_SECURITY_GROUP",
1337
1434
  "SECURITY_GROUP_UNUSED",
1338
- "SECURITY_GROUP_REDUNDANT"
1435
+ "SECURITY_GROUP_REDUNDANT",
1436
+ "MISSING_FIREWALL",
1437
+ "MISSING_FIREWALL_SUBNET_IN_AZ",
1438
+ "MISSING_EXPECTED_ROUTE_TABLE",
1439
+ "NETWORK_FIREWALL_POLICY_MODIFIED"
1339
1440
  ]
1340
1441
  },
1341
1442
  "ViolationTarget":{
@@ -2993,6 +2993,10 @@
2993
2993
  "shape": "JobType",
2994
2994
  "locationName": "jobType"
2995
2995
  },
2996
+ "lastRunErrorStatus": {
2997
+ "shape": "LastRunErrorStatus",
2998
+ "locationName": "lastRunErrorStatus"
2999
+ },
2996
3000
  "lastRunTime": {
2997
3001
  "shape": "__timestampIso8601",
2998
3002
  "locationName": "lastRunTime"
@@ -4043,6 +4047,10 @@
4043
4047
  "shape": "JobType",
4044
4048
  "locationName": "jobType"
4045
4049
  },
4050
+ "lastRunErrorStatus": {
4051
+ "shape": "LastRunErrorStatus",
4052
+ "locationName": "lastRunErrorStatus"
4053
+ },
4046
4054
  "name": {
4047
4055
  "shape": "__string",
4048
4056
  "locationName": "name"
@@ -4079,6 +4087,22 @@
4079
4087
  "shape": "KeyValuePair"
4080
4088
  }
4081
4089
  },
4090
+ "LastRunErrorStatus": {
4091
+ "type": "structure",
4092
+ "members": {
4093
+ "code": {
4094
+ "shape": "LastRunErrorStatusCode",
4095
+ "locationName": "code"
4096
+ }
4097
+ }
4098
+ },
4099
+ "LastRunErrorStatusCode": {
4100
+ "type": "string",
4101
+ "enum": [
4102
+ "NONE",
4103
+ "ERROR"
4104
+ ]
4105
+ },
4082
4106
  "ListClassificationJobsRequest": {
4083
4107
  "type": "structure",
4084
4108
  "members": {