aws-sdk-core 2.11.187 → 2.11.188

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a3a81211631faa29f7fd80894f0b304a9efc3c7d
4
- data.tar.gz: 1ac682b2630e0092708a0fc278afd37dbe147690
3
+ metadata.gz: f1b9ae757e797d249e20f175aac562e2fec03830
4
+ data.tar.gz: cc0f2fda1a3e4d43e7bead1b27951baef46d4ad7
5
5
  SHA512:
6
- metadata.gz: 33a7a5516adc154cdeb0a020b3a8ce10711aaad901b028506148391c0a2a8d455ec36ddaf6811c889f3a0c6a7cc507200f7f41c9fea752823502b8d1ae727cac
7
- data.tar.gz: 969a5d1f71fa7478669e8b81306e3a2966745b9106b4d29698f45eb6f927c7784298a3c4369594118cea844759393210360af74da7a66c2dba82f1567536fe50
6
+ metadata.gz: 3c4a455b73382bf7e54f6c5b74091c489b2559783cd4f84c0ee2968db77803aa0bcbbd73e25e91e01b7fa9981e5076be337be5274c9c88bb85ec876245aa7ebe
7
+ data.tar.gz: 532d30fff921da04671a7f3f37b382817e08a963726c677b10eda1a70cbc4d6d70804f89695b1405f17e9077e02b39b1cbbe327bbcd28f3cf3dbbd7f6b89d87b
@@ -90,6 +90,18 @@
90
90
  {"shape":"LimitExceededException"}
91
91
  ]
92
92
  },
93
+ "CreateBusinessReportSchedule":{
94
+ "name":"CreateBusinessReportSchedule",
95
+ "http":{
96
+ "method":"POST",
97
+ "requestUri":"/"
98
+ },
99
+ "input":{"shape":"CreateBusinessReportScheduleRequest"},
100
+ "output":{"shape":"CreateBusinessReportScheduleResponse"},
101
+ "errors":[
102
+ {"shape":"AlreadyExistsException"}
103
+ ]
104
+ },
93
105
  "CreateConferenceProvider":{
94
106
  "name":"CreateConferenceProvider",
95
107
  "http":{
@@ -183,6 +195,19 @@
183
195
  {"shape":"ConcurrentModificationException"}
184
196
  ]
185
197
  },
198
+ "DeleteBusinessReportSchedule":{
199
+ "name":"DeleteBusinessReportSchedule",
200
+ "http":{
201
+ "method":"POST",
202
+ "requestUri":"/"
203
+ },
204
+ "input":{"shape":"DeleteBusinessReportScheduleRequest"},
205
+ "output":{"shape":"DeleteBusinessReportScheduleResponse"},
206
+ "errors":[
207
+ {"shape":"NotFoundException"},
208
+ {"shape":"ConcurrentModificationException"}
209
+ ]
210
+ },
186
211
  "DeleteConferenceProvider":{
187
212
  "name":"DeleteConferenceProvider",
188
213
  "http":{
@@ -466,6 +491,15 @@
466
491
  {"shape":"NotFoundException"}
467
492
  ]
468
493
  },
494
+ "ListBusinessReportSchedules":{
495
+ "name":"ListBusinessReportSchedules",
496
+ "http":{
497
+ "method":"POST",
498
+ "requestUri":"/"
499
+ },
500
+ "input":{"shape":"ListBusinessReportSchedulesRequest"},
501
+ "output":{"shape":"ListBusinessReportSchedulesResponse"}
502
+ },
469
503
  "ListConferenceProviders":{
470
504
  "name":"ListConferenceProviders",
471
505
  "http":{
@@ -766,6 +800,19 @@
766
800
  {"shape":"ConcurrentModificationException"}
767
801
  ]
768
802
  },
803
+ "UpdateBusinessReportSchedule":{
804
+ "name":"UpdateBusinessReportSchedule",
805
+ "http":{
806
+ "method":"POST",
807
+ "requestUri":"/"
808
+ },
809
+ "input":{"shape":"UpdateBusinessReportScheduleRequest"},
810
+ "output":{"shape":"UpdateBusinessReportScheduleResponse"},
811
+ "errors":[
812
+ {"shape":"NotFoundException"},
813
+ {"shape":"ConcurrentModificationException"}
814
+ ]
815
+ },
769
816
  "UpdateConferenceProvider":{
770
817
  "name":"UpdateConferenceProvider",
771
818
  "http":{
@@ -980,6 +1027,90 @@
980
1027
  "type":"list",
981
1028
  "member":{"shape":"BulletPoint"}
982
1029
  },
1030
+ "BusinessReport":{
1031
+ "type":"structure",
1032
+ "members":{
1033
+ "Status":{"shape":"BusinessReportStatus"},
1034
+ "FailureCode":{"shape":"BusinessReportFailureCode"},
1035
+ "S3Location":{"shape":"BusinessReportS3Location"},
1036
+ "DeliveryTime":{"shape":"Timestamp"},
1037
+ "DownloadUrl":{"shape":"BusinessReportDownloadUrl"}
1038
+ }
1039
+ },
1040
+ "BusinessReportContentRange":{
1041
+ "type":"structure",
1042
+ "members":{
1043
+ "Interval":{"shape":"BusinessReportInterval"}
1044
+ }
1045
+ },
1046
+ "BusinessReportDownloadUrl":{"type":"string"},
1047
+ "BusinessReportFailureCode":{
1048
+ "type":"string",
1049
+ "enum":[
1050
+ "ACCESS_DENIED",
1051
+ "NO_SUCH_BUCKET",
1052
+ "INTERNAL_FAILURE"
1053
+ ]
1054
+ },
1055
+ "BusinessReportFormat":{
1056
+ "type":"string",
1057
+ "enum":[
1058
+ "CSV",
1059
+ "CSV_ZIP"
1060
+ ]
1061
+ },
1062
+ "BusinessReportInterval":{
1063
+ "type":"string",
1064
+ "enum":[
1065
+ "ONE_DAY",
1066
+ "ONE_WEEK"
1067
+ ]
1068
+ },
1069
+ "BusinessReportRecurrence":{
1070
+ "type":"structure",
1071
+ "members":{
1072
+ "StartDate":{"shape":"Date"}
1073
+ }
1074
+ },
1075
+ "BusinessReportS3Location":{
1076
+ "type":"structure",
1077
+ "members":{
1078
+ "Path":{"shape":"BusinessReportS3Path"},
1079
+ "BucketName":{"shape":"CustomerS3BucketName"}
1080
+ }
1081
+ },
1082
+ "BusinessReportS3Path":{"type":"string"},
1083
+ "BusinessReportSchedule":{
1084
+ "type":"structure",
1085
+ "members":{
1086
+ "ScheduleArn":{"shape":"Arn"},
1087
+ "ScheduleName":{"shape":"BusinessReportScheduleName"},
1088
+ "S3BucketName":{"shape":"CustomerS3BucketName"},
1089
+ "S3KeyPrefix":{"shape":"S3KeyPrefix"},
1090
+ "Format":{"shape":"BusinessReportFormat"},
1091
+ "ContentRange":{"shape":"BusinessReportContentRange"},
1092
+ "Recurrence":{"shape":"BusinessReportRecurrence"},
1093
+ "LastBusinessReport":{"shape":"BusinessReport"}
1094
+ }
1095
+ },
1096
+ "BusinessReportScheduleList":{
1097
+ "type":"list",
1098
+ "member":{"shape":"BusinessReportSchedule"}
1099
+ },
1100
+ "BusinessReportScheduleName":{
1101
+ "type":"string",
1102
+ "max":64,
1103
+ "min":0,
1104
+ "pattern":"[\\u0009\\u000A\\u000D\\u0020-\\u007E\\u0085\\u00A0-\\uD7FF\\uE000-\\uFFFD\\u10000-\\u10FFFF]*"
1105
+ },
1106
+ "BusinessReportStatus":{
1107
+ "type":"string",
1108
+ "enum":[
1109
+ "RUNNING",
1110
+ "SUCCEEDED",
1111
+ "FAILED"
1112
+ ]
1113
+ },
983
1114
  "Category":{
984
1115
  "type":"structure",
985
1116
  "members":{
@@ -1122,6 +1253,31 @@
1122
1253
  "AddressBookArn":{"shape":"Arn"}
1123
1254
  }
1124
1255
  },
1256
+ "CreateBusinessReportScheduleRequest":{
1257
+ "type":"structure",
1258
+ "required":[
1259
+ "Format",
1260
+ "ContentRange"
1261
+ ],
1262
+ "members":{
1263
+ "ScheduleName":{"shape":"BusinessReportScheduleName"},
1264
+ "S3BucketName":{"shape":"CustomerS3BucketName"},
1265
+ "S3KeyPrefix":{"shape":"S3KeyPrefix"},
1266
+ "Format":{"shape":"BusinessReportFormat"},
1267
+ "ContentRange":{"shape":"BusinessReportContentRange"},
1268
+ "Recurrence":{"shape":"BusinessReportRecurrence"},
1269
+ "ClientRequestToken":{
1270
+ "shape":"ClientRequestToken",
1271
+ "idempotencyToken":true
1272
+ }
1273
+ }
1274
+ },
1275
+ "CreateBusinessReportScheduleResponse":{
1276
+ "type":"structure",
1277
+ "members":{
1278
+ "ScheduleArn":{"shape":"Arn"}
1279
+ }
1280
+ },
1125
1281
  "CreateConferenceProviderRequest":{
1126
1282
  "type":"structure",
1127
1283
  "required":[
@@ -1149,10 +1305,7 @@
1149
1305
  },
1150
1306
  "CreateContactRequest":{
1151
1307
  "type":"structure",
1152
- "required":[
1153
- "FirstName",
1154
- "PhoneNumber"
1155
- ],
1308
+ "required":["FirstName"],
1156
1309
  "members":{
1157
1310
  "DisplayName":{"shape":"ContactName"},
1158
1311
  "FirstName":{"shape":"ContactName"},
@@ -1262,6 +1415,14 @@
1262
1415
  "UserArn":{"shape":"Arn"}
1263
1416
  }
1264
1417
  },
1418
+ "CustomerS3BucketName":{
1419
+ "type":"string",
1420
+ "pattern":"[a-z0-9-\\.]{3,63}"
1421
+ },
1422
+ "Date":{
1423
+ "type":"string",
1424
+ "pattern":"^\\d{4}\\-(0?[1-9]|1[012])\\-(0?[1-9]|[12][0-9]|3[01])$"
1425
+ },
1265
1426
  "DeleteAddressBookRequest":{
1266
1427
  "type":"structure",
1267
1428
  "required":["AddressBookArn"],
@@ -1274,6 +1435,18 @@
1274
1435
  "members":{
1275
1436
  }
1276
1437
  },
1438
+ "DeleteBusinessReportScheduleRequest":{
1439
+ "type":"structure",
1440
+ "required":["ScheduleArn"],
1441
+ "members":{
1442
+ "ScheduleArn":{"shape":"Arn"}
1443
+ }
1444
+ },
1445
+ "DeleteBusinessReportScheduleResponse":{
1446
+ "type":"structure",
1447
+ "members":{
1448
+ }
1449
+ },
1277
1450
  "DeleteConferenceProviderRequest":{
1278
1451
  "type":"structure",
1279
1452
  "required":["ConferenceProviderArn"],
@@ -1568,7 +1741,8 @@
1568
1741
  },
1569
1742
  "E164PhoneNumber":{
1570
1743
  "type":"string",
1571
- "pattern":"^\\+\\d{8,}$"
1744
+ "pattern":"^\\+\\d{8,}$",
1745
+ "sensitive":true
1572
1746
  },
1573
1747
  "Email":{
1574
1748
  "type":"string",
@@ -1836,6 +2010,20 @@
1836
2010
  },
1837
2011
  "exception":true
1838
2012
  },
2013
+ "ListBusinessReportSchedulesRequest":{
2014
+ "type":"structure",
2015
+ "members":{
2016
+ "NextToken":{"shape":"NextToken"},
2017
+ "MaxResults":{"shape":"MaxResults"}
2018
+ }
2019
+ },
2020
+ "ListBusinessReportSchedulesResponse":{
2021
+ "type":"structure",
2022
+ "members":{
2023
+ "BusinessReportSchedules":{"shape":"BusinessReportScheduleList"},
2024
+ "NextToken":{"shape":"NextToken"}
2025
+ }
2026
+ },
1839
2027
  "ListConferenceProvidersRequest":{
1840
2028
  "type":"structure",
1841
2029
  "members":{
@@ -1993,6 +2181,10 @@
1993
2181
  "max":2,
1994
2182
  "min":1
1995
2183
  },
2184
+ "OutboundPhoneNumber":{
2185
+ "type":"string",
2186
+ "pattern":"\\d{10}"
2187
+ },
1996
2188
  "PSTNDialIn":{
1997
2189
  "type":"structure",
1998
2190
  "required":[
@@ -2003,15 +2195,11 @@
2003
2195
  ],
2004
2196
  "members":{
2005
2197
  "CountryCode":{"shape":"CountryCode"},
2006
- "PhoneNumber":{"shape":"PhoneNumber"},
2198
+ "PhoneNumber":{"shape":"OutboundPhoneNumber"},
2007
2199
  "OneClickIdDelay":{"shape":"OneClickIdDelay"},
2008
2200
  "OneClickPinDelay":{"shape":"OneClickPinDelay"}
2009
2201
  }
2010
2202
  },
2011
- "PhoneNumber":{
2012
- "type":"string",
2013
- "pattern":"\\d{10}"
2014
- },
2015
2203
  "PrivacyPolicy":{"type":"string"},
2016
2204
  "ProductDescription":{"type":"string"},
2017
2205
  "ProductId":{
@@ -2261,6 +2449,12 @@
2261
2449
  "type":"list",
2262
2450
  "member":{"shape":"RoomSkillParameter"}
2263
2451
  },
2452
+ "S3KeyPrefix":{
2453
+ "type":"string",
2454
+ "max":100,
2455
+ "min":0,
2456
+ "pattern":"[A-Za-z0-9!_\\-\\.\\*'()/]*"
2457
+ },
2264
2458
  "SampleUtterances":{
2265
2459
  "type":"list",
2266
2460
  "member":{"shape":"Utterance"}
@@ -2676,6 +2870,23 @@
2676
2870
  "members":{
2677
2871
  }
2678
2872
  },
2873
+ "UpdateBusinessReportScheduleRequest":{
2874
+ "type":"structure",
2875
+ "required":["ScheduleArn"],
2876
+ "members":{
2877
+ "ScheduleArn":{"shape":"Arn"},
2878
+ "S3BucketName":{"shape":"CustomerS3BucketName"},
2879
+ "S3KeyPrefix":{"shape":"S3KeyPrefix"},
2880
+ "Format":{"shape":"BusinessReportFormat"},
2881
+ "ScheduleName":{"shape":"BusinessReportScheduleName"},
2882
+ "Recurrence":{"shape":"BusinessReportRecurrence"}
2883
+ }
2884
+ },
2885
+ "UpdateBusinessReportScheduleResponse":{
2886
+ "type":"structure",
2887
+ "members":{
2888
+ }
2889
+ },
2679
2890
  "UpdateConferenceProviderRequest":{
2680
2891
  "type":"structure",
2681
2892
  "required":[
@@ -1,5 +1,10 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListBusinessReportSchedules": {
4
+ "input_token": "NextToken",
5
+ "output_token": "NextToken",
6
+ "limit_key": "MaxResults"
7
+ },
3
8
  "ListConferenceProviders": {
4
9
  "input_token": "NextToken",
5
10
  "output_token": "NextToken",
@@ -13275,6 +13275,7 @@
13275
13275
  "p3.2xlarge",
13276
13276
  "p3.8xlarge",
13277
13277
  "p3.16xlarge",
13278
+ "p3dn.24xlarge",
13278
13279
  "d2.xlarge",
13279
13280
  "d2.2xlarge",
13280
13281
  "d2.4xlarge",
@@ -768,6 +768,22 @@
768
768
  {"shape":"ServiceFailureException"}
769
769
  ]
770
770
  },
771
+ "GenerateServiceLastAccessedDetails":{
772
+ "name":"GenerateServiceLastAccessedDetails",
773
+ "http":{
774
+ "method":"POST",
775
+ "requestUri":"/"
776
+ },
777
+ "input":{"shape":"GenerateServiceLastAccessedDetailsRequest"},
778
+ "output":{
779
+ "shape":"GenerateServiceLastAccessedDetailsResponse",
780
+ "resultWrapper":"GenerateServiceLastAccessedDetailsResult"
781
+ },
782
+ "errors":[
783
+ {"shape":"NoSuchEntityException"},
784
+ {"shape":"InvalidInputException"}
785
+ ]
786
+ },
771
787
  "GetAccessKeyLastUsed":{
772
788
  "name":"GetAccessKeyLastUsed",
773
789
  "http":{
@@ -1071,6 +1087,38 @@
1071
1087
  {"shape":"ServiceFailureException"}
1072
1088
  ]
1073
1089
  },
1090
+ "GetServiceLastAccessedDetails":{
1091
+ "name":"GetServiceLastAccessedDetails",
1092
+ "http":{
1093
+ "method":"POST",
1094
+ "requestUri":"/"
1095
+ },
1096
+ "input":{"shape":"GetServiceLastAccessedDetailsRequest"},
1097
+ "output":{
1098
+ "shape":"GetServiceLastAccessedDetailsResponse",
1099
+ "resultWrapper":"GetServiceLastAccessedDetailsResult"
1100
+ },
1101
+ "errors":[
1102
+ {"shape":"NoSuchEntityException"},
1103
+ {"shape":"InvalidInputException"}
1104
+ ]
1105
+ },
1106
+ "GetServiceLastAccessedDetailsWithEntities":{
1107
+ "name":"GetServiceLastAccessedDetailsWithEntities",
1108
+ "http":{
1109
+ "method":"POST",
1110
+ "requestUri":"/"
1111
+ },
1112
+ "input":{"shape":"GetServiceLastAccessedDetailsWithEntitiesRequest"},
1113
+ "output":{
1114
+ "shape":"GetServiceLastAccessedDetailsWithEntitiesResponse",
1115
+ "resultWrapper":"GetServiceLastAccessedDetailsWithEntitiesResult"
1116
+ },
1117
+ "errors":[
1118
+ {"shape":"NoSuchEntityException"},
1119
+ {"shape":"InvalidInputException"}
1120
+ ]
1121
+ },
1074
1122
  "GetServiceLinkedRoleDeletionStatus":{
1075
1123
  "name":"GetServiceLinkedRoleDeletionStatus",
1076
1124
  "http":{
@@ -1343,6 +1391,22 @@
1343
1391
  {"shape":"ServiceFailureException"}
1344
1392
  ]
1345
1393
  },
1394
+ "ListPoliciesGrantingServiceAccess":{
1395
+ "name":"ListPoliciesGrantingServiceAccess",
1396
+ "http":{
1397
+ "method":"POST",
1398
+ "requestUri":"/"
1399
+ },
1400
+ "input":{"shape":"ListPoliciesGrantingServiceAccessRequest"},
1401
+ "output":{
1402
+ "shape":"ListPoliciesGrantingServiceAccessResponse",
1403
+ "resultWrapper":"ListPoliciesGrantingServiceAccessResult"
1404
+ },
1405
+ "errors":[
1406
+ {"shape":"NoSuchEntityException"},
1407
+ {"shape":"InvalidInputException"}
1408
+ ]
1409
+ },
1346
1410
  "ListPolicyVersions":{
1347
1411
  "name":"ListPolicyVersions",
1348
1412
  "http":{
@@ -2387,9 +2451,9 @@
2387
2451
  "RoleName":{"shape":"roleNameType"},
2388
2452
  "AssumeRolePolicyDocument":{"shape":"policyDocumentType"},
2389
2453
  "Description":{"shape":"roleDescriptionType"},
2390
- "Tags":{"shape":"tagListType"},
2391
2454
  "MaxSessionDuration":{"shape":"roleMaxSessionDurationType"},
2392
- "PermissionsBoundary":{"shape":"arnType"}
2455
+ "PermissionsBoundary":{"shape":"arnType"},
2456
+ "Tags":{"shape":"tagListType"}
2393
2457
  }
2394
2458
  },
2395
2459
  "CreateRoleResponse":{
@@ -2454,8 +2518,8 @@
2454
2518
  "members":{
2455
2519
  "Path":{"shape":"pathType"},
2456
2520
  "UserName":{"shape":"userNameType"},
2457
- "Tags":{"shape":"tagListType"},
2458
- "PermissionsBoundary":{"shape":"arnType"}
2521
+ "PermissionsBoundary":{"shape":"arnType"},
2522
+ "Tags":{"shape":"tagListType"}
2459
2523
  }
2460
2524
  },
2461
2525
  "CreateUserResponse":{
@@ -2827,6 +2891,30 @@
2827
2891
  },
2828
2892
  "exception":true
2829
2893
  },
2894
+ "EntityDetails":{
2895
+ "type":"structure",
2896
+ "required":["EntityInfo"],
2897
+ "members":{
2898
+ "EntityInfo":{"shape":"EntityInfo"},
2899
+ "LastAuthenticated":{"shape":"dateType"}
2900
+ }
2901
+ },
2902
+ "EntityInfo":{
2903
+ "type":"structure",
2904
+ "required":[
2905
+ "Arn",
2906
+ "Name",
2907
+ "Type",
2908
+ "Id"
2909
+ ],
2910
+ "members":{
2911
+ "Arn":{"shape":"arnType"},
2912
+ "Name":{"shape":"userNameType"},
2913
+ "Type":{"shape":"policyOwnerEntityType"},
2914
+ "Id":{"shape":"idType"},
2915
+ "Path":{"shape":"pathType"}
2916
+ }
2917
+ },
2830
2918
  "EntityTemporarilyUnmodifiableException":{
2831
2919
  "type":"structure",
2832
2920
  "members":{
@@ -2849,6 +2937,17 @@
2849
2937
  "AWSManagedPolicy"
2850
2938
  ]
2851
2939
  },
2940
+ "ErrorDetails":{
2941
+ "type":"structure",
2942
+ "required":[
2943
+ "Message",
2944
+ "Code"
2945
+ ],
2946
+ "members":{
2947
+ "Message":{"shape":"stringType"},
2948
+ "Code":{"shape":"stringType"}
2949
+ }
2950
+ },
2852
2951
  "EvalDecisionDetailsType":{
2853
2952
  "type":"map",
2854
2953
  "key":{"shape":"EvalDecisionSourceType"},
@@ -2887,6 +2986,19 @@
2887
2986
  "Description":{"shape":"ReportStateDescriptionType"}
2888
2987
  }
2889
2988
  },
2989
+ "GenerateServiceLastAccessedDetailsRequest":{
2990
+ "type":"structure",
2991
+ "required":["Arn"],
2992
+ "members":{
2993
+ "Arn":{"shape":"arnType"}
2994
+ }
2995
+ },
2996
+ "GenerateServiceLastAccessedDetailsResponse":{
2997
+ "type":"structure",
2998
+ "members":{
2999
+ "JobId":{"shape":"jobIDType"}
3000
+ }
3001
+ },
2890
3002
  "GetAccessKeyLastUsedRequest":{
2891
3003
  "type":"structure",
2892
3004
  "required":["AccessKeyId"],
@@ -3168,6 +3280,64 @@
3168
3280
  "ServerCertificate":{"shape":"ServerCertificate"}
3169
3281
  }
3170
3282
  },
3283
+ "GetServiceLastAccessedDetailsRequest":{
3284
+ "type":"structure",
3285
+ "required":["JobId"],
3286
+ "members":{
3287
+ "JobId":{"shape":"jobIDType"},
3288
+ "MaxItems":{"shape":"maxItemsType"},
3289
+ "Marker":{"shape":"markerType"}
3290
+ }
3291
+ },
3292
+ "GetServiceLastAccessedDetailsResponse":{
3293
+ "type":"structure",
3294
+ "required":[
3295
+ "JobStatus",
3296
+ "JobCreationDate",
3297
+ "ServicesLastAccessed",
3298
+ "JobCompletionDate"
3299
+ ],
3300
+ "members":{
3301
+ "JobStatus":{"shape":"jobStatusType"},
3302
+ "JobCreationDate":{"shape":"dateType"},
3303
+ "ServicesLastAccessed":{"shape":"ServicesLastAccessed"},
3304
+ "JobCompletionDate":{"shape":"dateType"},
3305
+ "IsTruncated":{"shape":"booleanType"},
3306
+ "Marker":{"shape":"markerType"},
3307
+ "Error":{"shape":"ErrorDetails"}
3308
+ }
3309
+ },
3310
+ "GetServiceLastAccessedDetailsWithEntitiesRequest":{
3311
+ "type":"structure",
3312
+ "required":[
3313
+ "JobId",
3314
+ "ServiceNamespace"
3315
+ ],
3316
+ "members":{
3317
+ "JobId":{"shape":"jobIDType"},
3318
+ "ServiceNamespace":{"shape":"serviceNamespaceType"},
3319
+ "MaxItems":{"shape":"maxItemsType"},
3320
+ "Marker":{"shape":"markerType"}
3321
+ }
3322
+ },
3323
+ "GetServiceLastAccessedDetailsWithEntitiesResponse":{
3324
+ "type":"structure",
3325
+ "required":[
3326
+ "JobStatus",
3327
+ "JobCreationDate",
3328
+ "JobCompletionDate",
3329
+ "EntityDetailsList"
3330
+ ],
3331
+ "members":{
3332
+ "JobStatus":{"shape":"jobStatusType"},
3333
+ "JobCreationDate":{"shape":"dateType"},
3334
+ "JobCompletionDate":{"shape":"dateType"},
3335
+ "EntityDetailsList":{"shape":"entityDetailsListType"},
3336
+ "IsTruncated":{"shape":"booleanType"},
3337
+ "Marker":{"shape":"markerType"},
3338
+ "Error":{"shape":"ErrorDetails"}
3339
+ }
3340
+ },
3171
3341
  "GetServiceLinkedRoleDeletionStatusRequest":{
3172
3342
  "type":"structure",
3173
3343
  "required":["DeletionTaskId"],
@@ -3578,6 +3748,34 @@
3578
3748
  "OpenIDConnectProviderList":{"shape":"OpenIDConnectProviderListType"}
3579
3749
  }
3580
3750
  },
3751
+ "ListPoliciesGrantingServiceAccessEntry":{
3752
+ "type":"structure",
3753
+ "members":{
3754
+ "ServiceNamespace":{"shape":"serviceNamespaceType"},
3755
+ "Policies":{"shape":"policyGrantingServiceAccessListType"}
3756
+ }
3757
+ },
3758
+ "ListPoliciesGrantingServiceAccessRequest":{
3759
+ "type":"structure",
3760
+ "required":[
3761
+ "Arn",
3762
+ "ServiceNamespaces"
3763
+ ],
3764
+ "members":{
3765
+ "Marker":{"shape":"markerType"},
3766
+ "Arn":{"shape":"arnType"},
3767
+ "ServiceNamespaces":{"shape":"serviceNamespaceListType"}
3768
+ }
3769
+ },
3770
+ "ListPoliciesGrantingServiceAccessResponse":{
3771
+ "type":"structure",
3772
+ "required":["PoliciesGrantingServiceAccess"],
3773
+ "members":{
3774
+ "PoliciesGrantingServiceAccess":{"shape":"listPolicyGrantingServiceAccessResponseListType"},
3775
+ "IsTruncated":{"shape":"booleanType"},
3776
+ "Marker":{"shape":"markerType"}
3777
+ }
3778
+ },
3581
3779
  "ListPoliciesRequest":{
3582
3780
  "type":"structure",
3583
3781
  "members":{
@@ -3987,6 +4185,20 @@
3987
4185
  },
3988
4186
  "exception":true
3989
4187
  },
4188
+ "PolicyGrantingServiceAccess":{
4189
+ "type":"structure",
4190
+ "required":[
4191
+ "PolicyName",
4192
+ "PolicyType"
4193
+ ],
4194
+ "members":{
4195
+ "PolicyName":{"shape":"policyNameType"},
4196
+ "PolicyType":{"shape":"policyType"},
4197
+ "PolicyArn":{"shape":"arnType"},
4198
+ "EntityType":{"shape":"policyOwnerEntityType"},
4199
+ "EntityName":{"shape":"entityNameType"}
4200
+ }
4201
+ },
3990
4202
  "PolicyGroup":{
3991
4203
  "type":"structure",
3992
4204
  "members":{
@@ -4263,9 +4475,9 @@
4263
4475
  "CreateDate":{"shape":"dateType"},
4264
4476
  "AssumeRolePolicyDocument":{"shape":"policyDocumentType"},
4265
4477
  "Description":{"shape":"roleDescriptionType"},
4266
- "Tags":{"shape":"tagListType"},
4267
4478
  "MaxSessionDuration":{"shape":"roleMaxSessionDurationType"},
4268
- "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
4479
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"},
4480
+ "Tags":{"shape":"tagListType"}
4269
4481
  }
4270
4482
  },
4271
4483
  "RoleDetail":{
@@ -4280,8 +4492,8 @@
4280
4492
  "InstanceProfileList":{"shape":"instanceProfileListType"},
4281
4493
  "RolePolicyList":{"shape":"policyDetailListType"},
4282
4494
  "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"},
4283
- "Tags":{"shape":"tagListType"},
4284
- "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
4495
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"},
4496
+ "Tags":{"shape":"tagListType"}
4285
4497
  }
4286
4498
  },
4287
4499
  "RoleUsageListType":{
@@ -4395,6 +4607,20 @@
4395
4607
  },
4396
4608
  "exception":true
4397
4609
  },
4610
+ "ServiceLastAccessed":{
4611
+ "type":"structure",
4612
+ "required":[
4613
+ "ServiceName",
4614
+ "ServiceNamespace"
4615
+ ],
4616
+ "members":{
4617
+ "ServiceName":{"shape":"serviceNameType"},
4618
+ "LastAuthenticated":{"shape":"dateType"},
4619
+ "ServiceNamespace":{"shape":"serviceNamespaceType"},
4620
+ "LastAuthenticatedEntity":{"shape":"arnType"},
4621
+ "TotalAuthenticatedEntities":{"shape":"integerType"}
4622
+ }
4623
+ },
4398
4624
  "ServiceNotSupportedException":{
4399
4625
  "type":"structure",
4400
4626
  "members":{
@@ -4451,6 +4677,10 @@
4451
4677
  "type":"list",
4452
4678
  "member":{"shape":"ServiceSpecificCredentialMetadata"}
4453
4679
  },
4680
+ "ServicesLastAccessed":{
4681
+ "type":"list",
4682
+ "member":{"shape":"ServiceLastAccessed"}
4683
+ },
4454
4684
  "SetDefaultPolicyVersionRequest":{
4455
4685
  "type":"structure",
4456
4686
  "required":[
@@ -4859,8 +5089,8 @@
4859
5089
  "Arn":{"shape":"arnType"},
4860
5090
  "CreateDate":{"shape":"dateType"},
4861
5091
  "PasswordLastUsed":{"shape":"dateType"},
4862
- "Tags":{"shape":"tagListType"},
4863
- "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
5092
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"},
5093
+ "Tags":{"shape":"tagListType"}
4864
5094
  }
4865
5095
  },
4866
5096
  "UserDetail":{
@@ -4874,8 +5104,8 @@
4874
5104
  "UserPolicyList":{"shape":"policyDetailListType"},
4875
5105
  "GroupList":{"shape":"groupNameListType"},
4876
5106
  "AttachedManagedPolicies":{"shape":"attachedPoliciesListType"},
4877
- "Tags":{"shape":"tagListType"},
4878
- "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"}
5107
+ "PermissionsBoundary":{"shape":"AttachedPermissionsBoundary"},
5108
+ "Tags":{"shape":"tagListType"}
4879
5109
  }
4880
5110
  },
4881
5111
  "VirtualMFADevice":{
@@ -4994,10 +5224,20 @@
4994
5224
  ]
4995
5225
  },
4996
5226
  "entityAlreadyExistsMessage":{"type":"string"},
5227
+ "entityDetailsListType":{
5228
+ "type":"list",
5229
+ "member":{"shape":"EntityDetails"}
5230
+ },
4997
5231
  "entityListType":{
4998
5232
  "type":"list",
4999
5233
  "member":{"shape":"EntityType"}
5000
5234
  },
5235
+ "entityNameType":{
5236
+ "type":"string",
5237
+ "max":128,
5238
+ "min":1,
5239
+ "pattern":"[\\w+=,.@-]+"
5240
+ },
5001
5241
  "entityTemporarilyUnmodifiableMessage":{"type":"string"},
5002
5242
  "existingUserNameType":{
5003
5243
  "type":"string",
@@ -5039,13 +5279,31 @@
5039
5279
  "min":1,
5040
5280
  "pattern":"[\\w+=,.@-]+"
5041
5281
  },
5282
+ "integerType":{"type":"integer"},
5042
5283
  "invalidAuthenticationCodeMessage":{"type":"string"},
5043
5284
  "invalidCertificateMessage":{"type":"string"},
5044
5285
  "invalidInputMessage":{"type":"string"},
5045
5286
  "invalidPublicKeyMessage":{"type":"string"},
5046
5287
  "invalidUserTypeMessage":{"type":"string"},
5288
+ "jobIDType":{
5289
+ "type":"string",
5290
+ "max":36,
5291
+ "min":36
5292
+ },
5293
+ "jobStatusType":{
5294
+ "type":"string",
5295
+ "enum":[
5296
+ "IN_PROGRESS",
5297
+ "COMPLETED",
5298
+ "FAILED"
5299
+ ]
5300
+ },
5047
5301
  "keyPairMismatchMessage":{"type":"string"},
5048
5302
  "limitExceededMessage":{"type":"string"},
5303
+ "listPolicyGrantingServiceAccessResponseListType":{
5304
+ "type":"list",
5305
+ "member":{"shape":"ListPoliciesGrantingServiceAccessEntry"}
5306
+ },
5049
5307
  "malformedCertificateMessage":{"type":"string"},
5050
5308
  "malformedPolicyDocumentMessage":{"type":"string"},
5051
5309
  "markerType":{
@@ -5120,6 +5378,10 @@
5120
5378
  "member":{"shape":"PolicyVersion"}
5121
5379
  },
5122
5380
  "policyEvaluationErrorMessage":{"type":"string"},
5381
+ "policyGrantingServiceAccessListType":{
5382
+ "type":"list",
5383
+ "member":{"shape":"PolicyGrantingServiceAccess"}
5384
+ },
5123
5385
  "policyListType":{
5124
5386
  "type":"list",
5125
5387
  "member":{"shape":"Policy"}
@@ -5135,6 +5397,14 @@
5135
5397
  "pattern":"[\\w+=,.@-]+"
5136
5398
  },
5137
5399
  "policyNotAttachableMessage":{"type":"string"},
5400
+ "policyOwnerEntityType":{
5401
+ "type":"string",
5402
+ "enum":[
5403
+ "USER",
5404
+ "ROLE",
5405
+ "GROUP"
5406
+ ]
5407
+ },
5138
5408
  "policyPathType":{
5139
5409
  "type":"string",
5140
5410
  "pattern":"((/[A-Za-z0-9\\.,\\+@=_-]+)*)/"
@@ -5147,6 +5417,13 @@
5147
5417
  "Local"
5148
5418
  ]
5149
5419
  },
5420
+ "policyType":{
5421
+ "type":"string",
5422
+ "enum":[
5423
+ "INLINE",
5424
+ "MANAGED"
5425
+ ]
5426
+ },
5150
5427
  "policyVersionIdType":{
5151
5428
  "type":"string",
5152
5429
  "pattern":"v[1-9][0-9]*(\\.[A-Za-z0-9-]*)?"
@@ -5218,6 +5495,19 @@
5218
5495
  },
5219
5496
  "serviceFailureExceptionMessage":{"type":"string"},
5220
5497
  "serviceName":{"type":"string"},
5498
+ "serviceNameType":{"type":"string"},
5499
+ "serviceNamespaceListType":{
5500
+ "type":"list",
5501
+ "member":{"shape":"serviceNamespaceType"},
5502
+ "max":200,
5503
+ "min":1
5504
+ },
5505
+ "serviceNamespaceType":{
5506
+ "type":"string",
5507
+ "max":64,
5508
+ "min":1,
5509
+ "pattern":"[\\w-]*"
5510
+ },
5221
5511
  "serviceNotSupportedMessage":{"type":"string"},
5222
5512
  "servicePassword":{
5223
5513
  "type":"string",
@@ -5281,7 +5571,8 @@
5281
5571
  "summaryValueType":{"type":"integer"},
5282
5572
  "tagKeyListType":{
5283
5573
  "type":"list",
5284
- "member":{"shape":"tagKeyType"}
5574
+ "member":{"shape":"tagKeyType"},
5575
+ "max":50
5285
5576
  },
5286
5577
  "tagKeyType":{
5287
5578
  "type":"string",
@@ -5291,7 +5582,8 @@
5291
5582
  },
5292
5583
  "tagListType":{
5293
5584
  "type":"list",
5294
- "member":{"shape":"Tag"}
5585
+ "member":{"shape":"Tag"},
5586
+ "max":50
5295
5587
  },
5296
5588
  "tagValueType":{
5297
5589
  "type":"string",
@@ -511,6 +511,25 @@
511
511
  "title": "To remove a virtual MFA device"
512
512
  }
513
513
  ],
514
+ "GenerateServiceLastAccessedDetails": [
515
+ {
516
+ "input": {
517
+ "Arn": "arn:aws:iam::123456789012:policy/ExamplePolicy1"
518
+ },
519
+ "output": {
520
+ "JobId": "examplef-1305-c245-eba4-71fe298bcda7"
521
+ },
522
+ "comments": {
523
+ "input": {
524
+ },
525
+ "output": {
526
+ }
527
+ },
528
+ "description": "The following operation generates a report for the policy: ExamplePolicy1",
529
+ "id": "generateaccessdata-policy-1541695178514",
530
+ "title": "To generate a service last accessed data report for a policy"
531
+ }
532
+ ],
514
533
  "GetAccountPasswordPolicy": [
515
534
  {
516
535
  "output": {
@@ -663,6 +682,86 @@
663
682
  "title": "To get information about an IAM role"
664
683
  }
665
684
  ],
685
+ "GetServiceLastAccessedDetails": [
686
+ {
687
+ "input": {
688
+ "JobId": "examplef-1305-c245-eba4-71fe298bcda7"
689
+ },
690
+ "output": {
691
+ "IsTruncated": false,
692
+ "JobCompletionDate": "2018-10-24T19:47:35.241Z",
693
+ "JobCreationDate": "2018-10-24T19:47:31.466Z",
694
+ "JobStatus": "COMPLETED",
695
+ "ServicesLastAccessed": [
696
+ {
697
+ "LastAuthenticated": "2018-10-24T19:11:00Z",
698
+ "LastAuthenticatedEntity": "arn:aws:iam::123456789012:user/AWSExampleUser01",
699
+ "ServiceName": "AWS Identity and Access Management",
700
+ "ServiceNamespace": "iam",
701
+ "TotalAuthenticatedEntities": 2
702
+ },
703
+ {
704
+ "ServiceName": "Amazon Simple Storage Service",
705
+ "ServiceNamespace": "s3",
706
+ "TotalAuthenticatedEntities": 0
707
+ }
708
+ ]
709
+ },
710
+ "comments": {
711
+ "input": {
712
+ },
713
+ "output": {
714
+ }
715
+ },
716
+ "description": "The following operation gets details about the report with the job ID: examplef-1305-c245-eba4-71fe298bcda7",
717
+ "id": "getserviceaccessdetails-policy-1541696298085",
718
+ "title": "To get details from a previously-generated report"
719
+ }
720
+ ],
721
+ "GetServiceLastAccessedDetailsWithEntities": [
722
+ {
723
+ "input": {
724
+ "JobId": "examplef-1305-c245-eba4-71fe298bcda7",
725
+ "ServiceNamespace": "iam"
726
+ },
727
+ "output": {
728
+ "EntityDetailsList": [
729
+ {
730
+ "EntityInfo": {
731
+ "Arn": "arn:aws:iam::123456789012:user/AWSExampleUser01",
732
+ "Id": "AIDAEX2EXAMPLEB6IGCDC",
733
+ "Name": "AWSExampleUser01",
734
+ "Path": "/",
735
+ "Type": "USER"
736
+ },
737
+ "LastAuthenticated": "2018-10-24T19:10:00Z"
738
+ },
739
+ {
740
+ "EntityInfo": {
741
+ "Arn": "arn:aws:iam::123456789012:role/AWSExampleRole01",
742
+ "Id": "AROAEAEXAMPLEIANXSIU4",
743
+ "Name": "AWSExampleRole01",
744
+ "Path": "/",
745
+ "Type": "ROLE"
746
+ }
747
+ }
748
+ ],
749
+ "IsTruncated": false,
750
+ "JobCompletionDate": "2018-10-24T19:47:35.241Z",
751
+ "JobCreationDate": "2018-10-24T19:47:31.466Z",
752
+ "JobStatus": "COMPLETED"
753
+ },
754
+ "comments": {
755
+ "input": {
756
+ },
757
+ "output": {
758
+ }
759
+ },
760
+ "description": "The following operation returns details about the entities that attempted to access the IAM service.",
761
+ "id": "getserviceaccessdetailsentity-policy-1541697621384",
762
+ "title": "To get sntity details from a previously-generated report"
763
+ }
764
+ ],
666
765
  "GetUser": [
667
766
  {
668
767
  "input": {
@@ -836,6 +935,57 @@
836
935
  "title": "To list the groups that an IAM user belongs to"
837
936
  }
838
937
  ],
938
+ "ListPoliciesGrantingServiceAccess": [
939
+ {
940
+ "input": {
941
+ "Arn": "arn:aws:iam::123456789012:user/ExampleUser01",
942
+ "ServiceNamespaces": [
943
+ "iam",
944
+ "ec2"
945
+ ]
946
+ },
947
+ "output": {
948
+ "IsTruncated": false,
949
+ "PoliciesGrantingServiceAccess": [
950
+ {
951
+ "Policies": [
952
+ {
953
+ "PolicyArn": "arn:aws:iam::123456789012:policy/ExampleIamPolicy",
954
+ "PolicyName": "ExampleIamPolicy",
955
+ "PolicyType": "MANAGED"
956
+ },
957
+ {
958
+ "EntityName": "AWSExampleGroup1",
959
+ "EntityType": "GROUP",
960
+ "PolicyName": "ExampleGroup1Policy",
961
+ "PolicyType": "INLINE"
962
+ }
963
+ ],
964
+ "ServiceNamespace": "iam"
965
+ },
966
+ {
967
+ "Policies": [
968
+ {
969
+ "PolicyArn": "arn:aws:iam::123456789012:policy/ExampleEc2Policy",
970
+ "PolicyName": "ExampleEc2Policy",
971
+ "PolicyType": "MANAGED"
972
+ }
973
+ ],
974
+ "ServiceNamespace": "ec2"
975
+ }
976
+ ]
977
+ },
978
+ "comments": {
979
+ "input": {
980
+ },
981
+ "output": {
982
+ }
983
+ },
984
+ "description": "The following operation lists policies that allow ExampleUser01 to access IAM or EC2.",
985
+ "id": "listpoliciesaccess-user-1541698749508",
986
+ "title": "To list policies that allow access to a service"
987
+ }
988
+ ],
839
989
  "ListRoleTags": [
840
990
  {
841
991
  "input": {
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.187'
2
+ VERSION = '2.11.188'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.187
4
+ version: 2.11.188
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-06 00:00:00.000000000 Z
11
+ date: 2018-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath