aws-sdk 2.1012.0 → 2.1013.0

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.
@@ -395,7 +395,7 @@ return /******/ (function(modules) { // webpackBootstrap
395
395
  /**
396
396
  * @constant
397
397
  */
398
- VERSION: '2.1012.0',
398
+ VERSION: '2.1013.0',
399
399
 
400
400
  /**
401
401
  * @api private
@@ -3389,30 +3389,24 @@ return /******/ (function(modules) { // webpackBootstrap
3389
3389
  var params = {};
3390
3390
  var payloadShape = input.members[input.payload];
3391
3391
  params = req.params[input.payload];
3392
- if (params === undefined) return;
3393
3392
 
3394
3393
  if (payloadShape.type === 'structure') {
3395
- req.httpRequest.body = builder.build(params, payloadShape);
3394
+ req.httpRequest.body = builder.build(params || {}, payloadShape);
3396
3395
  applyContentTypeHeader(req);
3397
- } else { // non-JSON payload
3396
+ } else if (params !== undefined) {
3397
+ // non-JSON payload
3398
3398
  req.httpRequest.body = params;
3399
3399
  if (payloadShape.type === 'binary' || payloadShape.isStreaming) {
3400
3400
  applyContentTypeHeader(req, true);
3401
3401
  }
3402
3402
  }
3403
3403
  } else {
3404
- var body = builder.build(req.params, input);
3405
- if (body !== '{}' || req.httpRequest.method !== 'GET') { //don't send empty body for GET method
3406
- req.httpRequest.body = body;
3407
- }
3404
+ req.httpRequest.body = builder.build(req.params, input);
3408
3405
  applyContentTypeHeader(req);
3409
3406
  }
3410
3407
  }
3411
3408
 
3412
3409
  function applyContentTypeHeader(req, isBinary) {
3413
- var operation = req.service.api.operations[req.operation];
3414
- var input = operation.input;
3415
-
3416
3410
  if (!req.httpRequest.headers['Content-Type']) {
3417
3411
  var type = isBinary ? 'binary/octet-stream' : 'application/json';
3418
3412
  req.httpRequest.headers['Content-Type'] = type;
@@ -3422,8 +3416,8 @@ return /******/ (function(modules) { // webpackBootstrap
3422
3416
  function buildRequest(req) {
3423
3417
  Rest.buildRequest(req);
3424
3418
 
3425
- // never send body payload on HEAD/DELETE
3426
- if (['HEAD', 'DELETE'].indexOf(req.httpRequest.method) < 0) {
3419
+ // never send body payload on GET/HEAD/DELETE
3420
+ if (['GET', 'HEAD', 'DELETE'].indexOf(req.httpRequest.method) < 0) {
3427
3421
  populateBody(req);
3428
3422
  }
3429
3423
  }
@@ -5189,7 +5183,7 @@ return /******/ (function(modules) { // webpackBootstrap
5189
5183
 
5190
5184
  var e = endpoint;
5191
5185
  e = e.replace(/\{service\}/g, this.api.endpointPrefix);
5192
- e = e.replace(/\{region\}/g, this.config.region);
5186
+ e = e.replace(/\{region\}/g, regionConfig.getRealRegion(this.config.region));
5193
5187
  e = e.replace(/\{scheme\}/g, this.config.sslEnabled ? 'https' : 'http');
5194
5188
  return e;
5195
5189
  },
@@ -5396,6 +5390,10 @@ return /******/ (function(modules) { // webpackBootstrap
5396
5390
 
5397
5391
  function generateRegionPrefix(region) {
5398
5392
  if (!region) return null;
5393
+ if (isFipsRegion(region)) {
5394
+ if (isFipsCnRegion(region)) return 'fips-cn-*';
5395
+ return 'fips-*';
5396
+ }
5399
5397
 
5400
5398
  var parts = region.split('-');
5401
5399
  if (parts.length < 3) return null;
@@ -5449,6 +5447,12 @@ return /******/ (function(modules) { // webpackBootstrap
5449
5447
  );
5450
5448
  }
5451
5449
 
5450
+ // set FIPS signingRegion and endpoint.
5451
+ if (isFipsRegion(service.config.region)) {
5452
+ config = util.copy(config);
5453
+ service.signingRegion = getRealRegion(service.config.region);
5454
+ }
5455
+
5452
5456
  // set global endpoint
5453
5457
  service.isGlobalEndpoint = !!config.globalEndpoint;
5454
5458
  if (config.signingRegion) {
@@ -5483,12 +5487,35 @@ return /******/ (function(modules) { // webpackBootstrap
5483
5487
  return defaultSuffix;
5484
5488
  }
5485
5489
 
5490
+ function isFipsRegion(region) {
5491
+ return region && (region.startsWith('fips-') || region.endsWith('-fips'));
5492
+ }
5493
+
5494
+ function isFipsCnRegion(region) {
5495
+ return (
5496
+ region &&
5497
+ region.startsWith('fips-cn-') ||
5498
+ (region.startsWith('cn-') && region.endsWith('-fips'))
5499
+ );
5500
+ }
5501
+
5502
+ function getRealRegion(region) {
5503
+ return isFipsRegion(region)
5504
+ ? ['fips-aws-global', 'aws-fips'].includes(region)
5505
+ ? 'us-east-1'
5506
+ : region === 'fips-aws-us-gov-global'
5507
+ ? 'us-gov-west-1'
5508
+ : region.replace(/fips-(dkr-|prod-)?|-fips/, '')
5509
+ : region;
5510
+ }
5511
+
5486
5512
  /**
5487
5513
  * @api private
5488
5514
  */
5489
5515
  module.exports = {
5490
5516
  configureEndpoint: configureEndpoint,
5491
- getEndpointSuffix: getEndpointSuffix
5517
+ getEndpointSuffix: getEndpointSuffix,
5518
+ getRealRegion: getRealRegion,
5492
5519
  };
5493
5520
 
5494
5521
 
@@ -5496,7 +5523,7 @@ return /******/ (function(modules) { // webpackBootstrap
5496
5523
  /* 39 */
5497
5524
  /***/ (function(module, exports) {
5498
5525
 
5499
- module.exports = {"rules":{"*/*":{"endpoint":"{service}.{region}.amazonaws.com"},"cn-*/*":{"endpoint":"{service}.{region}.amazonaws.com.cn"},"us-iso-*/*":{"endpoint":"{service}.{region}.c2s.ic.gov"},"us-isob-*/*":{"endpoint":"{service}.{region}.sc2s.sgov.gov"},"*/budgets":"globalSSL","*/cloudfront":"globalSSL","*/sts":"globalSSL","*/importexport":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2","globalEndpoint":true},"*/route53":"globalSSL","cn-*/route53":{"endpoint":"{service}.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-northwest-1"},"us-gov-*/route53":"globalGovCloud","*/waf":"globalSSL","*/iam":"globalSSL","cn-*/iam":{"endpoint":"{service}.cn-north-1.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-north-1"},"us-gov-*/iam":"globalGovCloud","us-gov-*/sts":{"endpoint":"{service}.{region}.amazonaws.com"},"us-gov-west-1/s3":"s3signature","us-west-1/s3":"s3signature","us-west-2/s3":"s3signature","eu-west-1/s3":"s3signature","ap-southeast-1/s3":"s3signature","ap-southeast-2/s3":"s3signature","ap-northeast-1/s3":"s3signature","sa-east-1/s3":"s3signature","us-east-1/s3":{"endpoint":"{service}.amazonaws.com","signatureVersion":"s3"},"us-east-1/sdb":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2"},"*/sdb":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"v2"}},"patterns":{"globalSSL":{"endpoint":"https://{service}.amazonaws.com","globalEndpoint":true,"signingRegion":"us-east-1"},"globalGovCloud":{"endpoint":"{service}.us-gov.amazonaws.com","globalEndpoint":true,"signingRegion":"us-gov-west-1"},"s3signature":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"s3"}}}
5526
+ module.exports = {"rules":{"*/*":{"endpoint":"{service}.{region}.amazonaws.com"},"fips-*/*":{"endpoint":"{service}-fips.{region}.amazonaws.com"},"fips-cn-*/*":{"endpoint":"{service}-fips.{region}.amazonaws.com.cn"},"cn-*/*":{"endpoint":"{service}.{region}.amazonaws.com.cn"},"us-iso-*/*":{"endpoint":"{service}.{region}.c2s.ic.gov"},"us-isob-*/*":{"endpoint":"{service}.{region}.sc2s.sgov.gov"},"*/budgets":"globalSSL","*/cloudfront":"globalSSL","*/sts":"globalSSL","*/importexport":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2","globalEndpoint":true},"*/route53":"globalSSL","cn-*/route53":{"endpoint":"{service}.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-northwest-1"},"us-gov-*/route53":"globalGovCloud","*/waf":"globalSSL","*/iam":"globalSSL","cn-*/iam":{"endpoint":"{service}.cn-north-1.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-north-1"},"us-gov-*/iam":"globalGovCloud","us-gov-*/sts":{"endpoint":"{service}.{region}.amazonaws.com"},"us-gov-west-1/s3":"s3signature","us-west-1/s3":"s3signature","us-west-2/s3":"s3signature","eu-west-1/s3":"s3signature","ap-southeast-1/s3":"s3signature","ap-southeast-2/s3":"s3signature","ap-northeast-1/s3":"s3signature","sa-east-1/s3":"s3signature","us-east-1/s3":{"endpoint":"{service}.amazonaws.com","signatureVersion":"s3"},"us-east-1/sdb":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2"},"*/sdb":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"v2"},"fips-*/api.ecr":{"endpoint":"ecr-fips.{region}.amazonaws.com"},"fips-*/api.sagemaker":{"endpoint":"api-fips.sagemaker.{region}.amazonaws.com"},"fips-*/batch":{"endpoint":"fips.batch.{region}.amazonaws.com"},"fips-*/streams.dynamodb":{"endpoint":"dynamodb-fips.{region}.amazonaws.com"},"fips-*/route53":{"endpoint":"route53-fips.amazonaws.com"},"fips-*/transcribe":{"endpoint":"fips.transcribe.{region}.amazonaws.com"},"fips-*/waf":{"endpoint":"waf-fips.amazonaws.com"},"fips-us-gov-east-1/acm-pca":{"endpoint":"acm-pca.{region}.amazonaws.com"},"fips-us-gov-west-1/acm-pca":{"endpoint":"acm-pca.{region}.amazonaws.com"},"fips-us-gov-east-1/batch":{"endpoint":"batch.{region}.amazonaws.com"},"fips-us-gov-west-1/batch":{"endpoint":"batch.{region}.amazonaws.com"},"us-gov-east-1-fips/dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"},"us-gov-west-1-fips/dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"},"fips-us-gov-east-1/elasticloadbalancing":{"endpoint":"elasticloadbalancing.{region}.amazonaws.com"},"fips-us-gov-west-1/elasticloadbalancing":{"endpoint":"elasticloadbalancing.{region}.amazonaws.com"},"us-gov-east-1-fips/guardduty":{"endpoint":"guardduty.{region}.amazonaws.com"},"us-gov-west-1-fips/guardduty":{"endpoint":"guardduty.{region}.amazonaws.com"},"fips-us-gov-east-1/monitoring":{"endpoint":"monitoring.{region}.amazonaws.com"},"fips-us-gov-west-1/monitoring":{"endpoint":"monitoring.{region}.amazonaws.com"},"fips-aws-us-gov-global/organizations":{"endpoint":"organizations.{region}.amazonaws.com"},"fips-us-gov-east-1/resource-groups":{"endpoint":"resource-groups.{region}.amazonaws.com"},"fips-us-gov-west-1/resource-groups":{"endpoint":"resource-groups.{region}.amazonaws.com"},"fips-aws-us-gov-global/route53":{"endpoint":"route53.us-gov.amazonaws.com"},"fips-us-gov-east-1/servicecatalog-appregistry":{"endpoint":"servicecatalog-appregistry.{region}.amazonaws.com"},"fips-us-gov-west-1/servicecatalog-appregistry":{"endpoint":"servicecatalog-appregistry.{region}.amazonaws.com"},"fips-us-gov-west-1/states":{"endpoint":"states.{region}.amazonaws.com"},"us-gov-east-1-fips/streams.dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"},"us-gov-west-1-fips/streams.dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"}},"patterns":{"globalSSL":{"endpoint":"https://{service}.amazonaws.com","globalEndpoint":true,"signingRegion":"us-east-1"},"globalGovCloud":{"endpoint":"{service}.us-gov.amazonaws.com","globalEndpoint":true,"signingRegion":"us-gov-west-1"},"s3signature":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"s3"}}}
5500
5527
 
5501
5528
  /***/ }),
5502
5529
  /* 40 */
@@ -8794,12 +8821,10 @@ return /******/ (function(modules) { // webpackBootstrap
8794
8821
  var region = service.config.region;
8795
8822
  var customUserAgent = service.config.customUserAgent;
8796
8823
 
8797
- if (service.isGlobalEndpoint) {
8798
- if (service.signingRegion) {
8799
- region = service.signingRegion;
8800
- } else {
8801
- region = 'us-east-1';
8802
- }
8824
+ if (service.signingRegion) {
8825
+ region = service.signingRegion;
8826
+ } else if (service.isGlobalEndpoint) {
8827
+ region = 'us-east-1';
8803
8828
  }
8804
8829
 
8805
8830
  this.domain = domain && domain.active;
@@ -31195,34 +31220,34 @@ return /******/ (function(modules) { // webpackBootstrap
31195
31220
  Location: __webpack_require__(979),
31196
31221
  WellArchitected: __webpack_require__(982),
31197
31222
  LexModelsV2: __webpack_require__(985),
31198
- LexRuntimeV2: __webpack_require__(990),
31199
- Fis: __webpack_require__(993),
31200
- LookoutMetrics: __webpack_require__(996),
31201
- Mgn: __webpack_require__(1000),
31202
- LookoutEquipment: __webpack_require__(1003),
31203
- Nimble: __webpack_require__(1006),
31204
- Finspace: __webpack_require__(1009),
31205
- Finspacedata: __webpack_require__(1013),
31206
- SSMContacts: __webpack_require__(1017),
31207
- SSMIncidents: __webpack_require__(1020),
31208
- ApplicationCostProfiler: __webpack_require__(1024),
31209
- AppRunner: __webpack_require__(1027),
31210
- Proton: __webpack_require__(1030),
31211
- Route53RecoveryCluster: __webpack_require__(1034),
31212
- Route53RecoveryControlConfig: __webpack_require__(1037),
31213
- Route53RecoveryReadiness: __webpack_require__(1041),
31214
- ChimeSDKIdentity: __webpack_require__(1044),
31215
- ChimeSDKMessaging: __webpack_require__(1047),
31216
- SnowDeviceManagement: __webpack_require__(1050),
31217
- MemoryDB: __webpack_require__(1053),
31218
- OpenSearch: __webpack_require__(1056),
31219
- KafkaConnect: __webpack_require__(1059),
31220
- VoiceID: __webpack_require__(1062),
31221
- Wisdom: __webpack_require__(1065),
31222
- Account: __webpack_require__(1068),
31223
- CloudControl: __webpack_require__(1071),
31224
- Grafana: __webpack_require__(1075),
31225
- Panorama: __webpack_require__(1078)
31223
+ LexRuntimeV2: __webpack_require__(989),
31224
+ Fis: __webpack_require__(992),
31225
+ LookoutMetrics: __webpack_require__(995),
31226
+ Mgn: __webpack_require__(998),
31227
+ LookoutEquipment: __webpack_require__(1001),
31228
+ Nimble: __webpack_require__(1004),
31229
+ Finspace: __webpack_require__(1007),
31230
+ Finspacedata: __webpack_require__(1010),
31231
+ SSMContacts: __webpack_require__(1013),
31232
+ SSMIncidents: __webpack_require__(1016),
31233
+ ApplicationCostProfiler: __webpack_require__(1020),
31234
+ AppRunner: __webpack_require__(1023),
31235
+ Proton: __webpack_require__(1026),
31236
+ Route53RecoveryCluster: __webpack_require__(1030),
31237
+ Route53RecoveryControlConfig: __webpack_require__(1033),
31238
+ Route53RecoveryReadiness: __webpack_require__(1037),
31239
+ ChimeSDKIdentity: __webpack_require__(1040),
31240
+ ChimeSDKMessaging: __webpack_require__(1043),
31241
+ SnowDeviceManagement: __webpack_require__(1046),
31242
+ MemoryDB: __webpack_require__(1049),
31243
+ OpenSearch: __webpack_require__(1052),
31244
+ KafkaConnect: __webpack_require__(1055),
31245
+ VoiceID: __webpack_require__(1058),
31246
+ Wisdom: __webpack_require__(1061),
31247
+ Account: __webpack_require__(1064),
31248
+ CloudControl: __webpack_require__(1067),
31249
+ Grafana: __webpack_require__(1071),
31250
+ Panorama: __webpack_require__(1074)
31226
31251
  };
31227
31252
 
31228
31253
  /***/ }),
@@ -38618,6 +38643,10 @@ return /******/ (function(modules) { // webpackBootstrap
38618
38643
 
38619
38644
  function generateRegionPrefix(region) {
38620
38645
  if (!region) return null;
38646
+ if (isFipsRegion(region)) {
38647
+ if (isFipsCnRegion(region)) return 'fips-cn-*';
38648
+ return 'fips-*';
38649
+ }
38621
38650
 
38622
38651
  var parts = region.split('-');
38623
38652
  if (parts.length < 3) return null;
@@ -38671,6 +38700,12 @@ return /******/ (function(modules) { // webpackBootstrap
38671
38700
  );
38672
38701
  }
38673
38702
 
38703
+ // set FIPS signingRegion and endpoint.
38704
+ if (isFipsRegion(service.config.region)) {
38705
+ config = util.copy(config);
38706
+ service.signingRegion = getRealRegion(service.config.region);
38707
+ }
38708
+
38674
38709
  // set global endpoint
38675
38710
  service.isGlobalEndpoint = !!config.globalEndpoint;
38676
38711
  if (config.signingRegion) {
@@ -38705,12 +38740,35 @@ return /******/ (function(modules) { // webpackBootstrap
38705
38740
  return defaultSuffix;
38706
38741
  }
38707
38742
 
38743
+ function isFipsRegion(region) {
38744
+ return region && (region.startsWith('fips-') || region.endsWith('-fips'));
38745
+ }
38746
+
38747
+ function isFipsCnRegion(region) {
38748
+ return (
38749
+ region &&
38750
+ region.startsWith('fips-cn-') ||
38751
+ (region.startsWith('cn-') && region.endsWith('-fips'))
38752
+ );
38753
+ }
38754
+
38755
+ function getRealRegion(region) {
38756
+ return isFipsRegion(region)
38757
+ ? ['fips-aws-global', 'aws-fips'].includes(region)
38758
+ ? 'us-east-1'
38759
+ : region === 'fips-aws-us-gov-global'
38760
+ ? 'us-gov-west-1'
38761
+ : region.replace(/fips-(dkr-|prod-)?|-fips/, '')
38762
+ : region;
38763
+ }
38764
+
38708
38765
  /**
38709
38766
  * @api private
38710
38767
  */
38711
38768
  module.exports = {
38712
38769
  configureEndpoint: configureEndpoint,
38713
- getEndpointSuffix: getEndpointSuffix
38770
+ getEndpointSuffix: getEndpointSuffix,
38771
+ getRealRegion: getRealRegion,
38714
38772
  };
38715
38773
 
38716
38774
 
@@ -46223,7 +46281,7 @@ return /******/ (function(modules) { // webpackBootstrap
46223
46281
  /* 424 */
46224
46282
  /***/ (function(module, exports) {
46225
46283
 
46226
- module.exports = {"rules":{"*/*":{"endpoint":"{service}.{region}.amazonaws.com"},"cn-*/*":{"endpoint":"{service}.{region}.amazonaws.com.cn"},"us-iso-*/*":{"endpoint":"{service}.{region}.c2s.ic.gov"},"us-isob-*/*":{"endpoint":"{service}.{region}.sc2s.sgov.gov"},"*/budgets":"globalSSL","*/cloudfront":"globalSSL","*/sts":"globalSSL","*/importexport":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2","globalEndpoint":true},"*/route53":"globalSSL","cn-*/route53":{"endpoint":"{service}.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-northwest-1"},"us-gov-*/route53":"globalGovCloud","*/waf":"globalSSL","*/iam":"globalSSL","cn-*/iam":{"endpoint":"{service}.cn-north-1.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-north-1"},"us-gov-*/iam":"globalGovCloud","us-gov-*/sts":{"endpoint":"{service}.{region}.amazonaws.com"},"us-gov-west-1/s3":"s3signature","us-west-1/s3":"s3signature","us-west-2/s3":"s3signature","eu-west-1/s3":"s3signature","ap-southeast-1/s3":"s3signature","ap-southeast-2/s3":"s3signature","ap-northeast-1/s3":"s3signature","sa-east-1/s3":"s3signature","us-east-1/s3":{"endpoint":"{service}.amazonaws.com","signatureVersion":"s3"},"us-east-1/sdb":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2"},"*/sdb":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"v2"}},"patterns":{"globalSSL":{"endpoint":"https://{service}.amazonaws.com","globalEndpoint":true,"signingRegion":"us-east-1"},"globalGovCloud":{"endpoint":"{service}.us-gov.amazonaws.com","globalEndpoint":true,"signingRegion":"us-gov-west-1"},"s3signature":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"s3"}}}
46284
+ module.exports = {"rules":{"*/*":{"endpoint":"{service}.{region}.amazonaws.com"},"fips-*/*":{"endpoint":"{service}-fips.{region}.amazonaws.com"},"fips-cn-*/*":{"endpoint":"{service}-fips.{region}.amazonaws.com.cn"},"cn-*/*":{"endpoint":"{service}.{region}.amazonaws.com.cn"},"us-iso-*/*":{"endpoint":"{service}.{region}.c2s.ic.gov"},"us-isob-*/*":{"endpoint":"{service}.{region}.sc2s.sgov.gov"},"*/budgets":"globalSSL","*/cloudfront":"globalSSL","*/sts":"globalSSL","*/importexport":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2","globalEndpoint":true},"*/route53":"globalSSL","cn-*/route53":{"endpoint":"{service}.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-northwest-1"},"us-gov-*/route53":"globalGovCloud","*/waf":"globalSSL","*/iam":"globalSSL","cn-*/iam":{"endpoint":"{service}.cn-north-1.amazonaws.com.cn","globalEndpoint":true,"signingRegion":"cn-north-1"},"us-gov-*/iam":"globalGovCloud","us-gov-*/sts":{"endpoint":"{service}.{region}.amazonaws.com"},"us-gov-west-1/s3":"s3signature","us-west-1/s3":"s3signature","us-west-2/s3":"s3signature","eu-west-1/s3":"s3signature","ap-southeast-1/s3":"s3signature","ap-southeast-2/s3":"s3signature","ap-northeast-1/s3":"s3signature","sa-east-1/s3":"s3signature","us-east-1/s3":{"endpoint":"{service}.amazonaws.com","signatureVersion":"s3"},"us-east-1/sdb":{"endpoint":"{service}.amazonaws.com","signatureVersion":"v2"},"*/sdb":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"v2"},"fips-*/api.ecr":{"endpoint":"ecr-fips.{region}.amazonaws.com"},"fips-*/api.sagemaker":{"endpoint":"api-fips.sagemaker.{region}.amazonaws.com"},"fips-*/batch":{"endpoint":"fips.batch.{region}.amazonaws.com"},"fips-*/streams.dynamodb":{"endpoint":"dynamodb-fips.{region}.amazonaws.com"},"fips-*/route53":{"endpoint":"route53-fips.amazonaws.com"},"fips-*/transcribe":{"endpoint":"fips.transcribe.{region}.amazonaws.com"},"fips-*/waf":{"endpoint":"waf-fips.amazonaws.com"},"fips-us-gov-east-1/acm-pca":{"endpoint":"acm-pca.{region}.amazonaws.com"},"fips-us-gov-west-1/acm-pca":{"endpoint":"acm-pca.{region}.amazonaws.com"},"fips-us-gov-east-1/batch":{"endpoint":"batch.{region}.amazonaws.com"},"fips-us-gov-west-1/batch":{"endpoint":"batch.{region}.amazonaws.com"},"us-gov-east-1-fips/dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"},"us-gov-west-1-fips/dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"},"fips-us-gov-east-1/elasticloadbalancing":{"endpoint":"elasticloadbalancing.{region}.amazonaws.com"},"fips-us-gov-west-1/elasticloadbalancing":{"endpoint":"elasticloadbalancing.{region}.amazonaws.com"},"us-gov-east-1-fips/guardduty":{"endpoint":"guardduty.{region}.amazonaws.com"},"us-gov-west-1-fips/guardduty":{"endpoint":"guardduty.{region}.amazonaws.com"},"fips-us-gov-east-1/monitoring":{"endpoint":"monitoring.{region}.amazonaws.com"},"fips-us-gov-west-1/monitoring":{"endpoint":"monitoring.{region}.amazonaws.com"},"fips-aws-us-gov-global/organizations":{"endpoint":"organizations.{region}.amazonaws.com"},"fips-us-gov-east-1/resource-groups":{"endpoint":"resource-groups.{region}.amazonaws.com"},"fips-us-gov-west-1/resource-groups":{"endpoint":"resource-groups.{region}.amazonaws.com"},"fips-aws-us-gov-global/route53":{"endpoint":"route53.us-gov.amazonaws.com"},"fips-us-gov-east-1/servicecatalog-appregistry":{"endpoint":"servicecatalog-appregistry.{region}.amazonaws.com"},"fips-us-gov-west-1/servicecatalog-appregistry":{"endpoint":"servicecatalog-appregistry.{region}.amazonaws.com"},"fips-us-gov-west-1/states":{"endpoint":"states.{region}.amazonaws.com"},"us-gov-east-1-fips/streams.dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"},"us-gov-west-1-fips/streams.dynamodb":{"endpoint":"dynamodb.{region}.amazonaws.com"}},"patterns":{"globalSSL":{"endpoint":"https://{service}.amazonaws.com","globalEndpoint":true,"signingRegion":"us-east-1"},"globalGovCloud":{"endpoint":"{service}.us-gov.amazonaws.com","globalEndpoint":true,"signingRegion":"us-gov-west-1"},"s3signature":{"endpoint":"{service}.{region}.amazonaws.com","signatureVersion":"s3"}}}
46227
46285
 
46228
46286
  /***/ }),
46229
46287
  /* 425 */
@@ -49931,7 +49989,7 @@ return /******/ (function(modules) { // webpackBootstrap
49931
49989
  /* 647 */
49932
49990
  /***/ (function(module, exports) {
49933
49991
 
49934
- module.exports = {"version":"2.0","metadata":{"apiVersion":"2018-05-01","endpointPrefix":"chime","protocol":"rest-json","serviceFullName":"Amazon Chime","serviceId":"Chime","signatureVersion":"v4","uid":"chime-2018-05-01"},"operations":{"AssociatePhoneNumberWithUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=associate-phone-number","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId","E164PhoneNumber"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"},"E164PhoneNumber":{"shape":"S3"}}},"output":{"type":"structure","members":{}}},"AssociatePhoneNumbersWithVoiceConnector":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}?operation=associate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","E164PhoneNumbers"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"E164PhoneNumbers":{"shape":"S7"},"ForceAssociate":{"type":"boolean"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"AssociatePhoneNumbersWithVoiceConnectorGroup":{"http":{"requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=associate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorGroupId","E164PhoneNumbers"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"},"E164PhoneNumbers":{"shape":"S7"},"ForceAssociate":{"type":"boolean"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"AssociateSigninDelegateGroupsWithAccount":{"http":{"requestUri":"/accounts/{accountId}?operation=associate-signin-delegate-groups","responseCode":200},"input":{"type":"structure","required":["AccountId","SigninDelegateGroups"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"SigninDelegateGroups":{"shape":"Sg"}}},"output":{"type":"structure","members":{}}},"BatchCreateAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees?operation=batch-create","responseCode":201},"input":{"type":"structure","required":["MeetingId","Attendees"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"Attendees":{"type":"list","member":{"shape":"Sm"}}}},"output":{"type":"structure","members":{"Attendees":{"shape":"St"},"Errors":{"shape":"Sw"}}}},"BatchCreateChannelMembership":{"http":{"requestUri":"/channels/{channelArn}/memberships?operation=batch-create","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArns"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Type":{},"MemberArns":{"type":"list","member":{}},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"BatchChannelMemberships":{"type":"structure","members":{"InvitedBy":{"shape":"S14"},"Type":{},"Members":{"type":"list","member":{"shape":"S14"}},"ChannelArn":{}}},"Errors":{"type":"list","member":{"type":"structure","members":{"MemberArn":{},"ErrorCode":{},"ErrorMessage":{}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"BatchCreateRoomMembership":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships?operation=batch-create","responseCode":201},"input":{"type":"structure","required":["AccountId","RoomId","MembershipItemList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MembershipItemList":{"type":"list","member":{"type":"structure","members":{"MemberId":{},"Role":{}}}}}},"output":{"type":"structure","members":{"Errors":{"type":"list","member":{"type":"structure","members":{"MemberId":{},"ErrorCode":{},"ErrorMessage":{}}}}}}},"BatchDeletePhoneNumber":{"http":{"requestUri":"/phone-numbers?operation=batch-delete","responseCode":200},"input":{"type":"structure","required":["PhoneNumberIds"],"members":{"PhoneNumberIds":{"shape":"S1h"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"BatchSuspendUser":{"http":{"requestUri":"/accounts/{accountId}/users?operation=suspend","responseCode":200},"input":{"type":"structure","required":["AccountId","UserIdList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserIdList":{"shape":"S1k"}}},"output":{"type":"structure","members":{"UserErrors":{"shape":"S1m"}}}},"BatchUnsuspendUser":{"http":{"requestUri":"/accounts/{accountId}/users?operation=unsuspend","responseCode":200},"input":{"type":"structure","required":["AccountId","UserIdList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserIdList":{"shape":"S1k"}}},"output":{"type":"structure","members":{"UserErrors":{"shape":"S1m"}}}},"BatchUpdatePhoneNumber":{"http":{"requestUri":"/phone-numbers?operation=batch-update","responseCode":200},"input":{"type":"structure","required":["UpdatePhoneNumberRequestItems"],"members":{"UpdatePhoneNumberRequestItems":{"type":"list","member":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{},"ProductType":{},"CallingName":{"shape":"S1u"}}}}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"BatchUpdateUser":{"http":{"requestUri":"/accounts/{accountId}/users","responseCode":200},"input":{"type":"structure","required":["AccountId","UpdateUserRequestItems"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UpdateUserRequestItems":{"type":"list","member":{"type":"structure","required":["UserId"],"members":{"UserId":{},"LicenseType":{},"UserType":{},"AlexaForBusinessMetadata":{"shape":"S21"}}}}}},"output":{"type":"structure","members":{"UserErrors":{"shape":"S1m"}}}},"CreateAccount":{"http":{"requestUri":"/accounts","responseCode":201},"input":{"type":"structure","required":["Name"],"members":{"Name":{}}},"output":{"type":"structure","members":{"Account":{"shape":"S28"}}}},"CreateAppInstance":{"http":{"requestUri":"/app-instances","responseCode":201},"input":{"type":"structure","required":["Name","ClientRequestToken"],"members":{"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"Tags":{"shape":"S2h"}}},"output":{"type":"structure","members":{"AppInstanceArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"CreateAppInstanceAdmin":{"http":{"requestUri":"/app-instances/{appInstanceArn}/admins","responseCode":201},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceAdmin":{"shape":"S14"},"AppInstanceArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"CreateAppInstanceUser":{"http":{"requestUri":"/app-instance-users","responseCode":201},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceUserId","Name","ClientRequestToken"],"members":{"AppInstanceArn":{},"AppInstanceUserId":{"type":"string","sensitive":true},"Name":{"shape":"S2n"},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"Tags":{"shape":"S2h"}}},"output":{"type":"structure","members":{"AppInstanceUserArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"CreateAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees","responseCode":201},"input":{"type":"structure","required":["MeetingId","ExternalUserId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"ExternalUserId":{"shape":"Sn"},"Tags":{"shape":"So"}}},"output":{"type":"structure","members":{"Attendee":{"shape":"Su"}}}},"CreateBot":{"http":{"requestUri":"/accounts/{accountId}/bots","responseCode":201},"input":{"type":"structure","required":["DisplayName","AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"DisplayName":{"shape":"S23"},"Domain":{}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"CreateChannel":{"http":{"requestUri":"/channels","responseCode":201},"input":{"type":"structure","required":["AppInstanceArn","Name","ClientRequestToken"],"members":{"AppInstanceArn":{},"Name":{"shape":"S2e"},"Mode":{},"Privacy":{},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"Tags":{"shape":"S2h"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateChannelBan":{"http":{"requestUri":"/channels/{channelArn}/bans","responseCode":201},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"Member":{"shape":"S14"}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateChannelMembership":{"http":{"requestUri":"/channels/{channelArn}/memberships","responseCode":201},"input":{"type":"structure","required":["ChannelArn","MemberArn","Type"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{},"Type":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"Member":{"shape":"S14"}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateChannelModerator":{"http":{"requestUri":"/channels/{channelArn}/moderators","responseCode":201},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"ChannelModerator":{"shape":"S14"}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateMediaCapturePipeline":{"http":{"requestUri":"/media-capture-pipelines","responseCode":201},"input":{"type":"structure","required":["SourceType","SourceArn","SinkType","SinkArn"],"members":{"SourceType":{},"SourceArn":{"shape":"S37"},"SinkType":{},"SinkArn":{"shape":"S37"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ChimeSdkMeetingConfiguration":{"shape":"S39"}}},"output":{"type":"structure","members":{"MediaCapturePipeline":{"shape":"S3n"}}}},"CreateMeeting":{"http":{"requestUri":"/meetings","responseCode":201},"input":{"type":"structure","required":["ClientRequestToken"],"members":{"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ExternalMeetingId":{"shape":"S3q"},"MeetingHostId":{"shape":"Sn"},"MediaRegion":{},"Tags":{"shape":"S3r"},"NotificationsConfiguration":{"shape":"S3s"}}},"output":{"type":"structure","members":{"Meeting":{"shape":"S3u"}}}},"CreateMeetingDialOut":{"http":{"requestUri":"/meetings/{meetingId}/dial-outs","responseCode":201},"input":{"type":"structure","required":["MeetingId","FromPhoneNumber","ToPhoneNumber","JoinToken"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"FromPhoneNumber":{"shape":"S3"},"ToPhoneNumber":{"shape":"S3"},"JoinToken":{"shape":"Sv"}}},"output":{"type":"structure","members":{"TransactionId":{}}}},"CreateMeetingWithAttendees":{"http":{"requestUri":"/meetings?operation=create-attendees","responseCode":201},"input":{"type":"structure","required":["ClientRequestToken"],"members":{"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ExternalMeetingId":{"shape":"S3q"},"MeetingHostId":{"shape":"Sn"},"MediaRegion":{},"Tags":{"shape":"S3r"},"NotificationsConfiguration":{"shape":"S3s"},"Attendees":{"type":"list","member":{"shape":"Sm"}}}},"output":{"type":"structure","members":{"Meeting":{"shape":"S3u"},"Attendees":{"shape":"St"},"Errors":{"shape":"Sw"}}}},"CreatePhoneNumberOrder":{"http":{"requestUri":"/phone-number-orders","responseCode":201},"input":{"type":"structure","required":["ProductType","E164PhoneNumbers"],"members":{"ProductType":{},"E164PhoneNumbers":{"shape":"S7"}}},"output":{"type":"structure","members":{"PhoneNumberOrder":{"shape":"S44"}}}},"CreateProxySession":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions","responseCode":201},"input":{"type":"structure","required":["ParticipantPhoneNumbers","Capabilities","VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ParticipantPhoneNumbers":{"type":"list","member":{"shape":"S3"}},"Name":{"type":"string","sensitive":true},"ExpiryMinutes":{"type":"integer"},"Capabilities":{"shape":"S4e"},"NumberSelectionBehavior":{},"GeoMatchLevel":{},"GeoMatchParams":{"shape":"S4i"}}},"output":{"type":"structure","members":{"ProxySession":{"shape":"S4m"}}}},"CreateRoom":{"http":{"requestUri":"/accounts/{accountId}/rooms","responseCode":201},"input":{"type":"structure","required":["AccountId","Name"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"Name":{"shape":"S23"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true}}},"output":{"type":"structure","members":{"Room":{"shape":"S4t"}}}},"CreateRoomMembership":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships","responseCode":201},"input":{"type":"structure","required":["AccountId","RoomId","MemberId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MemberId":{},"Role":{}}},"output":{"type":"structure","members":{"RoomMembership":{"shape":"S4w"}}}},"CreateSipMediaApplication":{"http":{"requestUri":"/sip-media-applications","responseCode":201},"input":{"type":"structure","required":["AwsRegion","Name","Endpoints"],"members":{"AwsRegion":{},"Name":{},"Endpoints":{"shape":"S51"}}},"output":{"type":"structure","members":{"SipMediaApplication":{"shape":"S55"}}}},"CreateSipMediaApplicationCall":{"http":{"requestUri":"/sip-media-applications/{sipMediaApplicationId}/calls","responseCode":201},"input":{"type":"structure","required":["FromPhoneNumber","ToPhoneNumber","SipMediaApplicationId"],"members":{"FromPhoneNumber":{"shape":"S3"},"ToPhoneNumber":{"shape":"S3"},"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"SipHeaders":{"type":"map","key":{"shape":"S23"},"value":{"shape":"S23"}}}},"output":{"type":"structure","members":{"SipMediaApplicationCall":{"shape":"S59"}}}},"CreateSipRule":{"http":{"requestUri":"/sip-rules","responseCode":201},"input":{"type":"structure","required":["Name","TriggerType","TriggerValue","TargetApplications"],"members":{"Name":{},"TriggerType":{},"TriggerValue":{},"Disabled":{"type":"boolean"},"TargetApplications":{"shape":"S5d"}}},"output":{"type":"structure","members":{"SipRule":{"shape":"S5h"}}}},"CreateUser":{"http":{"requestUri":"/accounts/{accountId}/users?operation=create","responseCode":201},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"Username":{},"Email":{"shape":"S5j"},"UserType":{}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"CreateVoiceConnector":{"http":{"requestUri":"/voice-connectors","responseCode":201},"input":{"type":"structure","required":["Name","RequireEncryption"],"members":{"Name":{},"AwsRegion":{},"RequireEncryption":{"type":"boolean"}}},"output":{"type":"structure","members":{"VoiceConnector":{"shape":"S5s"}}}},"CreateVoiceConnectorGroup":{"http":{"requestUri":"/voice-connector-groups","responseCode":201},"input":{"type":"structure","required":["Name"],"members":{"Name":{},"VoiceConnectorItems":{"shape":"S5v"}}},"output":{"type":"structure","members":{"VoiceConnectorGroup":{"shape":"S5z"}}}},"DeleteAccount":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}","responseCode":204},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{}}},"DeleteAppInstance":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"endpoint":{"hostPrefix":"identity-"}},"DeleteAppInstanceAdmin":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{"location":"uri","locationName":"appInstanceAdminArn"},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"endpoint":{"hostPrefix":"identity-"}},"DeleteAppInstanceStreamingConfigurations":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}/streaming-configurations","responseCode":204},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}}},"DeleteAppInstanceUser":{"http":{"method":"DELETE","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceUserArn"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"}}},"endpoint":{"hostPrefix":"identity-"}},"DeleteAttendee":{"http":{"method":"DELETE","requestUri":"/meetings/{meetingId}/attendees/{attendeeId}","responseCode":204},"input":{"type":"structure","required":["MeetingId","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"}}}},"DeleteChannel":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelBan":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/bans/{memberArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelMembership":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/memberships/{memberArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelMessage":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelModerator":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{"location":"uri","locationName":"channelModeratorArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteEventsConfiguration":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration","responseCode":204},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}}},"DeleteMediaCapturePipeline":{"http":{"method":"DELETE","requestUri":"/media-capture-pipelines/{mediaPipelineId}","responseCode":204},"input":{"type":"structure","required":["MediaPipelineId"],"members":{"MediaPipelineId":{"location":"uri","locationName":"mediaPipelineId"}}}},"DeleteMeeting":{"http":{"method":"DELETE","requestUri":"/meetings/{meetingId}","responseCode":204},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}}},"DeletePhoneNumber":{"http":{"method":"DELETE","requestUri":"/phone-numbers/{phoneNumberId}","responseCode":204},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"}}}},"DeleteProxySession":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId","ProxySessionId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ProxySessionId":{"location":"uri","locationName":"proxySessionId"}}}},"DeleteRoom":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}/rooms/{roomId}","responseCode":204},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"}}}},"DeleteRoomMembership":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships/{memberId}","responseCode":204},"input":{"type":"structure","required":["AccountId","RoomId","MemberId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MemberId":{"location":"uri","locationName":"memberId"}}}},"DeleteSipMediaApplication":{"http":{"method":"DELETE","requestUri":"/sip-media-applications/{sipMediaApplicationId}","responseCode":204},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"}}}},"DeleteSipRule":{"http":{"method":"DELETE","requestUri":"/sip-rules/{sipRuleId}","responseCode":204},"input":{"type":"structure","required":["SipRuleId"],"members":{"SipRuleId":{"location":"uri","locationName":"sipRuleId"}}}},"DeleteVoiceConnector":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorEmergencyCallingConfiguration":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/emergency-calling-configuration","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorGroup":{"http":{"method":"DELETE","requestUri":"/voice-connector-groups/{voiceConnectorGroupId}","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorGroupId"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"}}}},"DeleteVoiceConnectorOrigination":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/origination","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorProxy":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorStreamingConfiguration":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorTermination":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/termination","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorTerminationCredentials":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=delete","responseCode":204},"input":{"type":"structure","required":["Usernames","VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Usernames":{"shape":"S6u"}}}},"DescribeAppInstance":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstance":{"type":"structure","members":{"AppInstanceArn":{},"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"identity-"}},"DescribeAppInstanceAdmin":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{"location":"uri","locationName":"appInstanceAdminArn"},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceAdmin":{"type":"structure","members":{"Admin":{"shape":"S14"},"AppInstanceArn":{},"CreatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"identity-"}},"DescribeAppInstanceUser":{"http":{"method":"GET","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceUserArn"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"}}},"output":{"type":"structure","members":{"AppInstanceUser":{"type":"structure","members":{"AppInstanceUserArn":{},"Name":{"shape":"S2n"},"CreatedTimestamp":{"type":"timestamp"},"Metadata":{"shape":"S2f"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"identity-"}},"DescribeChannel":{"http":{"method":"GET","requestUri":"/channels/{channelArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channel":{"type":"structure","members":{"Name":{"shape":"S2e"},"ChannelArn":{},"Mode":{},"Privacy":{},"Metadata":{"shape":"S2f"},"CreatedBy":{"shape":"S14"},"CreatedTimestamp":{"type":"timestamp"},"LastMessageTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelBan":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/bans/{memberArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelBan":{"type":"structure","members":{"Member":{"shape":"S14"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"CreatedBy":{"shape":"S14"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelMembership":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/memberships/{memberArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMembership":{"type":"structure","members":{"InvitedBy":{"shape":"S14"},"Type":{},"Member":{"shape":"S14"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelMembershipForAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels/{channelArn}?scope=app-instance-user-membership","responseCode":200},"input":{"type":"structure","required":["ChannelArn","AppInstanceUserArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMembership":{"shape":"S7g"}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelModeratedByAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels/{channelArn}?scope=app-instance-user-moderated-channel","responseCode":200},"input":{"type":"structure","required":["ChannelArn","AppInstanceUserArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channel":{"shape":"S7l"}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelModerator":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{"location":"uri","locationName":"channelModeratorArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelModerator":{"type":"structure","members":{"Moderator":{"shape":"S14"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"CreatedBy":{"shape":"S14"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DisassociatePhoneNumberFromUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=disassociate-phone-number","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{}}},"DisassociatePhoneNumbersFromVoiceConnector":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}?operation=disassociate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","E164PhoneNumbers"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"E164PhoneNumbers":{"shape":"S7"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"DisassociatePhoneNumbersFromVoiceConnectorGroup":{"http":{"requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=disassociate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorGroupId","E164PhoneNumbers"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"},"E164PhoneNumbers":{"shape":"S7"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"DisassociateSigninDelegateGroupsFromAccount":{"http":{"requestUri":"/accounts/{accountId}?operation=disassociate-signin-delegate-groups","responseCode":200},"input":{"type":"structure","required":["AccountId","GroupNames"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"GroupNames":{"shape":"S1h"}}},"output":{"type":"structure","members":{}}},"GetAccount":{"http":{"method":"GET","requestUri":"/accounts/{accountId}"},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{"Account":{"shape":"S28"}}}},"GetAccountSettings":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/settings"},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{"AccountSettings":{"shape":"S81"}}}},"GetAppInstanceRetentionSettings":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/retention-settings","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceRetentionSettings":{"shape":"S84"},"InitiateDeletionTimestamp":{"type":"timestamp"}}},"endpoint":{"hostPrefix":"identity-"}},"GetAppInstanceStreamingConfigurations":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/streaming-configurations","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceStreamingConfigurations":{"shape":"S89"}}}},"GetAttendee":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/attendees/{attendeeId}","responseCode":200},"input":{"type":"structure","required":["MeetingId","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"}}},"output":{"type":"structure","members":{"Attendee":{"shape":"Su"}}}},"GetBot":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/bots/{botId}","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"GetChannelMessage":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMessage":{"type":"structure","members":{"ChannelArn":{},"MessageId":{},"Content":{"shape":"S8j"},"Metadata":{"shape":"S2f"},"Type":{},"CreatedTimestamp":{"type":"timestamp"},"LastEditedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"Sender":{"shape":"S14"},"Redacted":{"type":"boolean"},"Persistence":{}}}}},"endpoint":{"hostPrefix":"messaging-"}},"GetEventsConfiguration":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"EventsConfiguration":{"shape":"S8p"}}}},"GetGlobalSettings":{"http":{"method":"GET","requestUri":"/settings","responseCode":200},"output":{"type":"structure","members":{"BusinessCalling":{"shape":"S8r"},"VoiceConnector":{"shape":"S8s"}}}},"GetMediaCapturePipeline":{"http":{"method":"GET","requestUri":"/media-capture-pipelines/{mediaPipelineId}","responseCode":200},"input":{"type":"structure","required":["MediaPipelineId"],"members":{"MediaPipelineId":{"location":"uri","locationName":"mediaPipelineId"}}},"output":{"type":"structure","members":{"MediaCapturePipeline":{"shape":"S3n"}}}},"GetMeeting":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}},"output":{"type":"structure","members":{"Meeting":{"shape":"S3u"}}}},"GetMessagingSessionEndpoint":{"http":{"method":"GET","requestUri":"/endpoints/messaging-session","responseCode":200},"input":{"type":"structure","members":{}},"output":{"type":"structure","members":{"Endpoint":{"type":"structure","members":{"Url":{}}}}},"endpoint":{"hostPrefix":"messaging-"}},"GetPhoneNumber":{"http":{"method":"GET","requestUri":"/phone-numbers/{phoneNumberId}"},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"}}},"output":{"type":"structure","members":{"PhoneNumber":{"shape":"S93"}}}},"GetPhoneNumberOrder":{"http":{"method":"GET","requestUri":"/phone-number-orders/{phoneNumberOrderId}","responseCode":200},"input":{"type":"structure","required":["PhoneNumberOrderId"],"members":{"PhoneNumberOrderId":{"location":"uri","locationName":"phoneNumberOrderId"}}},"output":{"type":"structure","members":{"PhoneNumberOrder":{"shape":"S44"}}}},"GetPhoneNumberSettings":{"http":{"method":"GET","requestUri":"/settings/phone-number","responseCode":200},"output":{"type":"structure","members":{"CallingName":{"shape":"S1u"},"CallingNameUpdatedTimestamp":{"shape":"S2a"}}}},"GetProxySession":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","ProxySessionId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ProxySessionId":{"location":"uri","locationName":"proxySessionId"}}},"output":{"type":"structure","members":{"ProxySession":{"shape":"S4m"}}}},"GetRetentionSettings":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/retention-settings"},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{"RetentionSettings":{"shape":"S9j"},"InitiateDeletionTimestamp":{"shape":"S2a"}}}},"GetRoom":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/rooms/{roomId}","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"}}},"output":{"type":"structure","members":{"Room":{"shape":"S4t"}}}},"GetSipMediaApplication":{"http":{"method":"GET","requestUri":"/sip-media-applications/{sipMediaApplicationId}","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"}}},"output":{"type":"structure","members":{"SipMediaApplication":{"shape":"S55"}}}},"GetSipMediaApplicationLoggingConfiguration":{"http":{"method":"GET","requestUri":"/sip-media-applications/{sipMediaApplicationId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"}}},"output":{"type":"structure","members":{"SipMediaApplicationLoggingConfiguration":{"shape":"S9s"}}}},"GetSipRule":{"http":{"method":"GET","requestUri":"/sip-rules/{sipRuleId}","responseCode":200},"input":{"type":"structure","required":["SipRuleId"],"members":{"SipRuleId":{"location":"uri","locationName":"sipRuleId"}}},"output":{"type":"structure","members":{"SipRule":{"shape":"S5h"}}}},"GetUser":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/users/{userId}","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"GetUserSettings":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/users/{userId}/settings","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{"UserSettings":{"shape":"S9z"}}}},"GetVoiceConnector":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"VoiceConnector":{"shape":"S5s"}}}},"GetVoiceConnectorEmergencyCallingConfiguration":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/emergency-calling-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"EmergencyCallingConfiguration":{"shape":"Sa5"}}}},"GetVoiceConnectorGroup":{"http":{"method":"GET","requestUri":"/voice-connector-groups/{voiceConnectorGroupId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorGroupId"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"}}},"output":{"type":"structure","members":{"VoiceConnectorGroup":{"shape":"S5z"}}}},"GetVoiceConnectorLoggingConfiguration":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"LoggingConfiguration":{"shape":"Sac"}}}},"GetVoiceConnectorOrigination":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/origination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Origination":{"shape":"Saf"}}}},"GetVoiceConnectorProxy":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Proxy":{"shape":"Sao"}}}},"GetVoiceConnectorStreamingConfiguration":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"StreamingConfiguration":{"shape":"Sat"}}}},"GetVoiceConnectorTermination":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/termination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Termination":{"shape":"Sb0"}}}},"GetVoiceConnectorTerminationHealth":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/termination/health","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"TerminationHealth":{"type":"structure","members":{"Timestamp":{"shape":"S2a"},"Source":{}}}}}},"InviteUsers":{"http":{"requestUri":"/accounts/{accountId}/users?operation=add","responseCode":201},"input":{"type":"structure","required":["AccountId","UserEmailList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserEmailList":{"type":"list","member":{"shape":"S5j"}},"UserType":{}}},"output":{"type":"structure","members":{"Invites":{"type":"list","member":{"type":"structure","members":{"InviteId":{},"Status":{},"EmailAddress":{"shape":"S5j"},"EmailStatus":{}}}}}}},"ListAccounts":{"http":{"method":"GET","requestUri":"/accounts"},"input":{"type":"structure","members":{"Name":{"location":"querystring","locationName":"name"},"UserEmail":{"shape":"S5j","location":"querystring","locationName":"user-email"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Accounts":{"type":"list","member":{"shape":"S28"}},"NextToken":{}}}},"ListAppInstanceAdmins":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/admins","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstanceArn":{},"AppInstanceAdmins":{"type":"list","member":{"type":"structure","members":{"Admin":{"shape":"S14"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"identity-"}},"ListAppInstanceUsers":{"http":{"method":"GET","requestUri":"/app-instance-users","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"querystring","locationName":"app-instance-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstanceArn":{},"AppInstanceUsers":{"type":"list","member":{"type":"structure","members":{"AppInstanceUserArn":{},"Name":{"shape":"S2n"},"Metadata":{"shape":"S2f"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"identity-"}},"ListAppInstances":{"http":{"method":"GET","requestUri":"/app-instances","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstances":{"type":"list","member":{"type":"structure","members":{"AppInstanceArn":{},"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"identity-"}},"ListAttendeeTags":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags","responseCode":200},"input":{"type":"structure","required":["MeetingId","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S2h"}}}},"ListAttendees":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/attendees","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Attendees":{"shape":"St"},"NextToken":{}}}},"ListBots":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/bots","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"Bots":{"type":"list","member":{"shape":"S2t"}},"NextToken":{}}}},"ListChannelBans":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/bans","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"Sbj"},"ChannelBans":{"type":"list","member":{"type":"structure","members":{"Member":{"shape":"S14"}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelMemberships":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/memberships","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Type":{"location":"querystring","locationName":"type"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"ChannelMemberships":{"type":"list","member":{"type":"structure","members":{"Member":{"shape":"S14"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelMembershipsForAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels?scope=app-instance-user-memberships","responseCode":200},"input":{"type":"structure","members":{"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMemberships":{"type":"list","member":{"shape":"S7g"}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelMessages":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/messages","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"SortOrder":{"location":"querystring","locationName":"sort-order"},"NotBefore":{"location":"querystring","locationName":"not-before","type":"timestamp"},"NotAfter":{"location":"querystring","locationName":"not-after","type":"timestamp"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"Sbj"},"ChannelMessages":{"type":"list","member":{"type":"structure","members":{"MessageId":{},"Content":{"shape":"S8j"},"Metadata":{"shape":"S2f"},"Type":{},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"LastEditedTimestamp":{"type":"timestamp"},"Sender":{"shape":"S14"},"Redacted":{"type":"boolean"}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelModerators":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/moderators","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"Sbj"},"ChannelModerators":{"type":"list","member":{"type":"structure","members":{"Moderator":{"shape":"S14"}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannels":{"http":{"method":"GET","requestUri":"/channels","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"querystring","locationName":"app-instance-arn"},"Privacy":{"location":"querystring","locationName":"privacy"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channels":{"type":"list","member":{"shape":"S7h"}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelsModeratedByAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels?scope=app-instance-user-moderated-channels","responseCode":200},"input":{"type":"structure","members":{"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channels":{"type":"list","member":{"shape":"S7l"}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListMediaCapturePipelines":{"http":{"method":"GET","requestUri":"/media-capture-pipelines","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"MediaCapturePipelines":{"type":"list","member":{"shape":"S3n"}},"NextToken":{}}}},"ListMeetingTags":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/tags","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S2h"}}}},"ListMeetings":{"http":{"method":"GET","requestUri":"/meetings","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Meetings":{"type":"list","member":{"shape":"S3u"}},"NextToken":{}}}},"ListPhoneNumberOrders":{"http":{"method":"GET","requestUri":"/phone-number-orders","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"PhoneNumberOrders":{"type":"list","member":{"shape":"S44"}},"NextToken":{}}}},"ListPhoneNumbers":{"http":{"method":"GET","requestUri":"/phone-numbers"},"input":{"type":"structure","members":{"Status":{"location":"querystring","locationName":"status"},"ProductType":{"location":"querystring","locationName":"product-type"},"FilterName":{"location":"querystring","locationName":"filter-name"},"FilterValue":{"location":"querystring","locationName":"filter-value"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"PhoneNumbers":{"type":"list","member":{"shape":"S93"}},"NextToken":{}}}},"ListProxySessions":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Status":{"location":"querystring","locationName":"status"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"ProxySessions":{"type":"list","member":{"shape":"S4m"}},"NextToken":{}}}},"ListRoomMemberships":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"RoomMemberships":{"type":"list","member":{"shape":"S4w"}},"NextToken":{}}}},"ListRooms":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/rooms","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"MemberId":{"location":"querystring","locationName":"member-id"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"Rooms":{"type":"list","member":{"shape":"S4t"}},"NextToken":{}}}},"ListSipMediaApplications":{"http":{"method":"GET","requestUri":"/sip-media-applications","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"SipMediaApplications":{"type":"list","member":{"shape":"S55"}},"NextToken":{}}}},"ListSipRules":{"http":{"method":"GET","requestUri":"/sip-rules","responseCode":200},"input":{"type":"structure","members":{"SipMediaApplicationId":{"location":"querystring","locationName":"sip-media-application"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"SipRules":{"type":"list","member":{"shape":"S5h"}},"NextToken":{}}}},"ListSupportedPhoneNumberCountries":{"http":{"method":"GET","requestUri":"/phone-number-countries","responseCode":200},"input":{"type":"structure","required":["ProductType"],"members":{"ProductType":{"location":"querystring","locationName":"product-type"}}},"output":{"type":"structure","members":{"PhoneNumberCountries":{"type":"list","member":{"type":"structure","members":{"CountryCode":{},"SupportedPhoneNumberTypes":{"type":"list","member":{}}}}}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags"},"input":{"type":"structure","required":["ResourceARN"],"members":{"ResourceARN":{"shape":"S37","location":"querystring","locationName":"arn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S2h"}}}},"ListUsers":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/users","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserEmail":{"shape":"S5j","location":"querystring","locationName":"user-email"},"UserType":{"location":"querystring","locationName":"user-type"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"Users":{"type":"list","member":{"shape":"S5l"}},"NextToken":{}}}},"ListVoiceConnectorGroups":{"http":{"method":"GET","requestUri":"/voice-connector-groups","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"VoiceConnectorGroups":{"type":"list","member":{"shape":"S5z"}},"NextToken":{}}}},"ListVoiceConnectorTerminationCredentials":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Usernames":{"shape":"S6u"}}}},"ListVoiceConnectors":{"http":{"method":"GET","requestUri":"/voice-connectors","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"VoiceConnectors":{"type":"list","member":{"shape":"S5s"}},"NextToken":{}}}},"LogoutUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=logout","responseCode":204},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{}}},"PutAppInstanceRetentionSettings":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}/retention-settings","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceRetentionSettings"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"AppInstanceRetentionSettings":{"shape":"S84"}}},"output":{"type":"structure","members":{"AppInstanceRetentionSettings":{"shape":"S84"},"InitiateDeletionTimestamp":{"type":"timestamp"}}},"endpoint":{"hostPrefix":"identity-"}},"PutAppInstanceStreamingConfigurations":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}/streaming-configurations","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceStreamingConfigurations"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"AppInstanceStreamingConfigurations":{"shape":"S89"}}},"output":{"type":"structure","members":{"AppInstanceStreamingConfigurations":{"shape":"S89"}}}},"PutEventsConfiguration":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration","responseCode":201},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"},"OutboundEventsHTTPSEndpoint":{"shape":"S23"},"LambdaFunctionArn":{"shape":"S23"}}},"output":{"type":"structure","members":{"EventsConfiguration":{"shape":"S8p"}}}},"PutRetentionSettings":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/retention-settings","responseCode":204},"input":{"type":"structure","required":["AccountId","RetentionSettings"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RetentionSettings":{"shape":"S9j"}}},"output":{"type":"structure","members":{"RetentionSettings":{"shape":"S9j"},"InitiateDeletionTimestamp":{"shape":"S2a"}}}},"PutSipMediaApplicationLoggingConfiguration":{"http":{"method":"PUT","requestUri":"/sip-media-applications/{sipMediaApplicationId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"SipMediaApplicationLoggingConfiguration":{"shape":"S9s"}}},"output":{"type":"structure","members":{"SipMediaApplicationLoggingConfiguration":{"shape":"S9s"}}}},"PutVoiceConnectorEmergencyCallingConfiguration":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/emergency-calling-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","EmergencyCallingConfiguration"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"EmergencyCallingConfiguration":{"shape":"Sa5"}}},"output":{"type":"structure","members":{"EmergencyCallingConfiguration":{"shape":"Sa5"}}}},"PutVoiceConnectorLoggingConfiguration":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","LoggingConfiguration"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"LoggingConfiguration":{"shape":"Sac"}}},"output":{"type":"structure","members":{"LoggingConfiguration":{"shape":"Sac"}}}},"PutVoiceConnectorOrigination":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/origination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","Origination"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Origination":{"shape":"Saf"}}},"output":{"type":"structure","members":{"Origination":{"shape":"Saf"}}}},"PutVoiceConnectorProxy":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy"},"input":{"type":"structure","required":["DefaultSessionExpiryMinutes","PhoneNumberPoolCountries","VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"DefaultSessionExpiryMinutes":{"type":"integer"},"PhoneNumberPoolCountries":{"type":"list","member":{}},"FallBackPhoneNumber":{"shape":"S3"},"Disabled":{"type":"boolean"}}},"output":{"type":"structure","members":{"Proxy":{"shape":"Sao"}}}},"PutVoiceConnectorStreamingConfiguration":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","StreamingConfiguration"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"StreamingConfiguration":{"shape":"Sat"}}},"output":{"type":"structure","members":{"StreamingConfiguration":{"shape":"Sat"}}}},"PutVoiceConnectorTermination":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/termination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","Termination"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Termination":{"shape":"Sb0"}}},"output":{"type":"structure","members":{"Termination":{"shape":"Sb0"}}}},"PutVoiceConnectorTerminationCredentials":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=put","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Credentials":{"type":"list","member":{"type":"structure","members":{"Username":{"shape":"S23"},"Password":{"shape":"S23"}}}}}}},"RedactChannelMessage":{"http":{"requestUri":"/channels/{channelArn}/messages/{messageId}?operation=redact","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{}}},"endpoint":{"hostPrefix":"messaging-"}},"RedactConversationMessage":{"http":{"requestUri":"/accounts/{accountId}/conversations/{conversationId}/messages/{messageId}?operation=redact","responseCode":200},"input":{"type":"structure","required":["AccountId","ConversationId","MessageId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"ConversationId":{"location":"uri","locationName":"conversationId"},"MessageId":{"location":"uri","locationName":"messageId"}}},"output":{"type":"structure","members":{}}},"RedactRoomMessage":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/messages/{messageId}?operation=redact","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId","MessageId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MessageId":{"location":"uri","locationName":"messageId"}}},"output":{"type":"structure","members":{}}},"RegenerateSecurityToken":{"http":{"requestUri":"/accounts/{accountId}/bots/{botId}?operation=regenerate-security-token","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"ResetPersonalPIN":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=reset-personal-pin","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"RestorePhoneNumber":{"http":{"requestUri":"/phone-numbers/{phoneNumberId}?operation=restore","responseCode":200},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"}}},"output":{"type":"structure","members":{"PhoneNumber":{"shape":"S93"}}}},"SearchAvailablePhoneNumbers":{"http":{"method":"GET","requestUri":"/search?type=phone-numbers"},"input":{"type":"structure","members":{"AreaCode":{"location":"querystring","locationName":"area-code"},"City":{"location":"querystring","locationName":"city"},"Country":{"location":"querystring","locationName":"country"},"State":{"location":"querystring","locationName":"state"},"TollFreePrefix":{"location":"querystring","locationName":"toll-free-prefix"},"PhoneNumberType":{"location":"querystring","locationName":"phone-number-type"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"E164PhoneNumbers":{"shape":"S7"},"NextToken":{}}}},"SendChannelMessage":{"http":{"requestUri":"/channels/{channelArn}/messages","responseCode":201},"input":{"type":"structure","required":["ChannelArn","Content","Type","Persistence","ClientRequestToken"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Content":{"type":"string","sensitive":true},"Type":{},"Persistence":{},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{}}},"endpoint":{"hostPrefix":"messaging-"}},"StartMeetingTranscription":{"http":{"requestUri":"/meetings/{meetingId}/transcription?operation=start","responseCode":200},"input":{"type":"structure","required":["MeetingId","TranscriptionConfiguration"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"TranscriptionConfiguration":{"type":"structure","members":{"EngineTranscribeSettings":{"type":"structure","required":["LanguageCode"],"members":{"LanguageCode":{},"VocabularyFilterMethod":{},"VocabularyFilterName":{},"VocabularyName":{},"Region":{}}},"EngineTranscribeMedicalSettings":{"type":"structure","required":["LanguageCode","Specialty","Type"],"members":{"LanguageCode":{},"Specialty":{},"Type":{},"VocabularyName":{},"Region":{}}}}}}},"output":{"type":"structure","members":{}}},"StopMeetingTranscription":{"http":{"requestUri":"/meetings/{meetingId}/transcription?operation=stop","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}},"output":{"type":"structure","members":{}}},"TagAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=add","responseCode":204},"input":{"type":"structure","required":["MeetingId","AttendeeId","Tags"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"},"Tags":{"shape":"So"}}}},"TagMeeting":{"http":{"requestUri":"/meetings/{meetingId}/tags?operation=add","responseCode":204},"input":{"type":"structure","required":["MeetingId","Tags"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"Tags":{"shape":"S3r"}}}},"TagResource":{"http":{"requestUri":"/tags?operation=tag-resource","responseCode":204},"input":{"type":"structure","required":["ResourceARN","Tags"],"members":{"ResourceARN":{"shape":"S37"},"Tags":{"shape":"S2h"}}}},"UntagAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=delete","responseCode":204},"input":{"type":"structure","required":["MeetingId","TagKeys","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"},"TagKeys":{"type":"list","member":{"shape":"Sq"}}}}},"UntagMeeting":{"http":{"requestUri":"/meetings/{meetingId}/tags?operation=delete","responseCode":204},"input":{"type":"structure","required":["MeetingId","TagKeys"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"TagKeys":{"type":"list","member":{"shape":"Sq"}}}}},"UntagResource":{"http":{"requestUri":"/tags?operation=untag-resource","responseCode":204},"input":{"type":"structure","required":["ResourceARN","TagKeys"],"members":{"ResourceARN":{"shape":"S37"},"TagKeys":{"type":"list","member":{"shape":"Sq"}}}}},"UpdateAccount":{"http":{"requestUri":"/accounts/{accountId}","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"Name":{},"DefaultLicense":{}}},"output":{"type":"structure","members":{"Account":{"shape":"S28"}}}},"UpdateAccountSettings":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/settings","responseCode":204},"input":{"type":"structure","required":["AccountId","AccountSettings"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"AccountSettings":{"shape":"S81"}}},"output":{"type":"structure","members":{}}},"UpdateAppInstance":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","Name"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"}}},"output":{"type":"structure","members":{"AppInstanceArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"UpdateAppInstanceUser":{"http":{"method":"PUT","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceUserArn","Name"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"},"Name":{"shape":"S2n"},"Metadata":{"shape":"S2f"}}},"output":{"type":"structure","members":{"AppInstanceUserArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"UpdateBot":{"http":{"requestUri":"/accounts/{accountId}/bots/{botId}","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"},"Disabled":{"type":"boolean"}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"UpdateChannel":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","Name","Mode"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Name":{"shape":"S2e"},"Mode":{},"Metadata":{"shape":"S2f"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}},"endpoint":{"hostPrefix":"messaging-"}},"UpdateChannelMessage":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"Content":{"shape":"S8j"},"Metadata":{"shape":"S2f"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{}}},"endpoint":{"hostPrefix":"messaging-"}},"UpdateChannelReadMarker":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}/readMarker","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}},"endpoint":{"hostPrefix":"messaging-"}},"UpdateGlobalSettings":{"http":{"method":"PUT","requestUri":"/settings","responseCode":204},"input":{"type":"structure","members":{"BusinessCalling":{"shape":"S8r"},"VoiceConnector":{"shape":"S8s"}}}},"UpdatePhoneNumber":{"http":{"requestUri":"/phone-numbers/{phoneNumberId}","responseCode":200},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"},"ProductType":{},"CallingName":{"shape":"S1u"}}},"output":{"type":"structure","members":{"PhoneNumber":{"shape":"S93"}}}},"UpdatePhoneNumberSettings":{"http":{"method":"PUT","requestUri":"/settings/phone-number","responseCode":204},"input":{"type":"structure","required":["CallingName"],"members":{"CallingName":{"shape":"S1u"}}}},"UpdateProxySession":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}","responseCode":201},"input":{"type":"structure","required":["Capabilities","VoiceConnectorId","ProxySessionId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ProxySessionId":{"location":"uri","locationName":"proxySessionId"},"Capabilities":{"shape":"S4e"},"ExpiryMinutes":{"type":"integer"}}},"output":{"type":"structure","members":{"ProxySession":{"shape":"S4m"}}}},"UpdateRoom":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"Name":{"shape":"S23"}}},"output":{"type":"structure","members":{"Room":{"shape":"S4t"}}}},"UpdateRoomMembership":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships/{memberId}","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId","MemberId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MemberId":{"location":"uri","locationName":"memberId"},"Role":{}}},"output":{"type":"structure","members":{"RoomMembership":{"shape":"S4w"}}}},"UpdateSipMediaApplication":{"http":{"method":"PUT","requestUri":"/sip-media-applications/{sipMediaApplicationId}","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"Name":{},"Endpoints":{"shape":"S51"}}},"output":{"type":"structure","members":{"SipMediaApplication":{"shape":"S55"}}}},"UpdateSipMediaApplicationCall":{"http":{"requestUri":"/sip-media-applications/{sipMediaApplicationId}/calls/{transactionId}","responseCode":202},"input":{"type":"structure","required":["SipMediaApplicationId","TransactionId","Arguments"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"TransactionId":{"location":"uri","locationName":"transactionId"},"Arguments":{"type":"map","key":{"shape":"S23"},"value":{"shape":"S23"}}}},"output":{"type":"structure","members":{"SipMediaApplicationCall":{"shape":"S59"}}}},"UpdateSipRule":{"http":{"method":"PUT","requestUri":"/sip-rules/{sipRuleId}","responseCode":202},"input":{"type":"structure","required":["SipRuleId","Name"],"members":{"SipRuleId":{"location":"uri","locationName":"sipRuleId"},"Name":{},"Disabled":{"type":"boolean"},"TargetApplications":{"shape":"S5d"}}},"output":{"type":"structure","members":{"SipRule":{"shape":"S5h"}}}},"UpdateUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"},"LicenseType":{},"UserType":{},"AlexaForBusinessMetadata":{"shape":"S21"}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"UpdateUserSettings":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/users/{userId}/settings","responseCode":204},"input":{"type":"structure","required":["AccountId","UserId","UserSettings"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"},"UserSettings":{"shape":"S9z"}}}},"UpdateVoiceConnector":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","Name","RequireEncryption"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Name":{},"RequireEncryption":{"type":"boolean"}}},"output":{"type":"structure","members":{"VoiceConnector":{"shape":"S5s"}}}},"UpdateVoiceConnectorGroup":{"http":{"method":"PUT","requestUri":"/voice-connector-groups/{voiceConnectorGroupId}","responseCode":202},"input":{"type":"structure","required":["VoiceConnectorGroupId","Name","VoiceConnectorItems"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"},"Name":{},"VoiceConnectorItems":{"shape":"S5v"}}},"output":{"type":"structure","members":{"VoiceConnectorGroup":{"shape":"S5z"}}}}},"shapes":{"S3":{"type":"string","sensitive":true},"S7":{"type":"list","member":{"shape":"S3"}},"Sa":{"type":"list","member":{"type":"structure","members":{"PhoneNumberId":{},"ErrorCode":{},"ErrorMessage":{}}}},"Sg":{"type":"list","member":{"type":"structure","members":{"GroupName":{}}}},"Sm":{"type":"structure","required":["ExternalUserId"],"members":{"ExternalUserId":{"shape":"Sn"},"Tags":{"shape":"So"}}},"Sn":{"type":"string","sensitive":true},"So":{"type":"list","member":{"shape":"Sp"}},"Sp":{"type":"structure","required":["Key","Value"],"members":{"Key":{"shape":"Sq"},"Value":{"type":"string","sensitive":true}}},"Sq":{"type":"string","sensitive":true},"St":{"type":"list","member":{"shape":"Su"}},"Su":{"type":"structure","members":{"ExternalUserId":{"shape":"Sn"},"AttendeeId":{},"JoinToken":{"shape":"Sv"}}},"Sv":{"type":"string","sensitive":true},"Sw":{"type":"list","member":{"type":"structure","members":{"ExternalUserId":{"shape":"Sn"},"ErrorCode":{},"ErrorMessage":{}}}},"S14":{"type":"structure","members":{"Arn":{},"Name":{"type":"string","sensitive":true}}},"S1h":{"type":"list","member":{}},"S1k":{"type":"list","member":{}},"S1m":{"type":"list","member":{"type":"structure","members":{"UserId":{},"ErrorCode":{},"ErrorMessage":{}}}},"S1u":{"type":"string","sensitive":true},"S21":{"type":"structure","members":{"IsAlexaForBusinessEnabled":{"type":"boolean"},"AlexaForBusinessRoomArn":{"shape":"S23"}}},"S23":{"type":"string","sensitive":true},"S28":{"type":"structure","required":["AwsAccountId","AccountId","Name"],"members":{"AwsAccountId":{},"AccountId":{},"Name":{},"AccountType":{},"CreatedTimestamp":{"shape":"S2a"},"DefaultLicense":{},"SupportedLicenses":{"type":"list","member":{}},"AccountStatus":{},"SigninDelegateGroups":{"shape":"Sg"}}},"S2a":{"type":"timestamp","timestampFormat":"iso8601"},"S2e":{"type":"string","sensitive":true},"S2f":{"type":"string","sensitive":true},"S2g":{"type":"string","sensitive":true},"S2h":{"type":"list","member":{"shape":"Sp"}},"S2n":{"type":"string","sensitive":true},"S2t":{"type":"structure","members":{"BotId":{},"UserId":{},"DisplayName":{"shape":"S23"},"BotType":{},"Disabled":{"type":"boolean"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"BotEmail":{"shape":"S23"},"SecurityToken":{"shape":"S23"}}},"S37":{"type":"string","sensitive":true},"S39":{"type":"structure","members":{"SourceConfiguration":{"type":"structure","members":{"SelectedVideoStreams":{"type":"structure","members":{"AttendeeIds":{"type":"list","member":{}},"ExternalUserIds":{"type":"list","member":{"shape":"Sn"}}}}}},"ArtifactsConfiguration":{"type":"structure","required":["Audio","Video","Content"],"members":{"Audio":{"type":"structure","required":["MuxType"],"members":{"MuxType":{}}},"Video":{"type":"structure","required":["State"],"members":{"State":{},"MuxType":{}}},"Content":{"type":"structure","required":["State"],"members":{"State":{},"MuxType":{}}}}}}},"S3n":{"type":"structure","members":{"MediaPipelineId":{},"SourceType":{},"SourceArn":{"shape":"S37"},"Status":{},"SinkType":{},"SinkArn":{"shape":"S37"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"ChimeSdkMeetingConfiguration":{"shape":"S39"}}},"S3q":{"type":"string","sensitive":true},"S3r":{"type":"list","member":{"shape":"Sp"}},"S3s":{"type":"structure","members":{"SnsTopicArn":{"shape":"S37"},"SqsQueueArn":{"shape":"S37"}}},"S3u":{"type":"structure","members":{"MeetingId":{},"ExternalMeetingId":{"shape":"S3q"},"MediaPlacement":{"type":"structure","members":{"AudioHostUrl":{},"AudioFallbackUrl":{},"ScreenDataUrl":{},"ScreenSharingUrl":{},"ScreenViewingUrl":{},"SignalingUrl":{},"TurnControlUrl":{},"EventIngestionUrl":{}}},"MediaRegion":{}}},"S44":{"type":"structure","members":{"PhoneNumberOrderId":{},"ProductType":{},"Status":{},"OrderedPhoneNumbers":{"type":"list","member":{"type":"structure","members":{"E164PhoneNumber":{"shape":"S3"},"Status":{}}}},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S4e":{"type":"list","member":{}},"S4i":{"type":"structure","required":["Country","AreaCode"],"members":{"Country":{},"AreaCode":{}}},"S4m":{"type":"structure","members":{"VoiceConnectorId":{},"ProxySessionId":{},"Name":{},"Status":{},"ExpiryMinutes":{"type":"integer"},"Capabilities":{"shape":"S4e"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"EndedTimestamp":{"shape":"S2a"},"Participants":{"type":"list","member":{"type":"structure","members":{"PhoneNumber":{"shape":"S3"},"ProxyPhoneNumber":{"shape":"S3"}}}},"NumberSelectionBehavior":{},"GeoMatchLevel":{},"GeoMatchParams":{"shape":"S4i"}}},"S4t":{"type":"structure","members":{"RoomId":{},"Name":{"shape":"S23"},"AccountId":{},"CreatedBy":{},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S4w":{"type":"structure","members":{"RoomId":{},"Member":{"type":"structure","members":{"MemberId":{},"MemberType":{},"Email":{"shape":"S23"},"FullName":{"shape":"S23"},"AccountId":{}}},"Role":{},"InvitedBy":{},"UpdatedTimestamp":{"shape":"S2a"}}},"S51":{"type":"list","member":{"type":"structure","members":{"LambdaArn":{"type":"string","sensitive":true}}}},"S55":{"type":"structure","members":{"SipMediaApplicationId":{},"AwsRegion":{},"Name":{},"Endpoints":{"shape":"S51"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S59":{"type":"structure","members":{"TransactionId":{}}},"S5d":{"type":"list","member":{"type":"structure","members":{"SipMediaApplicationId":{},"Priority":{"type":"integer"},"AwsRegion":{}}}},"S5h":{"type":"structure","members":{"SipRuleId":{},"Name":{},"Disabled":{"type":"boolean"},"TriggerType":{},"TriggerValue":{},"TargetApplications":{"shape":"S5d"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S5j":{"type":"string","sensitive":true},"S5l":{"type":"structure","required":["UserId"],"members":{"UserId":{},"AccountId":{},"PrimaryEmail":{"shape":"S5j"},"PrimaryProvisionedNumber":{"shape":"S23"},"DisplayName":{"shape":"S23"},"LicenseType":{},"UserType":{},"UserRegistrationStatus":{},"UserInvitationStatus":{},"RegisteredOn":{"shape":"S2a"},"InvitedOn":{"shape":"S2a"},"AlexaForBusinessMetadata":{"shape":"S21"},"PersonalPIN":{}}},"S5s":{"type":"structure","members":{"VoiceConnectorId":{},"AwsRegion":{},"Name":{},"OutboundHostName":{},"RequireEncryption":{"type":"boolean"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S5v":{"type":"list","member":{"type":"structure","required":["VoiceConnectorId","Priority"],"members":{"VoiceConnectorId":{},"Priority":{"type":"integer"}}}},"S5z":{"type":"structure","members":{"VoiceConnectorGroupId":{},"Name":{},"VoiceConnectorItems":{"shape":"S5v"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S6u":{"type":"list","member":{"shape":"S23"}},"S7g":{"type":"structure","members":{"ChannelSummary":{"shape":"S7h"},"AppInstanceUserMembershipSummary":{"type":"structure","members":{"Type":{},"ReadMarkerTimestamp":{"type":"timestamp"}}}}},"S7h":{"type":"structure","members":{"Name":{"shape":"S2e"},"ChannelArn":{},"Mode":{},"Privacy":{},"Metadata":{"shape":"S2f"},"LastMessageTimestamp":{"type":"timestamp"}}},"S7l":{"type":"structure","members":{"ChannelSummary":{"shape":"S7h"}}},"S81":{"type":"structure","members":{"DisableRemoteControl":{"type":"boolean"},"EnableDialOut":{"type":"boolean"}}},"S84":{"type":"structure","members":{"ChannelRetentionSettings":{"type":"structure","members":{"RetentionDays":{"type":"integer"}}}}},"S89":{"type":"list","member":{"type":"structure","required":["AppInstanceDataType","ResourceArn"],"members":{"AppInstanceDataType":{},"ResourceArn":{"shape":"S37"}}}},"S8j":{"type":"string","sensitive":true},"S8p":{"type":"structure","members":{"BotId":{},"OutboundEventsHTTPSEndpoint":{"shape":"S23"},"LambdaFunctionArn":{"shape":"S23"}}},"S8r":{"type":"structure","members":{"CdrBucket":{}}},"S8s":{"type":"structure","members":{"CdrBucket":{}}},"S93":{"type":"structure","members":{"PhoneNumberId":{},"E164PhoneNumber":{"shape":"S3"},"Country":{},"Type":{},"ProductType":{},"Status":{},"Capabilities":{"type":"structure","members":{"InboundCall":{"type":"boolean"},"OutboundCall":{"type":"boolean"},"InboundSMS":{"type":"boolean"},"OutboundSMS":{"type":"boolean"},"InboundMMS":{"type":"boolean"},"OutboundMMS":{"type":"boolean"}}},"Associations":{"type":"list","member":{"type":"structure","members":{"Value":{},"Name":{},"AssociatedTimestamp":{"shape":"S2a"}}}},"CallingName":{"shape":"S1u"},"CallingNameStatus":{},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"DeletionTimestamp":{"shape":"S2a"}}},"S9j":{"type":"structure","members":{"RoomRetentionSettings":{"type":"structure","members":{"RetentionDays":{"type":"integer"}}},"ConversationRetentionSettings":{"type":"structure","members":{"RetentionDays":{"type":"integer"}}}}},"S9s":{"type":"structure","members":{"EnableSipMediaApplicationMessageLogs":{"type":"boolean"}}},"S9z":{"type":"structure","required":["Telephony"],"members":{"Telephony":{"type":"structure","required":["InboundCalling","OutboundCalling","SMS"],"members":{"InboundCalling":{"type":"boolean"},"OutboundCalling":{"type":"boolean"},"SMS":{"type":"boolean"}}}}},"Sa5":{"type":"structure","members":{"DNIS":{"type":"list","member":{"type":"structure","required":["EmergencyPhoneNumber","CallingCountry"],"members":{"EmergencyPhoneNumber":{"shape":"S3"},"TestPhoneNumber":{"shape":"S3"},"CallingCountry":{}}}}}},"Sac":{"type":"structure","members":{"EnableSIPLogs":{"type":"boolean"}}},"Saf":{"type":"structure","members":{"Routes":{"type":"list","member":{"type":"structure","members":{"Host":{},"Port":{"type":"integer"},"Protocol":{},"Priority":{"type":"integer"},"Weight":{"type":"integer"}}}},"Disabled":{"type":"boolean"}}},"Sao":{"type":"structure","members":{"DefaultSessionExpiryMinutes":{"type":"integer"},"Disabled":{"type":"boolean"},"FallBackPhoneNumber":{"shape":"S3"},"PhoneNumberCountries":{"shape":"Saq"}}},"Saq":{"type":"list","member":{}},"Sat":{"type":"structure","required":["DataRetentionInHours"],"members":{"DataRetentionInHours":{"type":"integer"},"Disabled":{"type":"boolean"},"StreamingNotificationTargets":{"type":"list","member":{"type":"structure","required":["NotificationTarget"],"members":{"NotificationTarget":{}}}}}},"Sb0":{"type":"structure","members":{"CpsLimit":{"type":"integer"},"DefaultPhoneNumber":{"shape":"S3"},"CallingRegions":{"type":"list","member":{}},"CidrAllowedList":{"shape":"Saq"},"Disabled":{"type":"boolean"}}},"Sbj":{"type":"string","sensitive":true}}}
49992
+ module.exports = {"version":"2.0","metadata":{"apiVersion":"2018-05-01","endpointPrefix":"chime","protocol":"rest-json","serviceFullName":"Amazon Chime","serviceId":"Chime","signatureVersion":"v4","uid":"chime-2018-05-01"},"operations":{"AssociatePhoneNumberWithUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=associate-phone-number","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId","E164PhoneNumber"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"},"E164PhoneNumber":{"shape":"S3"}}},"output":{"type":"structure","members":{}}},"AssociatePhoneNumbersWithVoiceConnector":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}?operation=associate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","E164PhoneNumbers"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"E164PhoneNumbers":{"shape":"S7"},"ForceAssociate":{"type":"boolean"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"AssociatePhoneNumbersWithVoiceConnectorGroup":{"http":{"requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=associate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorGroupId","E164PhoneNumbers"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"},"E164PhoneNumbers":{"shape":"S7"},"ForceAssociate":{"type":"boolean"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"AssociateSigninDelegateGroupsWithAccount":{"http":{"requestUri":"/accounts/{accountId}?operation=associate-signin-delegate-groups","responseCode":200},"input":{"type":"structure","required":["AccountId","SigninDelegateGroups"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"SigninDelegateGroups":{"shape":"Sg"}}},"output":{"type":"structure","members":{}}},"BatchCreateAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees?operation=batch-create","responseCode":201},"input":{"type":"structure","required":["MeetingId","Attendees"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"Attendees":{"type":"list","member":{"shape":"Sm"}}}},"output":{"type":"structure","members":{"Attendees":{"shape":"St"},"Errors":{"shape":"Sw"}}}},"BatchCreateChannelMembership":{"http":{"requestUri":"/channels/{channelArn}/memberships?operation=batch-create","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArns"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Type":{},"MemberArns":{"type":"list","member":{}},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"BatchChannelMemberships":{"type":"structure","members":{"InvitedBy":{"shape":"S14"},"Type":{},"Members":{"type":"list","member":{"shape":"S14"}},"ChannelArn":{}}},"Errors":{"type":"list","member":{"type":"structure","members":{"MemberArn":{},"ErrorCode":{},"ErrorMessage":{}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"BatchCreateRoomMembership":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships?operation=batch-create","responseCode":201},"input":{"type":"structure","required":["AccountId","RoomId","MembershipItemList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MembershipItemList":{"type":"list","member":{"type":"structure","members":{"MemberId":{},"Role":{}}}}}},"output":{"type":"structure","members":{"Errors":{"type":"list","member":{"type":"structure","members":{"MemberId":{},"ErrorCode":{},"ErrorMessage":{}}}}}}},"BatchDeletePhoneNumber":{"http":{"requestUri":"/phone-numbers?operation=batch-delete","responseCode":200},"input":{"type":"structure","required":["PhoneNumberIds"],"members":{"PhoneNumberIds":{"shape":"S1h"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"BatchSuspendUser":{"http":{"requestUri":"/accounts/{accountId}/users?operation=suspend","responseCode":200},"input":{"type":"structure","required":["AccountId","UserIdList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserIdList":{"shape":"S1k"}}},"output":{"type":"structure","members":{"UserErrors":{"shape":"S1m"}}}},"BatchUnsuspendUser":{"http":{"requestUri":"/accounts/{accountId}/users?operation=unsuspend","responseCode":200},"input":{"type":"structure","required":["AccountId","UserIdList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserIdList":{"shape":"S1k"}}},"output":{"type":"structure","members":{"UserErrors":{"shape":"S1m"}}}},"BatchUpdatePhoneNumber":{"http":{"requestUri":"/phone-numbers?operation=batch-update","responseCode":200},"input":{"type":"structure","required":["UpdatePhoneNumberRequestItems"],"members":{"UpdatePhoneNumberRequestItems":{"type":"list","member":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{},"ProductType":{},"CallingName":{"shape":"S1u"}}}}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"BatchUpdateUser":{"http":{"requestUri":"/accounts/{accountId}/users","responseCode":200},"input":{"type":"structure","required":["AccountId","UpdateUserRequestItems"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UpdateUserRequestItems":{"type":"list","member":{"type":"structure","required":["UserId"],"members":{"UserId":{},"LicenseType":{},"UserType":{},"AlexaForBusinessMetadata":{"shape":"S21"}}}}}},"output":{"type":"structure","members":{"UserErrors":{"shape":"S1m"}}}},"CreateAccount":{"http":{"requestUri":"/accounts","responseCode":201},"input":{"type":"structure","required":["Name"],"members":{"Name":{}}},"output":{"type":"structure","members":{"Account":{"shape":"S28"}}}},"CreateAppInstance":{"http":{"requestUri":"/app-instances","responseCode":201},"input":{"type":"structure","required":["Name","ClientRequestToken"],"members":{"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"Tags":{"shape":"S2h"}}},"output":{"type":"structure","members":{"AppInstanceArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"CreateAppInstanceAdmin":{"http":{"requestUri":"/app-instances/{appInstanceArn}/admins","responseCode":201},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceAdmin":{"shape":"S14"},"AppInstanceArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"CreateAppInstanceUser":{"http":{"requestUri":"/app-instance-users","responseCode":201},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceUserId","Name","ClientRequestToken"],"members":{"AppInstanceArn":{},"AppInstanceUserId":{"type":"string","sensitive":true},"Name":{"shape":"S2n"},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"Tags":{"shape":"S2h"}}},"output":{"type":"structure","members":{"AppInstanceUserArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"CreateAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees","responseCode":201},"input":{"type":"structure","required":["MeetingId","ExternalUserId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"ExternalUserId":{"shape":"Sn"},"Tags":{"shape":"So"}}},"output":{"type":"structure","members":{"Attendee":{"shape":"Su"}}}},"CreateBot":{"http":{"requestUri":"/accounts/{accountId}/bots","responseCode":201},"input":{"type":"structure","required":["DisplayName","AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"DisplayName":{"shape":"S23"},"Domain":{}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"CreateChannel":{"http":{"requestUri":"/channels","responseCode":201},"input":{"type":"structure","required":["AppInstanceArn","Name","ClientRequestToken"],"members":{"AppInstanceArn":{},"Name":{"shape":"S2e"},"Mode":{},"Privacy":{},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"Tags":{"shape":"S2h"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateChannelBan":{"http":{"requestUri":"/channels/{channelArn}/bans","responseCode":201},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"Member":{"shape":"S14"}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateChannelMembership":{"http":{"requestUri":"/channels/{channelArn}/memberships","responseCode":201},"input":{"type":"structure","required":["ChannelArn","MemberArn","Type"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{},"Type":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"Member":{"shape":"S14"}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateChannelModerator":{"http":{"requestUri":"/channels/{channelArn}/moderators","responseCode":201},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"ChannelModerator":{"shape":"S14"}}},"endpoint":{"hostPrefix":"messaging-"}},"CreateMediaCapturePipeline":{"http":{"requestUri":"/media-capture-pipelines","responseCode":201},"input":{"type":"structure","required":["SourceType","SourceArn","SinkType","SinkArn"],"members":{"SourceType":{},"SourceArn":{"shape":"S37"},"SinkType":{},"SinkArn":{"shape":"S37"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ChimeSdkMeetingConfiguration":{"shape":"S39"}}},"output":{"type":"structure","members":{"MediaCapturePipeline":{"shape":"S3n"}}}},"CreateMeeting":{"http":{"requestUri":"/meetings","responseCode":201},"input":{"type":"structure","required":["ClientRequestToken"],"members":{"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ExternalMeetingId":{"shape":"S3q"},"MeetingHostId":{"shape":"Sn"},"MediaRegion":{},"Tags":{"shape":"S3r"},"NotificationsConfiguration":{"shape":"S3s"}}},"output":{"type":"structure","members":{"Meeting":{"shape":"S3u"}}}},"CreateMeetingDialOut":{"http":{"requestUri":"/meetings/{meetingId}/dial-outs","responseCode":201},"input":{"type":"structure","required":["MeetingId","FromPhoneNumber","ToPhoneNumber","JoinToken"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"FromPhoneNumber":{"shape":"S3"},"ToPhoneNumber":{"shape":"S3"},"JoinToken":{"shape":"Sv"}}},"output":{"type":"structure","members":{"TransactionId":{}}}},"CreateMeetingWithAttendees":{"http":{"requestUri":"/meetings?operation=create-attendees","responseCode":201},"input":{"type":"structure","required":["ClientRequestToken"],"members":{"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ExternalMeetingId":{"shape":"S3q"},"MeetingHostId":{"shape":"Sn"},"MediaRegion":{},"Tags":{"shape":"S3r"},"NotificationsConfiguration":{"shape":"S3s"},"Attendees":{"type":"list","member":{"shape":"Sm"}}}},"output":{"type":"structure","members":{"Meeting":{"shape":"S3u"},"Attendees":{"shape":"St"},"Errors":{"shape":"Sw"}}}},"CreatePhoneNumberOrder":{"http":{"requestUri":"/phone-number-orders","responseCode":201},"input":{"type":"structure","required":["ProductType","E164PhoneNumbers"],"members":{"ProductType":{},"E164PhoneNumbers":{"shape":"S7"}}},"output":{"type":"structure","members":{"PhoneNumberOrder":{"shape":"S44"}}}},"CreateProxySession":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions","responseCode":201},"input":{"type":"structure","required":["ParticipantPhoneNumbers","Capabilities","VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ParticipantPhoneNumbers":{"type":"list","member":{"shape":"S3"}},"Name":{"type":"string","sensitive":true},"ExpiryMinutes":{"type":"integer"},"Capabilities":{"shape":"S4e"},"NumberSelectionBehavior":{},"GeoMatchLevel":{},"GeoMatchParams":{"shape":"S4i"}}},"output":{"type":"structure","members":{"ProxySession":{"shape":"S4m"}}}},"CreateRoom":{"http":{"requestUri":"/accounts/{accountId}/rooms","responseCode":201},"input":{"type":"structure","required":["AccountId","Name"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"Name":{"shape":"S23"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true}}},"output":{"type":"structure","members":{"Room":{"shape":"S4t"}}}},"CreateRoomMembership":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships","responseCode":201},"input":{"type":"structure","required":["AccountId","RoomId","MemberId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MemberId":{},"Role":{}}},"output":{"type":"structure","members":{"RoomMembership":{"shape":"S4w"}}}},"CreateSipMediaApplication":{"http":{"requestUri":"/sip-media-applications","responseCode":201},"input":{"type":"structure","required":["AwsRegion","Name","Endpoints"],"members":{"AwsRegion":{},"Name":{},"Endpoints":{"shape":"S51"}}},"output":{"type":"structure","members":{"SipMediaApplication":{"shape":"S55"}}}},"CreateSipMediaApplicationCall":{"http":{"requestUri":"/sip-media-applications/{sipMediaApplicationId}/calls","responseCode":201},"input":{"type":"structure","required":["FromPhoneNumber","ToPhoneNumber","SipMediaApplicationId"],"members":{"FromPhoneNumber":{"shape":"S3"},"ToPhoneNumber":{"shape":"S3"},"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"SipHeaders":{"type":"map","key":{"shape":"S23"},"value":{"shape":"S23"}}}},"output":{"type":"structure","members":{"SipMediaApplicationCall":{"shape":"S59"}}}},"CreateSipRule":{"http":{"requestUri":"/sip-rules","responseCode":201},"input":{"type":"structure","required":["Name","TriggerType","TriggerValue","TargetApplications"],"members":{"Name":{},"TriggerType":{},"TriggerValue":{},"Disabled":{"type":"boolean"},"TargetApplications":{"shape":"S5d"}}},"output":{"type":"structure","members":{"SipRule":{"shape":"S5h"}}}},"CreateUser":{"http":{"requestUri":"/accounts/{accountId}/users?operation=create","responseCode":201},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"Username":{},"Email":{"shape":"S5j"},"UserType":{}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"CreateVoiceConnector":{"http":{"requestUri":"/voice-connectors","responseCode":201},"input":{"type":"structure","required":["Name","RequireEncryption"],"members":{"Name":{},"AwsRegion":{},"RequireEncryption":{"type":"boolean"}}},"output":{"type":"structure","members":{"VoiceConnector":{"shape":"S5s"}}}},"CreateVoiceConnectorGroup":{"http":{"requestUri":"/voice-connector-groups","responseCode":201},"input":{"type":"structure","required":["Name"],"members":{"Name":{},"VoiceConnectorItems":{"shape":"S5v"}}},"output":{"type":"structure","members":{"VoiceConnectorGroup":{"shape":"S5z"}}}},"DeleteAccount":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}","responseCode":204},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{}}},"DeleteAppInstance":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"endpoint":{"hostPrefix":"identity-"}},"DeleteAppInstanceAdmin":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{"location":"uri","locationName":"appInstanceAdminArn"},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"endpoint":{"hostPrefix":"identity-"}},"DeleteAppInstanceStreamingConfigurations":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}/streaming-configurations","responseCode":204},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}}},"DeleteAppInstanceUser":{"http":{"method":"DELETE","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceUserArn"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"}}},"endpoint":{"hostPrefix":"identity-"}},"DeleteAttendee":{"http":{"method":"DELETE","requestUri":"/meetings/{meetingId}/attendees/{attendeeId}","responseCode":204},"input":{"type":"structure","required":["MeetingId","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"}}}},"DeleteChannel":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelBan":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/bans/{memberArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelMembership":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/memberships/{memberArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelMessage":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteChannelModerator":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{"location":"uri","locationName":"channelModeratorArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"endpoint":{"hostPrefix":"messaging-"}},"DeleteEventsConfiguration":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration","responseCode":204},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}}},"DeleteMediaCapturePipeline":{"http":{"method":"DELETE","requestUri":"/media-capture-pipelines/{mediaPipelineId}","responseCode":204},"input":{"type":"structure","required":["MediaPipelineId"],"members":{"MediaPipelineId":{"location":"uri","locationName":"mediaPipelineId"}}}},"DeleteMeeting":{"http":{"method":"DELETE","requestUri":"/meetings/{meetingId}","responseCode":204},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}}},"DeletePhoneNumber":{"http":{"method":"DELETE","requestUri":"/phone-numbers/{phoneNumberId}","responseCode":204},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"}}}},"DeleteProxySession":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId","ProxySessionId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ProxySessionId":{"location":"uri","locationName":"proxySessionId"}}}},"DeleteRoom":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}/rooms/{roomId}","responseCode":204},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"}}}},"DeleteRoomMembership":{"http":{"method":"DELETE","requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships/{memberId}","responseCode":204},"input":{"type":"structure","required":["AccountId","RoomId","MemberId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MemberId":{"location":"uri","locationName":"memberId"}}}},"DeleteSipMediaApplication":{"http":{"method":"DELETE","requestUri":"/sip-media-applications/{sipMediaApplicationId}","responseCode":204},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"}}}},"DeleteSipRule":{"http":{"method":"DELETE","requestUri":"/sip-rules/{sipRuleId}","responseCode":204},"input":{"type":"structure","required":["SipRuleId"],"members":{"SipRuleId":{"location":"uri","locationName":"sipRuleId"}}}},"DeleteVoiceConnector":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorEmergencyCallingConfiguration":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/emergency-calling-configuration","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorGroup":{"http":{"method":"DELETE","requestUri":"/voice-connector-groups/{voiceConnectorGroupId}","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorGroupId"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"}}}},"DeleteVoiceConnectorOrigination":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/origination","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorProxy":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorStreamingConfiguration":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorTermination":{"http":{"method":"DELETE","requestUri":"/voice-connectors/{voiceConnectorId}/termination","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}}},"DeleteVoiceConnectorTerminationCredentials":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=delete","responseCode":204},"input":{"type":"structure","required":["Usernames","VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Usernames":{"shape":"S6u"}}}},"DescribeAppInstance":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstance":{"type":"structure","members":{"AppInstanceArn":{},"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"identity-"}},"DescribeAppInstanceAdmin":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{"location":"uri","locationName":"appInstanceAdminArn"},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceAdmin":{"type":"structure","members":{"Admin":{"shape":"S14"},"AppInstanceArn":{},"CreatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"identity-"}},"DescribeAppInstanceUser":{"http":{"method":"GET","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceUserArn"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"}}},"output":{"type":"structure","members":{"AppInstanceUser":{"type":"structure","members":{"AppInstanceUserArn":{},"Name":{"shape":"S2n"},"CreatedTimestamp":{"type":"timestamp"},"Metadata":{"shape":"S2f"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"identity-"}},"DescribeChannel":{"http":{"method":"GET","requestUri":"/channels/{channelArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channel":{"type":"structure","members":{"Name":{"shape":"S2e"},"ChannelArn":{},"Mode":{},"Privacy":{},"Metadata":{"shape":"S2f"},"CreatedBy":{"shape":"S14"},"CreatedTimestamp":{"type":"timestamp"},"LastMessageTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelBan":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/bans/{memberArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelBan":{"type":"structure","members":{"Member":{"shape":"S14"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"CreatedBy":{"shape":"S14"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelMembership":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/memberships/{memberArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMembership":{"type":"structure","members":{"InvitedBy":{"shape":"S14"},"Type":{},"Member":{"shape":"S14"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelMembershipForAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels/{channelArn}?scope=app-instance-user-membership","responseCode":200},"input":{"type":"structure","required":["ChannelArn","AppInstanceUserArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMembership":{"shape":"S7g"}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelModeratedByAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels/{channelArn}?scope=app-instance-user-moderated-channel","responseCode":200},"input":{"type":"structure","required":["ChannelArn","AppInstanceUserArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channel":{"shape":"S7l"}}},"endpoint":{"hostPrefix":"messaging-"}},"DescribeChannelModerator":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{"location":"uri","locationName":"channelModeratorArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelModerator":{"type":"structure","members":{"Moderator":{"shape":"S14"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"CreatedBy":{"shape":"S14"}}}}},"endpoint":{"hostPrefix":"messaging-"}},"DisassociatePhoneNumberFromUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=disassociate-phone-number","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{}}},"DisassociatePhoneNumbersFromVoiceConnector":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}?operation=disassociate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","E164PhoneNumbers"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"E164PhoneNumbers":{"shape":"S7"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"DisassociatePhoneNumbersFromVoiceConnectorGroup":{"http":{"requestUri":"/voice-connector-groups/{voiceConnectorGroupId}?operation=disassociate-phone-numbers","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorGroupId","E164PhoneNumbers"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"},"E164PhoneNumbers":{"shape":"S7"}}},"output":{"type":"structure","members":{"PhoneNumberErrors":{"shape":"Sa"}}}},"DisassociateSigninDelegateGroupsFromAccount":{"http":{"requestUri":"/accounts/{accountId}?operation=disassociate-signin-delegate-groups","responseCode":200},"input":{"type":"structure","required":["AccountId","GroupNames"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"GroupNames":{"shape":"S1h"}}},"output":{"type":"structure","members":{}}},"GetAccount":{"http":{"method":"GET","requestUri":"/accounts/{accountId}"},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{"Account":{"shape":"S28"}}}},"GetAccountSettings":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/settings"},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{"AccountSettings":{"shape":"S81"}}}},"GetAppInstanceRetentionSettings":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/retention-settings","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceRetentionSettings":{"shape":"S84"},"InitiateDeletionTimestamp":{"type":"timestamp"}}},"endpoint":{"hostPrefix":"identity-"}},"GetAppInstanceStreamingConfigurations":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/streaming-configurations","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceStreamingConfigurations":{"shape":"S89"}}}},"GetAttendee":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/attendees/{attendeeId}","responseCode":200},"input":{"type":"structure","required":["MeetingId","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"}}},"output":{"type":"structure","members":{"Attendee":{"shape":"Su"}}}},"GetBot":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/bots/{botId}","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"GetChannelMessage":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMessage":{"type":"structure","members":{"ChannelArn":{},"MessageId":{},"Content":{"shape":"S8j"},"Metadata":{"shape":"S2f"},"Type":{},"CreatedTimestamp":{"type":"timestamp"},"LastEditedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"Sender":{"shape":"S14"},"Redacted":{"type":"boolean"},"Persistence":{}}}}},"endpoint":{"hostPrefix":"messaging-"}},"GetEventsConfiguration":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"EventsConfiguration":{"shape":"S8p"}}}},"GetGlobalSettings":{"http":{"method":"GET","requestUri":"/settings","responseCode":200},"output":{"type":"structure","members":{"BusinessCalling":{"shape":"S8r"},"VoiceConnector":{"shape":"S8s"}}}},"GetMediaCapturePipeline":{"http":{"method":"GET","requestUri":"/media-capture-pipelines/{mediaPipelineId}","responseCode":200},"input":{"type":"structure","required":["MediaPipelineId"],"members":{"MediaPipelineId":{"location":"uri","locationName":"mediaPipelineId"}}},"output":{"type":"structure","members":{"MediaCapturePipeline":{"shape":"S3n"}}}},"GetMeeting":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}},"output":{"type":"structure","members":{"Meeting":{"shape":"S3u"}}}},"GetMessagingSessionEndpoint":{"http":{"method":"GET","requestUri":"/endpoints/messaging-session","responseCode":200},"input":{"type":"structure","members":{}},"output":{"type":"structure","members":{"Endpoint":{"type":"structure","members":{"Url":{}}}}},"endpoint":{"hostPrefix":"messaging-"}},"GetPhoneNumber":{"http":{"method":"GET","requestUri":"/phone-numbers/{phoneNumberId}"},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"}}},"output":{"type":"structure","members":{"PhoneNumber":{"shape":"S93"}}}},"GetPhoneNumberOrder":{"http":{"method":"GET","requestUri":"/phone-number-orders/{phoneNumberOrderId}","responseCode":200},"input":{"type":"structure","required":["PhoneNumberOrderId"],"members":{"PhoneNumberOrderId":{"location":"uri","locationName":"phoneNumberOrderId"}}},"output":{"type":"structure","members":{"PhoneNumberOrder":{"shape":"S44"}}}},"GetPhoneNumberSettings":{"http":{"method":"GET","requestUri":"/settings/phone-number","responseCode":200},"output":{"type":"structure","members":{"CallingName":{"shape":"S1u"},"CallingNameUpdatedTimestamp":{"shape":"S2a"}}}},"GetProxySession":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","ProxySessionId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ProxySessionId":{"location":"uri","locationName":"proxySessionId"}}},"output":{"type":"structure","members":{"ProxySession":{"shape":"S4m"}}}},"GetRetentionSettings":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/retention-settings"},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"}}},"output":{"type":"structure","members":{"RetentionSettings":{"shape":"S9j"},"InitiateDeletionTimestamp":{"shape":"S2a"}}}},"GetRoom":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/rooms/{roomId}","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"}}},"output":{"type":"structure","members":{"Room":{"shape":"S4t"}}}},"GetSipMediaApplication":{"http":{"method":"GET","requestUri":"/sip-media-applications/{sipMediaApplicationId}","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"}}},"output":{"type":"structure","members":{"SipMediaApplication":{"shape":"S55"}}}},"GetSipMediaApplicationLoggingConfiguration":{"http":{"method":"GET","requestUri":"/sip-media-applications/{sipMediaApplicationId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"}}},"output":{"type":"structure","members":{"SipMediaApplicationLoggingConfiguration":{"shape":"S9s"}}}},"GetSipRule":{"http":{"method":"GET","requestUri":"/sip-rules/{sipRuleId}","responseCode":200},"input":{"type":"structure","required":["SipRuleId"],"members":{"SipRuleId":{"location":"uri","locationName":"sipRuleId"}}},"output":{"type":"structure","members":{"SipRule":{"shape":"S5h"}}}},"GetUser":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/users/{userId}","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"GetUserSettings":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/users/{userId}/settings","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{"UserSettings":{"shape":"S9z"}}}},"GetVoiceConnector":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"VoiceConnector":{"shape":"S5s"}}}},"GetVoiceConnectorEmergencyCallingConfiguration":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/emergency-calling-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"EmergencyCallingConfiguration":{"shape":"Sa5"}}}},"GetVoiceConnectorGroup":{"http":{"method":"GET","requestUri":"/voice-connector-groups/{voiceConnectorGroupId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorGroupId"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"}}},"output":{"type":"structure","members":{"VoiceConnectorGroup":{"shape":"S5z"}}}},"GetVoiceConnectorLoggingConfiguration":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"LoggingConfiguration":{"shape":"Sac"}}}},"GetVoiceConnectorOrigination":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/origination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Origination":{"shape":"Saf"}}}},"GetVoiceConnectorProxy":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Proxy":{"shape":"Sao"}}}},"GetVoiceConnectorStreamingConfiguration":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"StreamingConfiguration":{"shape":"Sat"}}}},"GetVoiceConnectorTermination":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/termination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Termination":{"shape":"Sb0"}}}},"GetVoiceConnectorTerminationHealth":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/termination/health","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"TerminationHealth":{"type":"structure","members":{"Timestamp":{"shape":"S2a"},"Source":{}}}}}},"InviteUsers":{"http":{"requestUri":"/accounts/{accountId}/users?operation=add","responseCode":201},"input":{"type":"structure","required":["AccountId","UserEmailList"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserEmailList":{"type":"list","member":{"shape":"S5j"}},"UserType":{}}},"output":{"type":"structure","members":{"Invites":{"type":"list","member":{"type":"structure","members":{"InviteId":{},"Status":{},"EmailAddress":{"shape":"S5j"},"EmailStatus":{}}}}}}},"ListAccounts":{"http":{"method":"GET","requestUri":"/accounts"},"input":{"type":"structure","members":{"Name":{"location":"querystring","locationName":"name"},"UserEmail":{"shape":"S5j","location":"querystring","locationName":"user-email"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Accounts":{"type":"list","member":{"shape":"S28"}},"NextToken":{}}}},"ListAppInstanceAdmins":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/admins","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstanceArn":{},"AppInstanceAdmins":{"type":"list","member":{"type":"structure","members":{"Admin":{"shape":"S14"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"identity-"}},"ListAppInstanceUsers":{"http":{"method":"GET","requestUri":"/app-instance-users","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"querystring","locationName":"app-instance-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstanceArn":{},"AppInstanceUsers":{"type":"list","member":{"type":"structure","members":{"AppInstanceUserArn":{},"Name":{"shape":"S2n"},"Metadata":{"shape":"S2f"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"identity-"}},"ListAppInstances":{"http":{"method":"GET","requestUri":"/app-instances","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstances":{"type":"list","member":{"type":"structure","members":{"AppInstanceArn":{},"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"identity-"}},"ListAttendeeTags":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags","responseCode":200},"input":{"type":"structure","required":["MeetingId","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S2h"}}}},"ListAttendees":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/attendees","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Attendees":{"shape":"St"},"NextToken":{}}}},"ListBots":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/bots","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"Bots":{"type":"list","member":{"shape":"S2t"}},"NextToken":{}}}},"ListChannelBans":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/bans","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"Sbj"},"ChannelBans":{"type":"list","member":{"type":"structure","members":{"Member":{"shape":"S14"}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelMemberships":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/memberships","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Type":{"location":"querystring","locationName":"type"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"ChannelMemberships":{"type":"list","member":{"type":"structure","members":{"Member":{"shape":"S14"}}}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelMembershipsForAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels?scope=app-instance-user-memberships","responseCode":200},"input":{"type":"structure","members":{"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMemberships":{"type":"list","member":{"shape":"S7g"}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelMessages":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/messages","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"SortOrder":{"location":"querystring","locationName":"sort-order"},"NotBefore":{"location":"querystring","locationName":"not-before","type":"timestamp"},"NotAfter":{"location":"querystring","locationName":"not-after","type":"timestamp"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"Sbj"},"ChannelMessages":{"type":"list","member":{"type":"structure","members":{"MessageId":{},"Content":{"shape":"S8j"},"Metadata":{"shape":"S2f"},"Type":{},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"LastEditedTimestamp":{"type":"timestamp"},"Sender":{"shape":"S14"},"Redacted":{"type":"boolean"}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelModerators":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/moderators","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"Sbj"},"ChannelModerators":{"type":"list","member":{"type":"structure","members":{"Moderator":{"shape":"S14"}}}}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannels":{"http":{"method":"GET","requestUri":"/channels","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"querystring","locationName":"app-instance-arn"},"Privacy":{"location":"querystring","locationName":"privacy"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channels":{"type":"list","member":{"shape":"S7h"}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListChannelsModeratedByAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels?scope=app-instance-user-moderated-channels","responseCode":200},"input":{"type":"structure","members":{"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"Sbj","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channels":{"type":"list","member":{"shape":"S7l"}},"NextToken":{"shape":"Sbj"}}},"endpoint":{"hostPrefix":"messaging-"}},"ListMediaCapturePipelines":{"http":{"method":"GET","requestUri":"/media-capture-pipelines","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"MediaCapturePipelines":{"type":"list","member":{"shape":"S3n"}},"NextToken":{}}}},"ListMeetingTags":{"http":{"method":"GET","requestUri":"/meetings/{meetingId}/tags","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S2h"}}}},"ListMeetings":{"http":{"method":"GET","requestUri":"/meetings","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Meetings":{"type":"list","member":{"shape":"S3u"}},"NextToken":{}}}},"ListPhoneNumberOrders":{"http":{"method":"GET","requestUri":"/phone-number-orders","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"PhoneNumberOrders":{"type":"list","member":{"shape":"S44"}},"NextToken":{}}}},"ListPhoneNumbers":{"http":{"method":"GET","requestUri":"/phone-numbers"},"input":{"type":"structure","members":{"Status":{"location":"querystring","locationName":"status"},"ProductType":{"location":"querystring","locationName":"product-type"},"FilterName":{"location":"querystring","locationName":"filter-name"},"FilterValue":{"location":"querystring","locationName":"filter-value"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"PhoneNumbers":{"type":"list","member":{"shape":"S93"}},"NextToken":{}}}},"ListProxySessions":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Status":{"location":"querystring","locationName":"status"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"ProxySessions":{"type":"list","member":{"shape":"S4m"}},"NextToken":{}}}},"ListRoomMemberships":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"RoomMemberships":{"type":"list","member":{"shape":"S4w"}},"NextToken":{}}}},"ListRooms":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/rooms","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"MemberId":{"location":"querystring","locationName":"member-id"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"Rooms":{"type":"list","member":{"shape":"S4t"}},"NextToken":{}}}},"ListSipMediaApplications":{"http":{"method":"GET","requestUri":"/sip-media-applications","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"SipMediaApplications":{"type":"list","member":{"shape":"S55"}},"NextToken":{}}}},"ListSipRules":{"http":{"method":"GET","requestUri":"/sip-rules","responseCode":200},"input":{"type":"structure","members":{"SipMediaApplicationId":{"location":"querystring","locationName":"sip-media-application"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"SipRules":{"type":"list","member":{"shape":"S5h"}},"NextToken":{}}}},"ListSupportedPhoneNumberCountries":{"http":{"method":"GET","requestUri":"/phone-number-countries","responseCode":200},"input":{"type":"structure","required":["ProductType"],"members":{"ProductType":{"location":"querystring","locationName":"product-type"}}},"output":{"type":"structure","members":{"PhoneNumberCountries":{"type":"list","member":{"type":"structure","members":{"CountryCode":{},"SupportedPhoneNumberTypes":{"type":"list","member":{}}}}}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags"},"input":{"type":"structure","required":["ResourceARN"],"members":{"ResourceARN":{"shape":"S37","location":"querystring","locationName":"arn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"S2h"}}}},"ListUsers":{"http":{"method":"GET","requestUri":"/accounts/{accountId}/users","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserEmail":{"shape":"S5j","location":"querystring","locationName":"user-email"},"UserType":{"location":"querystring","locationName":"user-type"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"Users":{"type":"list","member":{"shape":"S5l"}},"NextToken":{}}}},"ListVoiceConnectorGroups":{"http":{"method":"GET","requestUri":"/voice-connector-groups","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"VoiceConnectorGroups":{"type":"list","member":{"shape":"S5z"}},"NextToken":{}}}},"ListVoiceConnectorTerminationCredentials":{"http":{"method":"GET","requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"}}},"output":{"type":"structure","members":{"Usernames":{"shape":"S6u"}}}},"ListVoiceConnectors":{"http":{"method":"GET","requestUri":"/voice-connectors","responseCode":200},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"VoiceConnectors":{"type":"list","member":{"shape":"S5s"}},"NextToken":{}}}},"LogoutUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=logout","responseCode":204},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{}}},"PutAppInstanceRetentionSettings":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}/retention-settings","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceRetentionSettings"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"AppInstanceRetentionSettings":{"shape":"S84"}}},"output":{"type":"structure","members":{"AppInstanceRetentionSettings":{"shape":"S84"},"InitiateDeletionTimestamp":{"type":"timestamp"}}},"endpoint":{"hostPrefix":"identity-"}},"PutAppInstanceStreamingConfigurations":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}/streaming-configurations","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceStreamingConfigurations"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"AppInstanceStreamingConfigurations":{"shape":"S89"}}},"output":{"type":"structure","members":{"AppInstanceStreamingConfigurations":{"shape":"S89"}}}},"PutEventsConfiguration":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/bots/{botId}/events-configuration","responseCode":201},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"},"OutboundEventsHTTPSEndpoint":{"shape":"S23"},"LambdaFunctionArn":{"shape":"S23"}}},"output":{"type":"structure","members":{"EventsConfiguration":{"shape":"S8p"}}}},"PutRetentionSettings":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/retention-settings","responseCode":204},"input":{"type":"structure","required":["AccountId","RetentionSettings"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RetentionSettings":{"shape":"S9j"}}},"output":{"type":"structure","members":{"RetentionSettings":{"shape":"S9j"},"InitiateDeletionTimestamp":{"shape":"S2a"}}}},"PutSipMediaApplicationLoggingConfiguration":{"http":{"method":"PUT","requestUri":"/sip-media-applications/{sipMediaApplicationId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"SipMediaApplicationLoggingConfiguration":{"shape":"S9s"}}},"output":{"type":"structure","members":{"SipMediaApplicationLoggingConfiguration":{"shape":"S9s"}}}},"PutVoiceConnectorEmergencyCallingConfiguration":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/emergency-calling-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","EmergencyCallingConfiguration"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"EmergencyCallingConfiguration":{"shape":"Sa5"}}},"output":{"type":"structure","members":{"EmergencyCallingConfiguration":{"shape":"Sa5"}}}},"PutVoiceConnectorLoggingConfiguration":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/logging-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","LoggingConfiguration"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"LoggingConfiguration":{"shape":"Sac"}}},"output":{"type":"structure","members":{"LoggingConfiguration":{"shape":"Sac"}}}},"PutVoiceConnectorOrigination":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/origination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","Origination"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Origination":{"shape":"Saf"}}},"output":{"type":"structure","members":{"Origination":{"shape":"Saf"}}}},"PutVoiceConnectorProxy":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/programmable-numbers/proxy"},"input":{"type":"structure","required":["DefaultSessionExpiryMinutes","PhoneNumberPoolCountries","VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"DefaultSessionExpiryMinutes":{"type":"integer"},"PhoneNumberPoolCountries":{"type":"list","member":{}},"FallBackPhoneNumber":{"shape":"S3"},"Disabled":{"type":"boolean"}}},"output":{"type":"structure","members":{"Proxy":{"shape":"Sao"}}}},"PutVoiceConnectorStreamingConfiguration":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/streaming-configuration","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","StreamingConfiguration"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"StreamingConfiguration":{"shape":"Sat"}}},"output":{"type":"structure","members":{"StreamingConfiguration":{"shape":"Sat"}}}},"PutVoiceConnectorTermination":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}/termination","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","Termination"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Termination":{"shape":"Sb0"}}},"output":{"type":"structure","members":{"Termination":{"shape":"Sb0"}}}},"PutVoiceConnectorTerminationCredentials":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/termination/credentials?operation=put","responseCode":204},"input":{"type":"structure","required":["VoiceConnectorId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Credentials":{"type":"list","member":{"type":"structure","members":{"Username":{"shape":"S23"},"Password":{"shape":"S23"}}}}}}},"RedactChannelMessage":{"http":{"requestUri":"/channels/{channelArn}/messages/{messageId}?operation=redact","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{}}},"endpoint":{"hostPrefix":"messaging-"}},"RedactConversationMessage":{"http":{"requestUri":"/accounts/{accountId}/conversations/{conversationId}/messages/{messageId}?operation=redact","responseCode":200},"input":{"type":"structure","required":["AccountId","ConversationId","MessageId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"ConversationId":{"location":"uri","locationName":"conversationId"},"MessageId":{"location":"uri","locationName":"messageId"}}},"output":{"type":"structure","members":{}}},"RedactRoomMessage":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/messages/{messageId}?operation=redact","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId","MessageId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MessageId":{"location":"uri","locationName":"messageId"}}},"output":{"type":"structure","members":{}}},"RegenerateSecurityToken":{"http":{"requestUri":"/accounts/{accountId}/bots/{botId}?operation=regenerate-security-token","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"ResetPersonalPIN":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}?operation=reset-personal-pin","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"RestorePhoneNumber":{"http":{"requestUri":"/phone-numbers/{phoneNumberId}?operation=restore","responseCode":200},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"}}},"output":{"type":"structure","members":{"PhoneNumber":{"shape":"S93"}}}},"SearchAvailablePhoneNumbers":{"http":{"method":"GET","requestUri":"/search?type=phone-numbers"},"input":{"type":"structure","members":{"AreaCode":{"location":"querystring","locationName":"area-code"},"City":{"location":"querystring","locationName":"city"},"Country":{"location":"querystring","locationName":"country"},"State":{"location":"querystring","locationName":"state"},"TollFreePrefix":{"location":"querystring","locationName":"toll-free-prefix"},"PhoneNumberType":{"location":"querystring","locationName":"phone-number-type"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"E164PhoneNumbers":{"shape":"S7"},"NextToken":{}}}},"SendChannelMessage":{"http":{"requestUri":"/channels/{channelArn}/messages","responseCode":201},"input":{"type":"structure","required":["ChannelArn","Content","Type","Persistence","ClientRequestToken"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Content":{"type":"string","sensitive":true},"Type":{},"Persistence":{},"Metadata":{"shape":"S2f"},"ClientRequestToken":{"shape":"S2g","idempotencyToken":true},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{}}},"endpoint":{"hostPrefix":"messaging-"}},"StartMeetingTranscription":{"http":{"requestUri":"/meetings/{meetingId}/transcription?operation=start","responseCode":200},"input":{"type":"structure","required":["MeetingId","TranscriptionConfiguration"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"TranscriptionConfiguration":{"type":"structure","members":{"EngineTranscribeSettings":{"type":"structure","required":["LanguageCode"],"members":{"LanguageCode":{},"VocabularyFilterMethod":{},"VocabularyFilterName":{},"VocabularyName":{},"Region":{}}},"EngineTranscribeMedicalSettings":{"type":"structure","required":["LanguageCode","Specialty","Type"],"members":{"LanguageCode":{},"Specialty":{},"Type":{},"VocabularyName":{},"Region":{}}}}}}},"output":{"type":"structure","members":{}}},"StopMeetingTranscription":{"http":{"requestUri":"/meetings/{meetingId}/transcription?operation=stop","responseCode":200},"input":{"type":"structure","required":["MeetingId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"}}},"output":{"type":"structure","members":{}}},"TagAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=add","responseCode":204},"input":{"type":"structure","required":["MeetingId","AttendeeId","Tags"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"},"Tags":{"shape":"So"}}}},"TagMeeting":{"http":{"requestUri":"/meetings/{meetingId}/tags?operation=add","responseCode":204},"input":{"type":"structure","required":["MeetingId","Tags"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"Tags":{"shape":"S3r"}}}},"TagResource":{"http":{"requestUri":"/tags?operation=tag-resource","responseCode":204},"input":{"type":"structure","required":["ResourceARN","Tags"],"members":{"ResourceARN":{"shape":"S37"},"Tags":{"shape":"S2h"}}}},"UntagAttendee":{"http":{"requestUri":"/meetings/{meetingId}/attendees/{attendeeId}/tags?operation=delete","responseCode":204},"input":{"type":"structure","required":["MeetingId","TagKeys","AttendeeId"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"AttendeeId":{"location":"uri","locationName":"attendeeId"},"TagKeys":{"type":"list","member":{"shape":"Sq"}}}}},"UntagMeeting":{"http":{"requestUri":"/meetings/{meetingId}/tags?operation=delete","responseCode":204},"input":{"type":"structure","required":["MeetingId","TagKeys"],"members":{"MeetingId":{"location":"uri","locationName":"meetingId"},"TagKeys":{"type":"list","member":{"shape":"Sq"}}}}},"UntagResource":{"http":{"requestUri":"/tags?operation=untag-resource","responseCode":204},"input":{"type":"structure","required":["ResourceARN","TagKeys"],"members":{"ResourceARN":{"shape":"S37"},"TagKeys":{"type":"list","member":{"shape":"Sq"}}}}},"UpdateAccount":{"http":{"requestUri":"/accounts/{accountId}","responseCode":200},"input":{"type":"structure","required":["AccountId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"Name":{},"DefaultLicense":{}}},"output":{"type":"structure","members":{"Account":{"shape":"S28"}}}},"UpdateAccountSettings":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/settings","responseCode":204},"input":{"type":"structure","required":["AccountId","AccountSettings"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"AccountSettings":{"shape":"S81"}}},"output":{"type":"structure","members":{}}},"UpdateAppInstance":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","Name"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"Name":{"shape":"S2e"},"Metadata":{"shape":"S2f"}}},"output":{"type":"structure","members":{"AppInstanceArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"UpdateAppInstanceUser":{"http":{"method":"PUT","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceUserArn","Name"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"},"Name":{"shape":"S2n"},"Metadata":{"shape":"S2f"}}},"output":{"type":"structure","members":{"AppInstanceUserArn":{}}},"endpoint":{"hostPrefix":"identity-"}},"UpdateBot":{"http":{"requestUri":"/accounts/{accountId}/bots/{botId}","responseCode":200},"input":{"type":"structure","required":["AccountId","BotId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"BotId":{"location":"uri","locationName":"botId"},"Disabled":{"type":"boolean"}}},"output":{"type":"structure","members":{"Bot":{"shape":"S2t"}}}},"UpdateChannel":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","Name","Mode"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Name":{"shape":"S2e"},"Mode":{},"Metadata":{"shape":"S2f"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}},"endpoint":{"hostPrefix":"messaging-"}},"UpdateChannelMessage":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"Content":{"shape":"S8j"},"Metadata":{"shape":"S2f"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{}}},"endpoint":{"hostPrefix":"messaging-"}},"UpdateChannelReadMarker":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}/readMarker","responseCode":200},"input":{"type":"structure","required":["ChannelArn"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}},"endpoint":{"hostPrefix":"messaging-"}},"UpdateGlobalSettings":{"http":{"method":"PUT","requestUri":"/settings","responseCode":204},"input":{"type":"structure","members":{"BusinessCalling":{"shape":"S8r"},"VoiceConnector":{"shape":"S8s"}}}},"UpdatePhoneNumber":{"http":{"requestUri":"/phone-numbers/{phoneNumberId}","responseCode":200},"input":{"type":"structure","required":["PhoneNumberId"],"members":{"PhoneNumberId":{"location":"uri","locationName":"phoneNumberId"},"ProductType":{},"CallingName":{"shape":"S1u"}}},"output":{"type":"structure","members":{"PhoneNumber":{"shape":"S93"}}}},"UpdatePhoneNumberSettings":{"http":{"method":"PUT","requestUri":"/settings/phone-number","responseCode":204},"input":{"type":"structure","required":["CallingName"],"members":{"CallingName":{"shape":"S1u"}}}},"UpdateProxySession":{"http":{"requestUri":"/voice-connectors/{voiceConnectorId}/proxy-sessions/{proxySessionId}","responseCode":201},"input":{"type":"structure","required":["Capabilities","VoiceConnectorId","ProxySessionId"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"ProxySessionId":{"location":"uri","locationName":"proxySessionId"},"Capabilities":{"shape":"S4e"},"ExpiryMinutes":{"type":"integer"}}},"output":{"type":"structure","members":{"ProxySession":{"shape":"S4m"}}}},"UpdateRoom":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"Name":{"shape":"S23"}}},"output":{"type":"structure","members":{"Room":{"shape":"S4t"}}}},"UpdateRoomMembership":{"http":{"requestUri":"/accounts/{accountId}/rooms/{roomId}/memberships/{memberId}","responseCode":200},"input":{"type":"structure","required":["AccountId","RoomId","MemberId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"RoomId":{"location":"uri","locationName":"roomId"},"MemberId":{"location":"uri","locationName":"memberId"},"Role":{}}},"output":{"type":"structure","members":{"RoomMembership":{"shape":"S4w"}}}},"UpdateSipMediaApplication":{"http":{"method":"PUT","requestUri":"/sip-media-applications/{sipMediaApplicationId}","responseCode":200},"input":{"type":"structure","required":["SipMediaApplicationId"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"Name":{},"Endpoints":{"shape":"S51"}}},"output":{"type":"structure","members":{"SipMediaApplication":{"shape":"S55"}}}},"UpdateSipMediaApplicationCall":{"http":{"requestUri":"/sip-media-applications/{sipMediaApplicationId}/calls/{transactionId}","responseCode":202},"input":{"type":"structure","required":["SipMediaApplicationId","TransactionId","Arguments"],"members":{"SipMediaApplicationId":{"location":"uri","locationName":"sipMediaApplicationId"},"TransactionId":{"location":"uri","locationName":"transactionId"},"Arguments":{"type":"map","key":{"shape":"S23"},"value":{"shape":"S23"}}}},"output":{"type":"structure","members":{"SipMediaApplicationCall":{"shape":"S59"}}}},"UpdateSipRule":{"http":{"method":"PUT","requestUri":"/sip-rules/{sipRuleId}","responseCode":202},"input":{"type":"structure","required":["SipRuleId","Name"],"members":{"SipRuleId":{"location":"uri","locationName":"sipRuleId"},"Name":{},"Disabled":{"type":"boolean"},"TargetApplications":{"shape":"S5d"}}},"output":{"type":"structure","members":{"SipRule":{"shape":"S5h"}}}},"UpdateUser":{"http":{"requestUri":"/accounts/{accountId}/users/{userId}","responseCode":200},"input":{"type":"structure","required":["AccountId","UserId"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"},"LicenseType":{},"UserType":{},"AlexaForBusinessMetadata":{"shape":"S21"}}},"output":{"type":"structure","members":{"User":{"shape":"S5l"}}}},"UpdateUserSettings":{"http":{"method":"PUT","requestUri":"/accounts/{accountId}/users/{userId}/settings","responseCode":204},"input":{"type":"structure","required":["AccountId","UserId","UserSettings"],"members":{"AccountId":{"location":"uri","locationName":"accountId"},"UserId":{"location":"uri","locationName":"userId"},"UserSettings":{"shape":"S9z"}}}},"UpdateVoiceConnector":{"http":{"method":"PUT","requestUri":"/voice-connectors/{voiceConnectorId}","responseCode":200},"input":{"type":"structure","required":["VoiceConnectorId","Name","RequireEncryption"],"members":{"VoiceConnectorId":{"location":"uri","locationName":"voiceConnectorId"},"Name":{},"RequireEncryption":{"type":"boolean"}}},"output":{"type":"structure","members":{"VoiceConnector":{"shape":"S5s"}}}},"UpdateVoiceConnectorGroup":{"http":{"method":"PUT","requestUri":"/voice-connector-groups/{voiceConnectorGroupId}","responseCode":202},"input":{"type":"structure","required":["VoiceConnectorGroupId","Name","VoiceConnectorItems"],"members":{"VoiceConnectorGroupId":{"location":"uri","locationName":"voiceConnectorGroupId"},"Name":{},"VoiceConnectorItems":{"shape":"S5v"}}},"output":{"type":"structure","members":{"VoiceConnectorGroup":{"shape":"S5z"}}}}},"shapes":{"S3":{"type":"string","sensitive":true},"S7":{"type":"list","member":{"shape":"S3"}},"Sa":{"type":"list","member":{"type":"structure","members":{"PhoneNumberId":{},"ErrorCode":{},"ErrorMessage":{}}}},"Sg":{"type":"list","member":{"type":"structure","members":{"GroupName":{}}}},"Sm":{"type":"structure","required":["ExternalUserId"],"members":{"ExternalUserId":{"shape":"Sn"},"Tags":{"shape":"So"}}},"Sn":{"type":"string","sensitive":true},"So":{"type":"list","member":{"shape":"Sp"}},"Sp":{"type":"structure","required":["Key","Value"],"members":{"Key":{"shape":"Sq"},"Value":{"type":"string","sensitive":true}}},"Sq":{"type":"string","sensitive":true},"St":{"type":"list","member":{"shape":"Su"}},"Su":{"type":"structure","members":{"ExternalUserId":{"shape":"Sn"},"AttendeeId":{},"JoinToken":{"shape":"Sv"}}},"Sv":{"type":"string","sensitive":true},"Sw":{"type":"list","member":{"type":"structure","members":{"ExternalUserId":{"shape":"Sn"},"ErrorCode":{},"ErrorMessage":{}}}},"S14":{"type":"structure","members":{"Arn":{},"Name":{"type":"string","sensitive":true}}},"S1h":{"type":"list","member":{}},"S1k":{"type":"list","member":{}},"S1m":{"type":"list","member":{"type":"structure","members":{"UserId":{},"ErrorCode":{},"ErrorMessage":{}}}},"S1u":{"type":"string","sensitive":true},"S21":{"type":"structure","members":{"IsAlexaForBusinessEnabled":{"type":"boolean"},"AlexaForBusinessRoomArn":{"shape":"S23"}}},"S23":{"type":"string","sensitive":true},"S28":{"type":"structure","required":["AwsAccountId","AccountId","Name"],"members":{"AwsAccountId":{},"AccountId":{},"Name":{},"AccountType":{},"CreatedTimestamp":{"shape":"S2a"},"DefaultLicense":{},"SupportedLicenses":{"type":"list","member":{}},"AccountStatus":{},"SigninDelegateGroups":{"shape":"Sg"}}},"S2a":{"type":"timestamp","timestampFormat":"iso8601"},"S2e":{"type":"string","sensitive":true},"S2f":{"type":"string","sensitive":true},"S2g":{"type":"string","sensitive":true},"S2h":{"type":"list","member":{"shape":"Sp"}},"S2n":{"type":"string","sensitive":true},"S2t":{"type":"structure","members":{"BotId":{},"UserId":{},"DisplayName":{"shape":"S23"},"BotType":{},"Disabled":{"type":"boolean"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"BotEmail":{"shape":"S23"},"SecurityToken":{"shape":"S23"}}},"S37":{"type":"string","sensitive":true},"S39":{"type":"structure","members":{"SourceConfiguration":{"type":"structure","members":{"SelectedVideoStreams":{"type":"structure","members":{"AttendeeIds":{"type":"list","member":{}},"ExternalUserIds":{"type":"list","member":{"shape":"Sn"}}}}}},"ArtifactsConfiguration":{"type":"structure","required":["Audio","Video","Content"],"members":{"Audio":{"type":"structure","required":["MuxType"],"members":{"MuxType":{}}},"Video":{"type":"structure","required":["State"],"members":{"State":{},"MuxType":{}}},"Content":{"type":"structure","required":["State"],"members":{"State":{},"MuxType":{}}}}}}},"S3n":{"type":"structure","members":{"MediaPipelineId":{},"SourceType":{},"SourceArn":{"shape":"S37"},"Status":{},"SinkType":{},"SinkArn":{"shape":"S37"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"ChimeSdkMeetingConfiguration":{"shape":"S39"}}},"S3q":{"type":"string","sensitive":true},"S3r":{"type":"list","member":{"shape":"Sp"}},"S3s":{"type":"structure","members":{"SnsTopicArn":{"shape":"S37"},"SqsQueueArn":{"shape":"S37"}}},"S3u":{"type":"structure","members":{"MeetingId":{},"ExternalMeetingId":{"shape":"S3q"},"MediaPlacement":{"type":"structure","members":{"AudioHostUrl":{},"AudioFallbackUrl":{},"ScreenDataUrl":{},"ScreenSharingUrl":{},"ScreenViewingUrl":{},"SignalingUrl":{},"TurnControlUrl":{},"EventIngestionUrl":{}}},"MediaRegion":{}}},"S44":{"type":"structure","members":{"PhoneNumberOrderId":{},"ProductType":{},"Status":{},"OrderedPhoneNumbers":{"type":"list","member":{"type":"structure","members":{"E164PhoneNumber":{"shape":"S3"},"Status":{}}}},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S4e":{"type":"list","member":{}},"S4i":{"type":"structure","required":["Country","AreaCode"],"members":{"Country":{},"AreaCode":{}}},"S4m":{"type":"structure","members":{"VoiceConnectorId":{},"ProxySessionId":{},"Name":{},"Status":{},"ExpiryMinutes":{"type":"integer"},"Capabilities":{"shape":"S4e"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"EndedTimestamp":{"shape":"S2a"},"Participants":{"type":"list","member":{"type":"structure","members":{"PhoneNumber":{"shape":"S3"},"ProxyPhoneNumber":{"shape":"S3"}}}},"NumberSelectionBehavior":{},"GeoMatchLevel":{},"GeoMatchParams":{"shape":"S4i"}}},"S4t":{"type":"structure","members":{"RoomId":{},"Name":{"shape":"S23"},"AccountId":{},"CreatedBy":{},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S4w":{"type":"structure","members":{"RoomId":{},"Member":{"type":"structure","members":{"MemberId":{},"MemberType":{},"Email":{"shape":"S23"},"FullName":{"shape":"S23"},"AccountId":{}}},"Role":{},"InvitedBy":{},"UpdatedTimestamp":{"shape":"S2a"}}},"S51":{"type":"list","member":{"type":"structure","members":{"LambdaArn":{"type":"string","sensitive":true}}}},"S55":{"type":"structure","members":{"SipMediaApplicationId":{},"AwsRegion":{},"Name":{},"Endpoints":{"shape":"S51"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S59":{"type":"structure","members":{"TransactionId":{}}},"S5d":{"type":"list","member":{"type":"structure","members":{"SipMediaApplicationId":{},"Priority":{"type":"integer"},"AwsRegion":{}}}},"S5h":{"type":"structure","members":{"SipRuleId":{},"Name":{},"Disabled":{"type":"boolean"},"TriggerType":{},"TriggerValue":{},"TargetApplications":{"shape":"S5d"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"}}},"S5j":{"type":"string","sensitive":true},"S5l":{"type":"structure","required":["UserId"],"members":{"UserId":{},"AccountId":{},"PrimaryEmail":{"shape":"S5j"},"PrimaryProvisionedNumber":{"shape":"S23"},"DisplayName":{"shape":"S23"},"LicenseType":{},"UserType":{},"UserRegistrationStatus":{},"UserInvitationStatus":{},"RegisteredOn":{"shape":"S2a"},"InvitedOn":{"shape":"S2a"},"AlexaForBusinessMetadata":{"shape":"S21"},"PersonalPIN":{}}},"S5s":{"type":"structure","members":{"VoiceConnectorId":{},"AwsRegion":{},"Name":{},"OutboundHostName":{},"RequireEncryption":{"type":"boolean"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"VoiceConnectorArn":{}}},"S5v":{"type":"list","member":{"type":"structure","required":["VoiceConnectorId","Priority"],"members":{"VoiceConnectorId":{},"Priority":{"type":"integer"}}}},"S5z":{"type":"structure","members":{"VoiceConnectorGroupId":{},"Name":{},"VoiceConnectorItems":{"shape":"S5v"},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"VoiceConnectorGroupArn":{}}},"S6u":{"type":"list","member":{"shape":"S23"}},"S7g":{"type":"structure","members":{"ChannelSummary":{"shape":"S7h"},"AppInstanceUserMembershipSummary":{"type":"structure","members":{"Type":{},"ReadMarkerTimestamp":{"type":"timestamp"}}}}},"S7h":{"type":"structure","members":{"Name":{"shape":"S2e"},"ChannelArn":{},"Mode":{},"Privacy":{},"Metadata":{"shape":"S2f"},"LastMessageTimestamp":{"type":"timestamp"}}},"S7l":{"type":"structure","members":{"ChannelSummary":{"shape":"S7h"}}},"S81":{"type":"structure","members":{"DisableRemoteControl":{"type":"boolean"},"EnableDialOut":{"type":"boolean"}}},"S84":{"type":"structure","members":{"ChannelRetentionSettings":{"type":"structure","members":{"RetentionDays":{"type":"integer"}}}}},"S89":{"type":"list","member":{"type":"structure","required":["AppInstanceDataType","ResourceArn"],"members":{"AppInstanceDataType":{},"ResourceArn":{"shape":"S37"}}}},"S8j":{"type":"string","sensitive":true},"S8p":{"type":"structure","members":{"BotId":{},"OutboundEventsHTTPSEndpoint":{"shape":"S23"},"LambdaFunctionArn":{"shape":"S23"}}},"S8r":{"type":"structure","members":{"CdrBucket":{}}},"S8s":{"type":"structure","members":{"CdrBucket":{}}},"S93":{"type":"structure","members":{"PhoneNumberId":{},"E164PhoneNumber":{"shape":"S3"},"Country":{},"Type":{},"ProductType":{},"Status":{},"Capabilities":{"type":"structure","members":{"InboundCall":{"type":"boolean"},"OutboundCall":{"type":"boolean"},"InboundSMS":{"type":"boolean"},"OutboundSMS":{"type":"boolean"},"InboundMMS":{"type":"boolean"},"OutboundMMS":{"type":"boolean"}}},"Associations":{"type":"list","member":{"type":"structure","members":{"Value":{},"Name":{},"AssociatedTimestamp":{"shape":"S2a"}}}},"CallingName":{"shape":"S1u"},"CallingNameStatus":{},"CreatedTimestamp":{"shape":"S2a"},"UpdatedTimestamp":{"shape":"S2a"},"DeletionTimestamp":{"shape":"S2a"}}},"S9j":{"type":"structure","members":{"RoomRetentionSettings":{"type":"structure","members":{"RetentionDays":{"type":"integer"}}},"ConversationRetentionSettings":{"type":"structure","members":{"RetentionDays":{"type":"integer"}}}}},"S9s":{"type":"structure","members":{"EnableSipMediaApplicationMessageLogs":{"type":"boolean"}}},"S9z":{"type":"structure","required":["Telephony"],"members":{"Telephony":{"type":"structure","required":["InboundCalling","OutboundCalling","SMS"],"members":{"InboundCalling":{"type":"boolean"},"OutboundCalling":{"type":"boolean"},"SMS":{"type":"boolean"}}}}},"Sa5":{"type":"structure","members":{"DNIS":{"type":"list","member":{"type":"structure","required":["EmergencyPhoneNumber","CallingCountry"],"members":{"EmergencyPhoneNumber":{"shape":"S3"},"TestPhoneNumber":{"shape":"S3"},"CallingCountry":{}}}}}},"Sac":{"type":"structure","members":{"EnableSIPLogs":{"type":"boolean"}}},"Saf":{"type":"structure","members":{"Routes":{"type":"list","member":{"type":"structure","members":{"Host":{},"Port":{"type":"integer"},"Protocol":{},"Priority":{"type":"integer"},"Weight":{"type":"integer"}}}},"Disabled":{"type":"boolean"}}},"Sao":{"type":"structure","members":{"DefaultSessionExpiryMinutes":{"type":"integer"},"Disabled":{"type":"boolean"},"FallBackPhoneNumber":{"shape":"S3"},"PhoneNumberCountries":{"shape":"Saq"}}},"Saq":{"type":"list","member":{}},"Sat":{"type":"structure","required":["DataRetentionInHours"],"members":{"DataRetentionInHours":{"type":"integer"},"Disabled":{"type":"boolean"},"StreamingNotificationTargets":{"type":"list","member":{"type":"structure","required":["NotificationTarget"],"members":{"NotificationTarget":{}}}}}},"Sb0":{"type":"structure","members":{"CpsLimit":{"type":"integer"},"DefaultPhoneNumber":{"shape":"S3"},"CallingRegions":{"type":"list","member":{}},"CidrAllowedList":{"shape":"Saq"},"Disabled":{"type":"boolean"}}},"Sbj":{"type":"string","sensitive":true}}}
49935
49993
 
49936
49994
  /***/ }),
49937
49995
  /* 648 */
@@ -50104,7 +50162,7 @@ return /******/ (function(modules) { // webpackBootstrap
50104
50162
  /* 661 */
50105
50163
  /***/ (function(module, exports) {
50106
50164
 
50107
- module.exports = {"version":"2.0","metadata":{"apiVersion":"2018-04-01","endpointPrefix":"quicksight","jsonVersion":"1.0","protocol":"rest-json","serviceFullName":"Amazon QuickSight","serviceId":"QuickSight","signatureVersion":"v4","uid":"quicksight-2018-04-01"},"operations":{"CancelIngestion":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","IngestionId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"IngestionId":{"location":"uri","locationName":"IngestionId"}}},"output":{"type":"structure","members":{"Arn":{},"IngestionId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateAccountCustomization":{"http":{"requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId","AccountCustomization"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"},"AccountCustomization":{"shape":"Sa"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"AwsAccountId":{},"Namespace":{},"AccountCustomization":{"shape":"Sa"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateAnalysis":{"http":{"requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"Name":{},"Parameters":{"shape":"Sj"},"Permissions":{"shape":"S10"},"SourceEntity":{"shape":"S14"},"ThemeArn":{},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"AnalysisId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateDashboard":{"http":{"requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"Name":{},"Parameters":{"shape":"Sj"},"Permissions":{"shape":"S10"},"SourceEntity":{"shape":"S1c"},"Tags":{"shape":"Sb"},"VersionDescription":{},"DashboardPublishOptions":{"shape":"S1f"},"ThemeArn":{}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"DashboardId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateDataSet":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sets"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","Name","PhysicalTableMap","ImportMode"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{},"Name":{},"PhysicalTableMap":{"shape":"S1p"},"LogicalTableMap":{"shape":"S2a"},"ImportMode":{},"ColumnGroups":{"shape":"S37"},"FieldFolders":{"shape":"S3d"},"Permissions":{"shape":"S10"},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfiguration":{"shape":"S3m"},"ColumnLevelPermissionRules":{"shape":"S3s"},"Tags":{"shape":"Sb"},"DataSetUsageConfiguration":{"shape":"S3w"}}},"output":{"type":"structure","members":{"Arn":{},"DataSetId":{},"IngestionArn":{},"IngestionId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateDataSource":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sources"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId","Name","Type"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{},"Name":{},"Type":{},"DataSourceParameters":{"shape":"S40"},"Credentials":{"shape":"S52"},"Permissions":{"shape":"S10"},"VpcConnectionProperties":{"shape":"S58"},"SslProperties":{"shape":"S59"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"CreationStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateFolder":{"http":{"requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"Name":{},"FolderType":{},"ParentFolderArn":{},"Permissions":{"shape":"S10"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"FolderId":{},"RequestId":{}}}},"CreateFolderMembership":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/members/{MemberType}/{MemberId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId","MemberId","MemberType"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"MemberId":{"location":"uri","locationName":"MemberId"},"MemberType":{"location":"uri","locationName":"MemberType"}}},"output":{"type":"structure","members":{"Status":{"type":"integer"},"FolderMember":{"type":"structure","members":{"MemberId":{},"MemberType":{}}},"RequestId":{}}}},"CreateGroup":{"http":{"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{},"Description":{},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Group":{"shape":"S5n"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateGroupMembership":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}"},"input":{"type":"structure","required":["MemberName","GroupName","AwsAccountId","Namespace"],"members":{"MemberName":{"location":"uri","locationName":"MemberName"},"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"GroupMember":{"shape":"S5r"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateIAMPolicyAssignment":{"http":{"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments/"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","AssignmentStatus","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{},"AssignmentStatus":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"AssignmentName":{},"AssignmentId":{},"AssignmentStatus":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateIngestion":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}"},"input":{"type":"structure","required":["DataSetId","IngestionId","AwsAccountId"],"members":{"DataSetId":{"location":"uri","locationName":"DataSetId"},"IngestionId":{"location":"uri","locationName":"IngestionId"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"IngestionType":{}}},"output":{"type":"structure","members":{"Arn":{},"IngestionId":{},"IngestionStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateNamespace":{"http":{"requestUri":"/accounts/{AwsAccountId}"},"input":{"type":"structure","required":["AwsAccountId","Namespace","IdentityStore"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{},"IdentityStore":{},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"Name":{},"CapacityRegion":{},"CreationStatus":{},"IdentityStore":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateTemplate":{"http":{"requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"Name":{},"Permissions":{"shape":"S10"},"SourceEntity":{"shape":"S69"},"Tags":{"shape":"Sb"},"VersionDescription":{}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"TemplateId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateTemplateAlias":{"http":{"requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName","TemplateVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"},"TemplateVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"TemplateAlias":{"shape":"S6h"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateTheme":{"http":{"requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","Name","BaseThemeId","Configuration"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"Name":{},"BaseThemeId":{},"VersionDescription":{},"Configuration":{"shape":"S6k"},"Permissions":{"shape":"S10"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"ThemeId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateThemeAlias":{"http":{"requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName","ThemeVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"},"ThemeVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"ThemeAlias":{"shape":"S6z"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DeleteAccountCustomization":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteAnalysis":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"RecoveryWindowInDays":{"location":"querystring","locationName":"recovery-window-in-days","type":"long"},"ForceDeleteWithoutRecovery":{"location":"querystring","locationName":"force-delete-without-recovery","type":"boolean"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"AnalysisId":{},"DeletionTime":{"type":"timestamp"},"RequestId":{}}}},"DeleteDashboard":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"DashboardId":{},"RequestId":{}}}},"DeleteDataSet":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"}}},"output":{"type":"structure","members":{"Arn":{},"DataSetId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteDataSource":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"}}},"output":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteFolder":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"FolderId":{},"RequestId":{}}}},"DeleteFolderMembership":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/members/{MemberType}/{MemberId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId","MemberId","MemberType"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"MemberId":{"location":"uri","locationName":"MemberId"},"MemberType":{"location":"uri","locationName":"MemberType"}}},"output":{"type":"structure","members":{"Status":{"type":"integer"},"RequestId":{}}}},"DeleteGroup":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteGroupMembership":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}"},"input":{"type":"structure","required":["MemberName","GroupName","AwsAccountId","Namespace"],"members":{"MemberName":{"location":"uri","locationName":"MemberName"},"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteIAMPolicyAssignment":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespace/{Namespace}/iam-policy-assignments/{AssignmentName}"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{"location":"uri","locationName":"AssignmentName"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"AssignmentName":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteNamespace":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteTemplate":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"}}},"output":{"type":"structure","members":{"RequestId":{},"Arn":{},"TemplateId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteTemplateAlias":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"TemplateId":{},"AliasName":{},"Arn":{},"RequestId":{}}}},"DeleteTheme":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"}}},"output":{"type":"structure","members":{"Arn":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"},"ThemeId":{}}}},"DeleteThemeAlias":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"AliasName":{},"Arn":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"},"ThemeId":{}}}},"DeleteUser":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteUserByPrincipalId":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/user-principals/{PrincipalId}"},"input":{"type":"structure","required":["PrincipalId","AwsAccountId","Namespace"],"members":{"PrincipalId":{"location":"uri","locationName":"PrincipalId"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeAccountCustomization":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"},"Resolved":{"location":"querystring","locationName":"resolved","type":"boolean"}}},"output":{"type":"structure","members":{"Arn":{},"AwsAccountId":{},"Namespace":{},"AccountCustomization":{"shape":"Sa"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeAccountSettings":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/settings"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"}}},"output":{"type":"structure","members":{"AccountSettings":{"type":"structure","members":{"AccountName":{},"Edition":{},"DefaultNamespace":{},"NotificationEmail":{}}},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeAnalysis":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"}}},"output":{"type":"structure","members":{"Analysis":{"type":"structure","members":{"AnalysisId":{},"Arn":{},"Name":{},"Status":{},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"DataSetArns":{"shape":"S8c"},"ThemeArn":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"Sheets":{"shape":"S8d"}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeAnalysisPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"}}},"output":{"type":"structure","members":{"AnalysisId":{},"AnalysisArn":{},"Permissions":{"shape":"S10"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeDashboard":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"},"AliasName":{"location":"querystring","locationName":"alias-name"}}},"output":{"type":"structure","members":{"Dashboard":{"type":"structure","members":{"DashboardId":{},"Arn":{},"Name":{},"Version":{"type":"structure","members":{"CreatedTime":{"type":"timestamp"},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"VersionNumber":{"type":"long"},"Status":{},"Arn":{},"SourceEntityArn":{},"DataSetArns":{"shape":"S8c"},"Description":{},"ThemeArn":{},"Sheets":{"shape":"S8d"}}},"CreatedTime":{"type":"timestamp"},"LastPublishedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeDashboardPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"}}},"output":{"type":"structure","members":{"DashboardId":{},"DashboardArn":{},"Permissions":{"shape":"S10"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeDataSet":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"}}},"output":{"type":"structure","members":{"DataSet":{"type":"structure","members":{"Arn":{},"DataSetId":{},"Name":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"PhysicalTableMap":{"shape":"S1p"},"LogicalTableMap":{"shape":"S2a"},"OutputColumns":{"type":"list","member":{"type":"structure","members":{"Name":{},"Description":{},"Type":{}}}},"ImportMode":{},"ConsumedSpiceCapacityInBytes":{"type":"long"},"ColumnGroups":{"shape":"S37"},"FieldFolders":{"shape":"S3d"},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfiguration":{"shape":"S3m"},"ColumnLevelPermissionRules":{"shape":"S3s"},"DataSetUsageConfiguration":{"shape":"S3w"}}},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeDataSetPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"}}},"output":{"type":"structure","members":{"DataSetArn":{},"DataSetId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeDataSource":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"}}},"output":{"type":"structure","members":{"DataSource":{"shape":"S8z"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeDataSourcePermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"}}},"output":{"type":"structure","members":{"DataSourceArn":{},"DataSourceId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeFolder":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Folder":{"type":"structure","members":{"FolderId":{},"Arn":{},"Name":{},"FolderType":{},"FolderPath":{"type":"list","member":{}},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}},"RequestId":{}}}},"DescribeFolderPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderId":{},"Arn":{},"Permissions":{"shape":"S10"},"RequestId":{}}}},"DescribeFolderResolvedPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/resolved-permissions"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderId":{},"Arn":{},"Permissions":{"shape":"S10"},"RequestId":{}}}},"DescribeGroup":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Group":{"shape":"S5n"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeIAMPolicyAssignment":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments/{AssignmentName}"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{"location":"uri","locationName":"AssignmentName"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"IAMPolicyAssignment":{"type":"structure","members":{"AwsAccountId":{},"AssignmentId":{},"AssignmentName":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"AssignmentStatus":{}}},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeIngestion":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","IngestionId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"IngestionId":{"location":"uri","locationName":"IngestionId"}}},"output":{"type":"structure","members":{"Ingestion":{"shape":"S9j"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeIpRestriction":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/ip-restriction"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"}}},"output":{"type":"structure","members":{"AwsAccountId":{},"IpRestrictionRuleMap":{"shape":"S9s"},"Enabled":{"type":"boolean"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeNamespace":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Namespace":{"shape":"S9y"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeTemplate":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"},"AliasName":{"location":"querystring","locationName":"alias-name"}}},"output":{"type":"structure","members":{"Template":{"type":"structure","members":{"Arn":{},"Name":{},"Version":{"type":"structure","members":{"CreatedTime":{"type":"timestamp"},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"VersionNumber":{"type":"long"},"Status":{},"DataSetConfigurations":{"type":"list","member":{"type":"structure","members":{"Placeholder":{},"DataSetSchema":{"type":"structure","members":{"ColumnSchemaList":{"type":"list","member":{"type":"structure","members":{"Name":{},"DataType":{},"GeographicRole":{}}}}}},"ColumnGroupSchemaList":{"type":"list","member":{"type":"structure","members":{"Name":{},"ColumnGroupColumnSchemaList":{"type":"list","member":{"type":"structure","members":{"Name":{}}}}}}}}}},"Description":{},"SourceEntityArn":{},"ThemeArn":{},"Sheets":{"shape":"S8d"}}},"TemplateId":{},"LastUpdatedTime":{"type":"timestamp"},"CreatedTime":{"type":"timestamp"}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeTemplateAlias":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"TemplateAlias":{"shape":"S6h"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeTemplatePermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"}}},"output":{"type":"structure","members":{"TemplateId":{},"TemplateArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeTheme":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"},"AliasName":{"location":"querystring","locationName":"alias-name"}}},"output":{"type":"structure","members":{"Theme":{"type":"structure","members":{"Arn":{},"Name":{},"ThemeId":{},"Version":{"type":"structure","members":{"VersionNumber":{"type":"long"},"Arn":{},"Description":{},"BaseThemeId":{},"CreatedTime":{"type":"timestamp"},"Configuration":{"shape":"S6k"},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"Status":{}}},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"Type":{}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeThemeAlias":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"ThemeAlias":{"shape":"S6z"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeThemePermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"}}},"output":{"type":"structure","members":{"ThemeId":{},"ThemeArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeUser":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"User":{"shape":"Sb0"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"GenerateEmbedUrlForAnonymousUser":{"http":{"requestUri":"/accounts/{AwsAccountId}/embed-url/anonymous-user"},"input":{"type":"structure","required":["AwsAccountId","Namespace","AuthorizedResourceArns","ExperienceConfiguration"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"SessionLifetimeInMinutes":{"type":"long"},"Namespace":{},"SessionTags":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{"shape":"S3r"}}}},"AuthorizedResourceArns":{"type":"list","member":{}},"ExperienceConfiguration":{"type":"structure","members":{"Dashboard":{"type":"structure","required":["InitialDashboardId"],"members":{"InitialDashboardId":{}}}}}}},"output":{"type":"structure","required":["EmbedUrl","Status","RequestId"],"members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"GenerateEmbedUrlForRegisteredUser":{"http":{"requestUri":"/accounts/{AwsAccountId}/embed-url/registered-user"},"input":{"type":"structure","required":["AwsAccountId","UserArn","ExperienceConfiguration"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"SessionLifetimeInMinutes":{"type":"long"},"UserArn":{},"ExperienceConfiguration":{"type":"structure","members":{"Dashboard":{"type":"structure","required":["InitialDashboardId"],"members":{"InitialDashboardId":{}}},"QuickSightConsole":{"type":"structure","members":{"InitialPath":{}}}}}}},"output":{"type":"structure","required":["EmbedUrl","Status","RequestId"],"members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"GetDashboardEmbedUrl":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/embed-url"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","IdentityType"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"IdentityType":{"location":"querystring","locationName":"creds-type"},"SessionLifetimeInMinutes":{"location":"querystring","locationName":"session-lifetime","type":"long"},"UndoRedoDisabled":{"location":"querystring","locationName":"undo-redo-disabled","type":"boolean"},"ResetDisabled":{"location":"querystring","locationName":"reset-disabled","type":"boolean"},"StatePersistenceEnabled":{"location":"querystring","locationName":"state-persistence-enabled","type":"boolean"},"UserArn":{"location":"querystring","locationName":"user-arn"},"Namespace":{"location":"querystring","locationName":"namespace"},"AdditionalDashboardIds":{"location":"querystring","locationName":"additional-dashboard-ids","type":"list","member":{}}}},"output":{"type":"structure","members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"GetSessionEmbedUrl":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/session-embed-url"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"EntryPoint":{"location":"querystring","locationName":"entry-point"},"SessionLifetimeInMinutes":{"location":"querystring","locationName":"session-lifetime","type":"long"},"UserArn":{"location":"querystring","locationName":"user-arn"}}},"output":{"type":"structure","members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListAnalyses":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/analyses"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"AnalysisSummaryList":{"shape":"Sbt"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListDashboardVersions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/versions"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DashboardVersionSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"CreatedTime":{"type":"timestamp"},"VersionNumber":{"type":"long"},"Status":{},"SourceEntityArn":{},"Description":{}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListDashboards":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DashboardSummaryList":{"shape":"Sc1"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListDataSets":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DataSetSummaries":{"type":"list","member":{"type":"structure","members":{"Arn":{},"DataSetId":{},"Name":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"ImportMode":{},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfigurationApplied":{"type":"boolean"},"ColumnLevelPermissionRulesApplied":{"type":"boolean"}}}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListDataSources":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sources"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DataSources":{"type":"list","member":{"shape":"S8z"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListFolderMembers":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/members"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderMemberList":{"type":"list","member":{"type":"structure","members":{"MemberId":{},"MemberArn":{}}}},"NextToken":{},"RequestId":{}}}},"ListFolders":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderSummaryList":{"shape":"Scg"},"NextToken":{},"RequestId":{}}}},"ListGroupMemberships":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"GroupMemberList":{"type":"list","member":{"shape":"S5r"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListGroups":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"GroupList":{"shape":"Scn"},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListIAMPolicyAssignments":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentStatus":{},"Namespace":{"location":"uri","locationName":"Namespace"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"IAMPolicyAssignments":{"type":"list","member":{"type":"structure","members":{"AssignmentName":{},"AssignmentStatus":{}}}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListIAMPolicyAssignmentsForUser":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}/iam-policy-assignments"},"input":{"type":"structure","required":["AwsAccountId","UserName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"UserName":{"location":"uri","locationName":"UserName"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"ActiveAssignments":{"type":"list","member":{"type":"structure","members":{"AssignmentName":{},"PolicyArn":{}}}},"RequestId":{},"NextToken":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListIngestions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions"},"input":{"type":"structure","required":["DataSetId","AwsAccountId"],"members":{"DataSetId":{"location":"uri","locationName":"DataSetId"},"NextToken":{"location":"querystring","locationName":"next-token"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Ingestions":{"type":"list","member":{"shape":"S9j"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListNamespaces":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Namespaces":{"type":"list","member":{"shape":"S9y"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/resources/{ResourceArn}/tags"},"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"Sb"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListTemplateAliases":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-result","type":"integer"}}},"output":{"type":"structure","members":{"TemplateAliasList":{"type":"list","member":{"shape":"S6h"}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{},"NextToken":{}}}},"ListTemplateVersions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/versions"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"TemplateVersionSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"VersionNumber":{"type":"long"},"CreatedTime":{"type":"timestamp"},"Status":{},"Description":{}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListTemplates":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-result","type":"integer"}}},"output":{"type":"structure","members":{"TemplateSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"TemplateId":{},"Name":{},"LatestVersionNumber":{"type":"long"},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListThemeAliases":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-result","type":"integer"}}},"output":{"type":"structure","members":{"ThemeAliasList":{"type":"list","member":{"shape":"S6z"}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{},"NextToken":{}}}},"ListThemeVersions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/versions"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"ThemeVersionSummaryList":{"type":"list","member":{"type":"structure","members":{"VersionNumber":{"type":"long"},"Arn":{},"Description":{},"CreatedTime":{"type":"timestamp"},"Status":{}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListThemes":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Type":{"location":"querystring","locationName":"type"}}},"output":{"type":"structure","members":{"ThemeSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"Name":{},"ThemeId":{},"LatestVersionNumber":{"type":"long"},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListUserGroups":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}/groups"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"GroupList":{"shape":"Scn"},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListUsers":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"UserList":{"type":"list","member":{"shape":"Sb0"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"RegisterUser":{"http":{"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users"},"input":{"type":"structure","required":["IdentityType","Email","UserRole","AwsAccountId","Namespace"],"members":{"IdentityType":{},"Email":{},"UserRole":{},"IamArn":{},"SessionName":{},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"},"UserName":{},"CustomPermissionsName":{},"ExternalLoginFederationProviderType":{},"CustomFederationProviderUrl":{},"ExternalLoginId":{}}},"output":{"type":"structure","members":{"User":{"shape":"Sb0"},"UserInvitationUrl":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"RestoreAnalysis":{"http":{"requestUri":"/accounts/{AwsAccountId}/restore/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"AnalysisId":{},"RequestId":{}}}},"SearchAnalyses":{"http":{"requestUri":"/accounts/{AwsAccountId}/search/analyses"},"input":{"type":"structure","required":["AwsAccountId","Filters"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Filters":{"type":"list","member":{"type":"structure","members":{"Operator":{},"Name":{},"Value":{}}}},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"AnalysisSummaryList":{"shape":"Sbt"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"SearchDashboards":{"http":{"requestUri":"/accounts/{AwsAccountId}/search/dashboards"},"input":{"type":"structure","required":["AwsAccountId","Filters"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Filters":{"type":"list","member":{"type":"structure","required":["Operator"],"members":{"Operator":{},"Name":{},"Value":{}}}},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"DashboardSummaryList":{"shape":"Sc1"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"SearchFolders":{"http":{"requestUri":"/accounts/{AwsAccountId}/search/folders"},"input":{"type":"structure","required":["AwsAccountId","Filters"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Filters":{"type":"list","member":{"type":"structure","members":{"Operator":{},"Name":{},"Value":{}}}},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderSummaryList":{"shape":"Scg"},"NextToken":{},"RequestId":{}}}},"TagResource":{"http":{"requestUri":"/resources/{ResourceArn}/tags"},"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/resources/{ResourceArn}/tags"},"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"TagKeys":{"location":"querystring","locationName":"keys","type":"list","member":{}}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateAccountCustomization":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId","AccountCustomization"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"},"AccountCustomization":{"shape":"Sa"}}},"output":{"type":"structure","members":{"Arn":{},"AwsAccountId":{},"Namespace":{},"AccountCustomization":{"shape":"Sa"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateAccountSettings":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/settings"},"input":{"type":"structure","required":["AwsAccountId","DefaultNamespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DefaultNamespace":{},"NotificationEmail":{}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateAnalysis":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"Name":{},"Parameters":{"shape":"Sj"},"SourceEntity":{"shape":"S14"},"ThemeArn":{}}},"output":{"type":"structure","members":{"Arn":{},"AnalysisId":{},"UpdateStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateAnalysisPermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"GrantPermissions":{"shape":"Set"},"RevokePermissions":{"shape":"Set"}}},"output":{"type":"structure","members":{"AnalysisArn":{},"AnalysisId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDashboard":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"Name":{},"SourceEntity":{"shape":"S1c"},"Parameters":{"shape":"Sj"},"VersionDescription":{},"DashboardPublishOptions":{"shape":"S1f"},"ThemeArn":{}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"DashboardId":{},"CreationStatus":{},"Status":{"type":"integer"},"RequestId":{}}}},"UpdateDashboardPermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"GrantPermissions":{"shape":"Set"},"RevokePermissions":{"shape":"Set"}}},"output":{"type":"structure","members":{"DashboardArn":{},"DashboardId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDashboardPublishedVersion":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/versions/{VersionNumber}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","VersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"VersionNumber":{"location":"uri","locationName":"VersionNumber","type":"long"}}},"output":{"type":"structure","members":{"DashboardId":{},"DashboardArn":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateDataSet":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","Name","PhysicalTableMap","ImportMode"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"Name":{},"PhysicalTableMap":{"shape":"S1p"},"LogicalTableMap":{"shape":"S2a"},"ImportMode":{},"ColumnGroups":{"shape":"S37"},"FieldFolders":{"shape":"S3d"},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfiguration":{"shape":"S3m"},"ColumnLevelPermissionRules":{"shape":"S3s"},"DataSetUsageConfiguration":{"shape":"S3w"}}},"output":{"type":"structure","members":{"Arn":{},"DataSetId":{},"IngestionArn":{},"IngestionId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDataSetPermissions":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"GrantPermissions":{"shape":"S10"},"RevokePermissions":{"shape":"S10"}}},"output":{"type":"structure","members":{"DataSetArn":{},"DataSetId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDataSource":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId","Name"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"},"Name":{},"DataSourceParameters":{"shape":"S40"},"Credentials":{"shape":"S52"},"VpcConnectionProperties":{"shape":"S58"},"SslProperties":{"shape":"S59"}}},"output":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"UpdateStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDataSourcePermissions":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"},"GrantPermissions":{"shape":"S10"},"RevokePermissions":{"shape":"S10"}}},"output":{"type":"structure","members":{"DataSourceArn":{},"DataSourceId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateFolder":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId","Name"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"Name":{}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"FolderId":{},"RequestId":{}}}},"UpdateFolderPermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"GrantPermissions":{"shape":"S10"},"RevokePermissions":{"shape":"S10"}}},"output":{"type":"structure","members":{"Status":{"type":"integer"},"Arn":{},"FolderId":{},"Permissions":{"shape":"S10"},"RequestId":{}}}},"UpdateGroup":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"Description":{},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Group":{"shape":"S5n"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateIAMPolicyAssignment":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments/{AssignmentName}"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{"location":"uri","locationName":"AssignmentName"},"Namespace":{"location":"uri","locationName":"Namespace"},"AssignmentStatus":{},"PolicyArn":{},"Identities":{"shape":"S5v"}}},"output":{"type":"structure","members":{"AssignmentName":{},"AssignmentId":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"AssignmentStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateIpRestriction":{"http":{"requestUri":"/accounts/{AwsAccountId}/ip-restriction"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"IpRestrictionRuleMap":{"shape":"S9s"},"Enabled":{"type":"boolean"}}},"output":{"type":"structure","members":{"AwsAccountId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateTemplate":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"SourceEntity":{"shape":"S69"},"VersionDescription":{},"Name":{}}},"output":{"type":"structure","members":{"TemplateId":{},"Arn":{},"VersionArn":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateTemplateAlias":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName","TemplateVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"},"TemplateVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"TemplateAlias":{"shape":"S6h"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateTemplatePermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"GrantPermissions":{"shape":"Set"},"RevokePermissions":{"shape":"Set"}}},"output":{"type":"structure","members":{"TemplateId":{},"TemplateArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateTheme":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","BaseThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"Name":{},"BaseThemeId":{},"VersionDescription":{},"Configuration":{"shape":"S6k"}}},"output":{"type":"structure","members":{"ThemeId":{},"Arn":{},"VersionArn":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateThemeAlias":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName","ThemeVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"},"ThemeVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"ThemeAlias":{"shape":"S6z"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateThemePermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"GrantPermissions":{"shape":"Set"},"RevokePermissions":{"shape":"Set"}}},"output":{"type":"structure","members":{"ThemeId":{},"ThemeArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateUser":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace","Email","Role"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"},"Email":{},"Role":{},"CustomPermissionsName":{},"UnapplyCustomPermissions":{"type":"boolean"},"ExternalLoginFederationProviderType":{},"CustomFederationProviderUrl":{},"ExternalLoginId":{}}},"output":{"type":"structure","members":{"User":{"shape":"Sb0"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}}},"shapes":{"Sa":{"type":"structure","members":{"DefaultTheme":{}}},"Sb":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}}},"Sj":{"type":"structure","members":{"StringParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{}}}}},"IntegerParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{"type":"long"}}}}},"DecimalParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{"type":"double"}}}}},"DateTimeParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{"type":"timestamp"}}}}}}},"S10":{"type":"list","member":{"shape":"S11"}},"S11":{"type":"structure","required":["Principal","Actions"],"members":{"Principal":{},"Actions":{"type":"list","member":{}}}},"S14":{"type":"structure","members":{"SourceTemplate":{"type":"structure","required":["DataSetReferences","Arn"],"members":{"DataSetReferences":{"shape":"S16"},"Arn":{}}}}},"S16":{"type":"list","member":{"type":"structure","required":["DataSetPlaceholder","DataSetArn"],"members":{"DataSetPlaceholder":{},"DataSetArn":{}}}},"S1c":{"type":"structure","members":{"SourceTemplate":{"type":"structure","required":["DataSetReferences","Arn"],"members":{"DataSetReferences":{"shape":"S16"},"Arn":{}}}}},"S1f":{"type":"structure","members":{"AdHocFilteringOption":{"type":"structure","members":{"AvailabilityStatus":{}}},"ExportToCSVOption":{"type":"structure","members":{"AvailabilityStatus":{}}},"SheetControlsOption":{"type":"structure","members":{"VisibilityState":{}}}}},"S1p":{"type":"map","key":{},"value":{"type":"structure","members":{"RelationalTable":{"type":"structure","required":["DataSourceArn","Name","InputColumns"],"members":{"DataSourceArn":{},"Catalog":{},"Schema":{},"Name":{},"InputColumns":{"shape":"S1w"}}},"CustomSql":{"type":"structure","required":["DataSourceArn","Name","SqlQuery"],"members":{"DataSourceArn":{},"Name":{},"SqlQuery":{},"Columns":{"shape":"S1w"}}},"S3Source":{"type":"structure","required":["DataSourceArn","InputColumns"],"members":{"DataSourceArn":{},"UploadSettings":{"type":"structure","members":{"Format":{},"StartFromRow":{"type":"integer"},"ContainsHeader":{"type":"boolean"},"TextQualifier":{},"Delimiter":{}}},"InputColumns":{"shape":"S1w"}}}}}},"S1w":{"type":"list","member":{"type":"structure","required":["Name","Type"],"members":{"Name":{},"Type":{}}}},"S2a":{"type":"map","key":{},"value":{"type":"structure","required":["Alias","Source"],"members":{"Alias":{},"DataTransforms":{"type":"list","member":{"type":"structure","members":{"ProjectOperation":{"type":"structure","required":["ProjectedColumns"],"members":{"ProjectedColumns":{"type":"list","member":{}}}},"FilterOperation":{"type":"structure","required":["ConditionExpression"],"members":{"ConditionExpression":{}}},"CreateColumnsOperation":{"type":"structure","required":["Columns"],"members":{"Columns":{"type":"list","member":{"type":"structure","required":["ColumnName","ColumnId","Expression"],"members":{"ColumnName":{},"ColumnId":{},"Expression":{}}}}}},"RenameColumnOperation":{"type":"structure","required":["ColumnName","NewColumnName"],"members":{"ColumnName":{},"NewColumnName":{}}},"CastColumnTypeOperation":{"type":"structure","required":["ColumnName","NewColumnType"],"members":{"ColumnName":{},"NewColumnType":{},"Format":{}}},"TagColumnOperation":{"type":"structure","required":["ColumnName","Tags"],"members":{"ColumnName":{},"Tags":{"type":"list","member":{"type":"structure","members":{"ColumnGeographicRole":{},"ColumnDescription":{"type":"structure","members":{"Text":{}}}}}}}},"UntagColumnOperation":{"type":"structure","required":["ColumnName","TagNames"],"members":{"ColumnName":{},"TagNames":{"type":"list","member":{}}}}}}},"Source":{"type":"structure","members":{"JoinInstruction":{"type":"structure","required":["LeftOperand","RightOperand","Type","OnClause"],"members":{"LeftOperand":{},"RightOperand":{},"LeftJoinKeyProperties":{"shape":"S33"},"RightJoinKeyProperties":{"shape":"S33"},"Type":{},"OnClause":{}}},"PhysicalTableId":{},"DataSetArn":{}}}}}},"S33":{"type":"structure","members":{"UniqueKey":{"type":"boolean"}}},"S37":{"type":"list","member":{"type":"structure","members":{"GeoSpatialColumnGroup":{"type":"structure","required":["Name","CountryCode","Columns"],"members":{"Name":{},"CountryCode":{},"Columns":{"type":"list","member":{}}}}}}},"S3d":{"type":"map","key":{},"value":{"type":"structure","members":{"description":{},"columns":{"type":"list","member":{}}}}},"S3i":{"type":"structure","required":["Arn","PermissionPolicy"],"members":{"Namespace":{},"Arn":{},"PermissionPolicy":{},"FormatVersion":{},"Status":{}}},"S3m":{"type":"structure","required":["TagRules"],"members":{"Status":{},"TagRules":{"type":"list","member":{"type":"structure","required":["TagKey","ColumnName"],"members":{"TagKey":{},"ColumnName":{},"TagMultiValueDelimiter":{},"MatchAllValue":{"shape":"S3r"}}}}}},"S3r":{"type":"string","sensitive":true},"S3s":{"type":"list","member":{"type":"structure","members":{"Principals":{"type":"list","member":{}},"ColumnNames":{"type":"list","member":{}}}}},"S3w":{"type":"structure","members":{"DisableUseAsDirectQuerySource":{"type":"boolean"},"DisableUseAsImportedSource":{"type":"boolean"}}},"S40":{"type":"structure","members":{"AmazonElasticsearchParameters":{"type":"structure","required":["Domain"],"members":{"Domain":{}}},"AthenaParameters":{"type":"structure","members":{"WorkGroup":{}}},"AuroraParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"AuroraPostgreSqlParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"AwsIotAnalyticsParameters":{"type":"structure","required":["DataSetName"],"members":{"DataSetName":{}}},"JiraParameters":{"type":"structure","required":["SiteBaseUrl"],"members":{"SiteBaseUrl":{}}},"MariaDbParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"MySqlParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"OracleParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"PostgreSqlParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"PrestoParameters":{"type":"structure","required":["Host","Port","Catalog"],"members":{"Host":{},"Port":{"type":"integer"},"Catalog":{}}},"RdsParameters":{"type":"structure","required":["InstanceId","Database"],"members":{"InstanceId":{},"Database":{}}},"RedshiftParameters":{"type":"structure","required":["Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{},"ClusterId":{}}},"S3Parameters":{"type":"structure","required":["ManifestFileLocation"],"members":{"ManifestFileLocation":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{},"Key":{}}}}},"ServiceNowParameters":{"type":"structure","required":["SiteBaseUrl"],"members":{"SiteBaseUrl":{}}},"SnowflakeParameters":{"type":"structure","required":["Host","Database","Warehouse"],"members":{"Host":{},"Database":{},"Warehouse":{}}},"SparkParameters":{"type":"structure","required":["Host","Port"],"members":{"Host":{},"Port":{"type":"integer"}}},"SqlServerParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"TeradataParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"TwitterParameters":{"type":"structure","required":["Query","MaxRows"],"members":{"Query":{},"MaxRows":{"type":"integer"}}},"AmazonOpenSearchParameters":{"type":"structure","required":["Domain"],"members":{"Domain":{}}}}},"S52":{"type":"structure","members":{"CredentialPair":{"type":"structure","required":["Username","Password"],"members":{"Username":{},"Password":{},"AlternateDataSourceParameters":{"shape":"S56"}}},"CopySourceArn":{}},"sensitive":true},"S56":{"type":"list","member":{"shape":"S40"}},"S58":{"type":"structure","required":["VpcConnectionArn"],"members":{"VpcConnectionArn":{}}},"S59":{"type":"structure","members":{"DisableSsl":{"type":"boolean"}}},"S5n":{"type":"structure","members":{"Arn":{},"GroupName":{},"Description":{},"PrincipalId":{}}},"S5r":{"type":"structure","members":{"Arn":{},"MemberName":{}}},"S5v":{"type":"map","key":{},"value":{"type":"list","member":{}}},"S69":{"type":"structure","members":{"SourceAnalysis":{"type":"structure","required":["Arn","DataSetReferences"],"members":{"Arn":{},"DataSetReferences":{"shape":"S16"}}},"SourceTemplate":{"type":"structure","required":["Arn"],"members":{"Arn":{}}}}},"S6h":{"type":"structure","members":{"AliasName":{},"Arn":{},"TemplateVersionNumber":{"type":"long"}}},"S6k":{"type":"structure","members":{"DataColorPalette":{"type":"structure","members":{"Colors":{"shape":"S6m"},"MinMaxGradient":{"shape":"S6m"},"EmptyFillColor":{}}},"UIColorPalette":{"type":"structure","members":{"PrimaryForeground":{},"PrimaryBackground":{},"SecondaryForeground":{},"SecondaryBackground":{},"Accent":{},"AccentForeground":{},"Danger":{},"DangerForeground":{},"Warning":{},"WarningForeground":{},"Success":{},"SuccessForeground":{},"Dimension":{},"DimensionForeground":{},"Measure":{},"MeasureForeground":{}}},"Sheet":{"type":"structure","members":{"Tile":{"type":"structure","members":{"Border":{"type":"structure","members":{"Show":{"type":"boolean"}}}}},"TileLayout":{"type":"structure","members":{"Gutter":{"type":"structure","members":{"Show":{"type":"boolean"}}},"Margin":{"type":"structure","members":{"Show":{"type":"boolean"}}}}}}}}},"S6m":{"type":"list","member":{}},"S6z":{"type":"structure","members":{"Arn":{},"AliasName":{},"ThemeVersionNumber":{"type":"long"}}},"S8c":{"type":"list","member":{}},"S8d":{"type":"list","member":{"type":"structure","members":{"SheetId":{},"Name":{}}}},"S8z":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"Name":{},"Type":{},"Status":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"DataSourceParameters":{"shape":"S40"},"AlternateDataSourceParameters":{"shape":"S56"},"VpcConnectionProperties":{"shape":"S58"},"SslProperties":{"shape":"S59"},"ErrorInfo":{"type":"structure","members":{"Type":{},"Message":{}}}}},"S9j":{"type":"structure","required":["Arn","IngestionStatus","CreatedTime"],"members":{"Arn":{},"IngestionId":{},"IngestionStatus":{},"ErrorInfo":{"type":"structure","members":{"Type":{},"Message":{}}},"RowInfo":{"type":"structure","members":{"RowsIngested":{"type":"long"},"RowsDropped":{"type":"long"},"TotalRowsInDataset":{"type":"long"}}},"QueueInfo":{"type":"structure","required":["WaitingOnIngestion","QueuedIngestion"],"members":{"WaitingOnIngestion":{},"QueuedIngestion":{}}},"CreatedTime":{"type":"timestamp"},"IngestionTimeInSeconds":{"type":"long"},"IngestionSizeInBytes":{"type":"long"},"RequestSource":{},"RequestType":{}}},"S9s":{"type":"map","key":{},"value":{}},"S9y":{"type":"structure","members":{"Name":{},"Arn":{},"CapacityRegion":{},"CreationStatus":{},"IdentityStore":{},"NamespaceError":{"type":"structure","members":{"Type":{},"Message":{}}}}},"Sb0":{"type":"structure","members":{"Arn":{},"UserName":{},"Email":{},"Role":{},"IdentityType":{},"Active":{"type":"boolean"},"PrincipalId":{},"CustomPermissionsName":{},"ExternalLoginFederationProviderType":{},"ExternalLoginFederationProviderUrl":{},"ExternalLoginId":{}}},"Sbc":{"type":"string","sensitive":true},"Sbt":{"type":"list","member":{"type":"structure","members":{"Arn":{},"AnalysisId":{},"Name":{},"Status":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"Sc1":{"type":"list","member":{"type":"structure","members":{"Arn":{},"DashboardId":{},"Name":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"PublishedVersionNumber":{"type":"long"},"LastPublishedTime":{"type":"timestamp"}}}},"Scg":{"type":"list","member":{"type":"structure","members":{"Arn":{},"FolderId":{},"Name":{},"FolderType":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"Scn":{"type":"list","member":{"shape":"S5n"}},"Set":{"type":"list","member":{"shape":"S11"}}}}
50165
+ module.exports = {"version":"2.0","metadata":{"apiVersion":"2018-04-01","endpointPrefix":"quicksight","jsonVersion":"1.0","protocol":"rest-json","serviceFullName":"Amazon QuickSight","serviceId":"QuickSight","signatureVersion":"v4","uid":"quicksight-2018-04-01"},"operations":{"CancelIngestion":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","IngestionId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"IngestionId":{"location":"uri","locationName":"IngestionId"}}},"output":{"type":"structure","members":{"Arn":{},"IngestionId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateAccountCustomization":{"http":{"requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId","AccountCustomization"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"},"AccountCustomization":{"shape":"Sa"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"AwsAccountId":{},"Namespace":{},"AccountCustomization":{"shape":"Sa"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateAnalysis":{"http":{"requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"Name":{},"Parameters":{"shape":"Sj"},"Permissions":{"shape":"S10"},"SourceEntity":{"shape":"S14"},"ThemeArn":{},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"AnalysisId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateDashboard":{"http":{"requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"Name":{},"Parameters":{"shape":"Sj"},"Permissions":{"shape":"S10"},"SourceEntity":{"shape":"S1c"},"Tags":{"shape":"Sb"},"VersionDescription":{},"DashboardPublishOptions":{"shape":"S1f"},"ThemeArn":{}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"DashboardId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateDataSet":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sets"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","Name","PhysicalTableMap","ImportMode"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{},"Name":{},"PhysicalTableMap":{"shape":"S1p"},"LogicalTableMap":{"shape":"S2a"},"ImportMode":{},"ColumnGroups":{"shape":"S37"},"FieldFolders":{"shape":"S3d"},"Permissions":{"shape":"S10"},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfiguration":{"shape":"S3m"},"ColumnLevelPermissionRules":{"shape":"S3s"},"Tags":{"shape":"Sb"},"DataSetUsageConfiguration":{"shape":"S3w"}}},"output":{"type":"structure","members":{"Arn":{},"DataSetId":{},"IngestionArn":{},"IngestionId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateDataSource":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sources"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId","Name","Type"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{},"Name":{},"Type":{},"DataSourceParameters":{"shape":"S40"},"Credentials":{"shape":"S52"},"Permissions":{"shape":"S10"},"VpcConnectionProperties":{"shape":"S58"},"SslProperties":{"shape":"S59"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"CreationStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateFolder":{"http":{"requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"Name":{},"FolderType":{},"ParentFolderArn":{},"Permissions":{"shape":"S10"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"FolderId":{},"RequestId":{}}}},"CreateFolderMembership":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/members/{MemberType}/{MemberId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId","MemberId","MemberType"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"MemberId":{"location":"uri","locationName":"MemberId"},"MemberType":{"location":"uri","locationName":"MemberType"}}},"output":{"type":"structure","members":{"Status":{"type":"integer"},"FolderMember":{"type":"structure","members":{"MemberId":{},"MemberType":{}}},"RequestId":{}}}},"CreateGroup":{"http":{"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{},"Description":{},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Group":{"shape":"S5n"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateGroupMembership":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}"},"input":{"type":"structure","required":["MemberName","GroupName","AwsAccountId","Namespace"],"members":{"MemberName":{"location":"uri","locationName":"MemberName"},"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"GroupMember":{"shape":"S5r"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateIAMPolicyAssignment":{"http":{"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments/"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","AssignmentStatus","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{},"AssignmentStatus":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"AssignmentName":{},"AssignmentId":{},"AssignmentStatus":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateIngestion":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}"},"input":{"type":"structure","required":["DataSetId","IngestionId","AwsAccountId"],"members":{"DataSetId":{"location":"uri","locationName":"DataSetId"},"IngestionId":{"location":"uri","locationName":"IngestionId"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"IngestionType":{}}},"output":{"type":"structure","members":{"Arn":{},"IngestionId":{},"IngestionStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateNamespace":{"http":{"requestUri":"/accounts/{AwsAccountId}"},"input":{"type":"structure","required":["AwsAccountId","Namespace","IdentityStore"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{},"IdentityStore":{},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"Name":{},"CapacityRegion":{},"CreationStatus":{},"IdentityStore":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"CreateTemplate":{"http":{"requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"Name":{},"Permissions":{"shape":"S10"},"SourceEntity":{"shape":"S69"},"Tags":{"shape":"Sb"},"VersionDescription":{}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"TemplateId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateTemplateAlias":{"http":{"requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName","TemplateVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"},"TemplateVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"TemplateAlias":{"shape":"S6h"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateTheme":{"http":{"requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","Name","BaseThemeId","Configuration"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"Name":{},"BaseThemeId":{},"VersionDescription":{},"Configuration":{"shape":"S6k"},"Permissions":{"shape":"S10"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"ThemeId":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"CreateThemeAlias":{"http":{"requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName","ThemeVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"},"ThemeVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"ThemeAlias":{"shape":"S6z"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DeleteAccountCustomization":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteAnalysis":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"RecoveryWindowInDays":{"location":"querystring","locationName":"recovery-window-in-days","type":"long"},"ForceDeleteWithoutRecovery":{"location":"querystring","locationName":"force-delete-without-recovery","type":"boolean"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"AnalysisId":{},"DeletionTime":{"type":"timestamp"},"RequestId":{}}}},"DeleteDashboard":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"DashboardId":{},"RequestId":{}}}},"DeleteDataSet":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"}}},"output":{"type":"structure","members":{"Arn":{},"DataSetId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteDataSource":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"}}},"output":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteFolder":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"FolderId":{},"RequestId":{}}}},"DeleteFolderMembership":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/members/{MemberType}/{MemberId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId","MemberId","MemberType"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"MemberId":{"location":"uri","locationName":"MemberId"},"MemberType":{"location":"uri","locationName":"MemberType"}}},"output":{"type":"structure","members":{"Status":{"type":"integer"},"RequestId":{}}}},"DeleteGroup":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteGroupMembership":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members/{MemberName}"},"input":{"type":"structure","required":["MemberName","GroupName","AwsAccountId","Namespace"],"members":{"MemberName":{"location":"uri","locationName":"MemberName"},"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteIAMPolicyAssignment":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespace/{Namespace}/iam-policy-assignments/{AssignmentName}"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{"location":"uri","locationName":"AssignmentName"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"AssignmentName":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteNamespace":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteTemplate":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"}}},"output":{"type":"structure","members":{"RequestId":{},"Arn":{},"TemplateId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteTemplateAlias":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"TemplateId":{},"AliasName":{},"Arn":{},"RequestId":{}}}},"DeleteTheme":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"}}},"output":{"type":"structure","members":{"Arn":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"},"ThemeId":{}}}},"DeleteThemeAlias":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"AliasName":{},"Arn":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"},"ThemeId":{}}}},"DeleteUser":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DeleteUserByPrincipalId":{"http":{"method":"DELETE","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/user-principals/{PrincipalId}"},"input":{"type":"structure","required":["PrincipalId","AwsAccountId","Namespace"],"members":{"PrincipalId":{"location":"uri","locationName":"PrincipalId"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeAccountCustomization":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"},"Resolved":{"location":"querystring","locationName":"resolved","type":"boolean"}}},"output":{"type":"structure","members":{"Arn":{},"AwsAccountId":{},"Namespace":{},"AccountCustomization":{"shape":"Sa"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeAccountSettings":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/settings"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"}}},"output":{"type":"structure","members":{"AccountSettings":{"type":"structure","members":{"AccountName":{},"Edition":{},"DefaultNamespace":{},"NotificationEmail":{}}},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeAnalysis":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"}}},"output":{"type":"structure","members":{"Analysis":{"type":"structure","members":{"AnalysisId":{},"Arn":{},"Name":{},"Status":{},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"DataSetArns":{"shape":"S8c"},"ThemeArn":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"Sheets":{"shape":"S8d"}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeAnalysisPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"}}},"output":{"type":"structure","members":{"AnalysisId":{},"AnalysisArn":{},"Permissions":{"shape":"S10"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeDashboard":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"},"AliasName":{"location":"querystring","locationName":"alias-name"}}},"output":{"type":"structure","members":{"Dashboard":{"type":"structure","members":{"DashboardId":{},"Arn":{},"Name":{},"Version":{"type":"structure","members":{"CreatedTime":{"type":"timestamp"},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"VersionNumber":{"type":"long"},"Status":{},"Arn":{},"SourceEntityArn":{},"DataSetArns":{"shape":"S8c"},"Description":{},"ThemeArn":{},"Sheets":{"shape":"S8d"}}},"CreatedTime":{"type":"timestamp"},"LastPublishedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeDashboardPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"}}},"output":{"type":"structure","members":{"DashboardId":{},"DashboardArn":{},"Permissions":{"shape":"S10"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeDataSet":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"}}},"output":{"type":"structure","members":{"DataSet":{"type":"structure","members":{"Arn":{},"DataSetId":{},"Name":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"PhysicalTableMap":{"shape":"S1p"},"LogicalTableMap":{"shape":"S2a"},"OutputColumns":{"type":"list","member":{"type":"structure","members":{"Name":{},"Description":{},"Type":{}}}},"ImportMode":{},"ConsumedSpiceCapacityInBytes":{"type":"long"},"ColumnGroups":{"shape":"S37"},"FieldFolders":{"shape":"S3d"},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfiguration":{"shape":"S3m"},"ColumnLevelPermissionRules":{"shape":"S3s"},"DataSetUsageConfiguration":{"shape":"S3w"}}},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeDataSetPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"}}},"output":{"type":"structure","members":{"DataSetArn":{},"DataSetId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeDataSource":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"}}},"output":{"type":"structure","members":{"DataSource":{"shape":"S8z"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeDataSourcePermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"}}},"output":{"type":"structure","members":{"DataSourceArn":{},"DataSourceId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeFolder":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Folder":{"type":"structure","members":{"FolderId":{},"Arn":{},"Name":{},"FolderType":{},"FolderPath":{"type":"list","member":{}},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}},"RequestId":{}}}},"DescribeFolderPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderId":{},"Arn":{},"Permissions":{"shape":"S10"},"RequestId":{}}}},"DescribeFolderResolvedPermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/resolved-permissions"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderId":{},"Arn":{},"Permissions":{"shape":"S10"},"RequestId":{}}}},"DescribeGroup":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Group":{"shape":"S5n"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeIAMPolicyAssignment":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments/{AssignmentName}"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{"location":"uri","locationName":"AssignmentName"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"IAMPolicyAssignment":{"type":"structure","members":{"AwsAccountId":{},"AssignmentId":{},"AssignmentName":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"AssignmentStatus":{}}},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeIngestion":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions/{IngestionId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","IngestionId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"IngestionId":{"location":"uri","locationName":"IngestionId"}}},"output":{"type":"structure","members":{"Ingestion":{"shape":"S9j"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeIpRestriction":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/ip-restriction"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"}}},"output":{"type":"structure","members":{"AwsAccountId":{},"IpRestrictionRuleMap":{"shape":"S9s"},"Enabled":{"type":"boolean"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeNamespace":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Namespace":{"shape":"S9y"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeTemplate":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"},"AliasName":{"location":"querystring","locationName":"alias-name"}}},"output":{"type":"structure","members":{"Template":{"type":"structure","members":{"Arn":{},"Name":{},"Version":{"type":"structure","members":{"CreatedTime":{"type":"timestamp"},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"VersionNumber":{"type":"long"},"Status":{},"DataSetConfigurations":{"type":"list","member":{"type":"structure","members":{"Placeholder":{},"DataSetSchema":{"type":"structure","members":{"ColumnSchemaList":{"type":"list","member":{"type":"structure","members":{"Name":{},"DataType":{},"GeographicRole":{}}}}}},"ColumnGroupSchemaList":{"type":"list","member":{"type":"structure","members":{"Name":{},"ColumnGroupColumnSchemaList":{"type":"list","member":{"type":"structure","members":{"Name":{}}}}}}}}}},"Description":{},"SourceEntityArn":{},"ThemeArn":{},"Sheets":{"shape":"S8d"}}},"TemplateId":{},"LastUpdatedTime":{"type":"timestamp"},"CreatedTime":{"type":"timestamp"}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeTemplateAlias":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"TemplateAlias":{"shape":"S6h"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeTemplatePermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"}}},"output":{"type":"structure","members":{"TemplateId":{},"TemplateArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeTheme":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"VersionNumber":{"location":"querystring","locationName":"version-number","type":"long"},"AliasName":{"location":"querystring","locationName":"alias-name"}}},"output":{"type":"structure","members":{"Theme":{"type":"structure","members":{"Arn":{},"Name":{},"ThemeId":{},"Version":{"type":"structure","members":{"VersionNumber":{"type":"long"},"Arn":{},"Description":{},"BaseThemeId":{},"CreatedTime":{"type":"timestamp"},"Configuration":{"shape":"S6k"},"Errors":{"type":"list","member":{"type":"structure","members":{"Type":{},"Message":{}}}},"Status":{}}},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"Type":{}}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeThemeAlias":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"}}},"output":{"type":"structure","members":{"ThemeAlias":{"shape":"S6z"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"DescribeThemePermissions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"}}},"output":{"type":"structure","members":{"ThemeId":{},"ThemeArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"DescribeUser":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"User":{"shape":"Sb0"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"GenerateEmbedUrlForAnonymousUser":{"http":{"requestUri":"/accounts/{AwsAccountId}/embed-url/anonymous-user"},"input":{"type":"structure","required":["AwsAccountId","Namespace","AuthorizedResourceArns","ExperienceConfiguration"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"SessionLifetimeInMinutes":{"type":"long"},"Namespace":{},"SessionTags":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{"shape":"S3r"}}}},"AuthorizedResourceArns":{"type":"list","member":{}},"ExperienceConfiguration":{"type":"structure","members":{"Dashboard":{"type":"structure","required":["InitialDashboardId"],"members":{"InitialDashboardId":{}}}}}}},"output":{"type":"structure","required":["EmbedUrl","Status","RequestId"],"members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"GenerateEmbedUrlForRegisteredUser":{"http":{"requestUri":"/accounts/{AwsAccountId}/embed-url/registered-user"},"input":{"type":"structure","required":["AwsAccountId","UserArn","ExperienceConfiguration"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"SessionLifetimeInMinutes":{"type":"long"},"UserArn":{},"ExperienceConfiguration":{"type":"structure","members":{"Dashboard":{"type":"structure","required":["InitialDashboardId"],"members":{"InitialDashboardId":{}}},"QuickSightConsole":{"type":"structure","members":{"InitialPath":{}}},"QSearchBar":{"type":"structure","members":{"InitialTopicId":{}}}}}}},"output":{"type":"structure","required":["EmbedUrl","Status","RequestId"],"members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"GetDashboardEmbedUrl":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/embed-url"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","IdentityType"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"IdentityType":{"location":"querystring","locationName":"creds-type"},"SessionLifetimeInMinutes":{"location":"querystring","locationName":"session-lifetime","type":"long"},"UndoRedoDisabled":{"location":"querystring","locationName":"undo-redo-disabled","type":"boolean"},"ResetDisabled":{"location":"querystring","locationName":"reset-disabled","type":"boolean"},"StatePersistenceEnabled":{"location":"querystring","locationName":"state-persistence-enabled","type":"boolean"},"UserArn":{"location":"querystring","locationName":"user-arn"},"Namespace":{"location":"querystring","locationName":"namespace"},"AdditionalDashboardIds":{"location":"querystring","locationName":"additional-dashboard-ids","type":"list","member":{}}}},"output":{"type":"structure","members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"GetSessionEmbedUrl":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/session-embed-url"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"EntryPoint":{"location":"querystring","locationName":"entry-point"},"SessionLifetimeInMinutes":{"location":"querystring","locationName":"session-lifetime","type":"long"},"UserArn":{"location":"querystring","locationName":"user-arn"}}},"output":{"type":"structure","members":{"EmbedUrl":{"shape":"Sbc"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListAnalyses":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/analyses"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"AnalysisSummaryList":{"shape":"Sbu"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListDashboardVersions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/versions"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DashboardVersionSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"CreatedTime":{"type":"timestamp"},"VersionNumber":{"type":"long"},"Status":{},"SourceEntityArn":{},"Description":{}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListDashboards":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/dashboards"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DashboardSummaryList":{"shape":"Sc2"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListDataSets":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DataSetSummaries":{"type":"list","member":{"type":"structure","members":{"Arn":{},"DataSetId":{},"Name":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"ImportMode":{},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfigurationApplied":{"type":"boolean"},"ColumnLevelPermissionRulesApplied":{"type":"boolean"}}}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListDataSources":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sources"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"DataSources":{"type":"list","member":{"shape":"S8z"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListFolderMembers":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/members"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderMemberList":{"type":"list","member":{"type":"structure","members":{"MemberId":{},"MemberArn":{}}}},"NextToken":{},"RequestId":{}}}},"ListFolders":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/folders"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderSummaryList":{"shape":"Sch"},"NextToken":{},"RequestId":{}}}},"ListGroupMemberships":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}/members"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"GroupMemberList":{"type":"list","member":{"shape":"S5r"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListGroups":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"GroupList":{"shape":"Sco"},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListIAMPolicyAssignments":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentStatus":{},"Namespace":{"location":"uri","locationName":"Namespace"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"IAMPolicyAssignments":{"type":"list","member":{"type":"structure","members":{"AssignmentName":{},"AssignmentStatus":{}}}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListIAMPolicyAssignmentsForUser":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}/iam-policy-assignments"},"input":{"type":"structure","required":["AwsAccountId","UserName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"UserName":{"location":"uri","locationName":"UserName"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"ActiveAssignments":{"type":"list","member":{"type":"structure","members":{"AssignmentName":{},"PolicyArn":{}}}},"RequestId":{},"NextToken":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListIngestions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/ingestions"},"input":{"type":"structure","required":["DataSetId","AwsAccountId"],"members":{"DataSetId":{"location":"uri","locationName":"DataSetId"},"NextToken":{"location":"querystring","locationName":"next-token"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Ingestions":{"type":"list","member":{"shape":"S9j"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListNamespaces":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"Namespaces":{"type":"list","member":{"shape":"S9y"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/resources/{ResourceArn}/tags"},"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"Sb"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListTemplateAliases":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-result","type":"integer"}}},"output":{"type":"structure","members":{"TemplateAliasList":{"type":"list","member":{"shape":"S6h"}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{},"NextToken":{}}}},"ListTemplateVersions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/versions"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"TemplateVersionSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"VersionNumber":{"type":"long"},"CreatedTime":{"type":"timestamp"},"Status":{},"Description":{}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListTemplates":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/templates"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-result","type":"integer"}}},"output":{"type":"structure","members":{"TemplateSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"TemplateId":{},"Name":{},"LatestVersionNumber":{"type":"long"},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListThemeAliases":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-result","type":"integer"}}},"output":{"type":"structure","members":{"ThemeAliasList":{"type":"list","member":{"shape":"S6z"}},"Status":{"location":"statusCode","type":"integer"},"RequestId":{},"NextToken":{}}}},"ListThemeVersions":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/versions"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"ThemeVersionSummaryList":{"type":"list","member":{"type":"structure","members":{"VersionNumber":{"type":"long"},"Arn":{},"Description":{},"CreatedTime":{"type":"timestamp"},"Status":{}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListThemes":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/themes"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Type":{"location":"querystring","locationName":"type"}}},"output":{"type":"structure","members":{"ThemeSummaryList":{"type":"list","member":{"type":"structure","members":{"Arn":{},"Name":{},"ThemeId":{},"LatestVersionNumber":{"type":"long"},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"ListUserGroups":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}/groups"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"}}},"output":{"type":"structure","members":{"GroupList":{"shape":"Sco"},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"ListUsers":{"http":{"method":"GET","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users"},"input":{"type":"structure","required":["AwsAccountId","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"NextToken":{"location":"querystring","locationName":"next-token"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"UserList":{"type":"list","member":{"shape":"Sb0"}},"NextToken":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"RegisterUser":{"http":{"requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users"},"input":{"type":"structure","required":["IdentityType","Email","UserRole","AwsAccountId","Namespace"],"members":{"IdentityType":{},"Email":{},"UserRole":{},"IamArn":{},"SessionName":{},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"},"UserName":{},"CustomPermissionsName":{},"ExternalLoginFederationProviderType":{},"CustomFederationProviderUrl":{},"ExternalLoginId":{}}},"output":{"type":"structure","members":{"User":{"shape":"Sb0"},"UserInvitationUrl":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"RestoreAnalysis":{"http":{"requestUri":"/accounts/{AwsAccountId}/restore/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"AnalysisId":{},"RequestId":{}}}},"SearchAnalyses":{"http":{"requestUri":"/accounts/{AwsAccountId}/search/analyses"},"input":{"type":"structure","required":["AwsAccountId","Filters"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Filters":{"type":"list","member":{"type":"structure","members":{"Operator":{},"Name":{},"Value":{}}}},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"AnalysisSummaryList":{"shape":"Sbu"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"SearchDashboards":{"http":{"requestUri":"/accounts/{AwsAccountId}/search/dashboards"},"input":{"type":"structure","required":["AwsAccountId","Filters"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Filters":{"type":"list","member":{"type":"structure","required":["Operator"],"members":{"Operator":{},"Name":{},"Value":{}}}},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"DashboardSummaryList":{"shape":"Sc2"},"NextToken":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"SearchFolders":{"http":{"requestUri":"/accounts/{AwsAccountId}/search/folders"},"input":{"type":"structure","required":["AwsAccountId","Filters"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Filters":{"type":"list","member":{"type":"structure","members":{"Operator":{},"Name":{},"Value":{}}}},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"FolderSummaryList":{"shape":"Sch"},"NextToken":{},"RequestId":{}}}},"TagResource":{"http":{"requestUri":"/resources/{ResourceArn}/tags"},"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/resources/{ResourceArn}/tags"},"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"TagKeys":{"location":"querystring","locationName":"keys","type":"list","member":{}}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateAccountCustomization":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/customizations"},"input":{"type":"structure","required":["AwsAccountId","AccountCustomization"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"querystring","locationName":"namespace"},"AccountCustomization":{"shape":"Sa"}}},"output":{"type":"structure","members":{"Arn":{},"AwsAccountId":{},"Namespace":{},"AccountCustomization":{"shape":"Sa"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateAccountSettings":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/settings"},"input":{"type":"structure","required":["AwsAccountId","DefaultNamespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DefaultNamespace":{},"NotificationEmail":{}}},"output":{"type":"structure","members":{"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateAnalysis":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"Name":{},"Parameters":{"shape":"Sj"},"SourceEntity":{"shape":"S14"},"ThemeArn":{}}},"output":{"type":"structure","members":{"Arn":{},"AnalysisId":{},"UpdateStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateAnalysisPermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/analyses/{AnalysisId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","AnalysisId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AnalysisId":{"location":"uri","locationName":"AnalysisId"},"GrantPermissions":{"shape":"Seu"},"RevokePermissions":{"shape":"Seu"}}},"output":{"type":"structure","members":{"AnalysisArn":{},"AnalysisId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDashboard":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","Name","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"Name":{},"SourceEntity":{"shape":"S1c"},"Parameters":{"shape":"Sj"},"VersionDescription":{},"DashboardPublishOptions":{"shape":"S1f"},"ThemeArn":{}}},"output":{"type":"structure","members":{"Arn":{},"VersionArn":{},"DashboardId":{},"CreationStatus":{},"Status":{"type":"integer"},"RequestId":{}}}},"UpdateDashboardPermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DashboardId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"GrantPermissions":{"shape":"Seu"},"RevokePermissions":{"shape":"Seu"}}},"output":{"type":"structure","members":{"DashboardArn":{},"DashboardId":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDashboardPublishedVersion":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/dashboards/{DashboardId}/versions/{VersionNumber}"},"input":{"type":"structure","required":["AwsAccountId","DashboardId","VersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DashboardId":{"location":"uri","locationName":"DashboardId"},"VersionNumber":{"location":"uri","locationName":"VersionNumber","type":"long"}}},"output":{"type":"structure","members":{"DashboardId":{},"DashboardArn":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateDataSet":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}"},"input":{"type":"structure","required":["AwsAccountId","DataSetId","Name","PhysicalTableMap","ImportMode"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"Name":{},"PhysicalTableMap":{"shape":"S1p"},"LogicalTableMap":{"shape":"S2a"},"ImportMode":{},"ColumnGroups":{"shape":"S37"},"FieldFolders":{"shape":"S3d"},"RowLevelPermissionDataSet":{"shape":"S3i"},"RowLevelPermissionTagConfiguration":{"shape":"S3m"},"ColumnLevelPermissionRules":{"shape":"S3s"},"DataSetUsageConfiguration":{"shape":"S3w"}}},"output":{"type":"structure","members":{"Arn":{},"DataSetId":{},"IngestionArn":{},"IngestionId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDataSetPermissions":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sets/{DataSetId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSetId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSetId":{"location":"uri","locationName":"DataSetId"},"GrantPermissions":{"shape":"S10"},"RevokePermissions":{"shape":"S10"}}},"output":{"type":"structure","members":{"DataSetArn":{},"DataSetId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDataSource":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId","Name"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"},"Name":{},"DataSourceParameters":{"shape":"S40"},"Credentials":{"shape":"S52"},"VpcConnectionProperties":{"shape":"S58"},"SslProperties":{"shape":"S59"}}},"output":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"UpdateStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateDataSourcePermissions":{"http":{"requestUri":"/accounts/{AwsAccountId}/data-sources/{DataSourceId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","DataSourceId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"DataSourceId":{"location":"uri","locationName":"DataSourceId"},"GrantPermissions":{"shape":"S10"},"RevokePermissions":{"shape":"S10"}}},"output":{"type":"structure","members":{"DataSourceArn":{},"DataSourceId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateFolder":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}"},"input":{"type":"structure","required":["AwsAccountId","FolderId","Name"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"Name":{}}},"output":{"type":"structure","members":{"Status":{"location":"statusCode","type":"integer"},"Arn":{},"FolderId":{},"RequestId":{}}}},"UpdateFolderPermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/folders/{FolderId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","FolderId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"FolderId":{"location":"uri","locationName":"FolderId"},"GrantPermissions":{"shape":"S10"},"RevokePermissions":{"shape":"S10"}}},"output":{"type":"structure","members":{"Status":{"type":"integer"},"Arn":{},"FolderId":{},"Permissions":{"shape":"S10"},"RequestId":{}}}},"UpdateGroup":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/groups/{GroupName}"},"input":{"type":"structure","required":["GroupName","AwsAccountId","Namespace"],"members":{"GroupName":{"location":"uri","locationName":"GroupName"},"Description":{},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"}}},"output":{"type":"structure","members":{"Group":{"shape":"S5n"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateIAMPolicyAssignment":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/iam-policy-assignments/{AssignmentName}"},"input":{"type":"structure","required":["AwsAccountId","AssignmentName","Namespace"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"AssignmentName":{"location":"uri","locationName":"AssignmentName"},"Namespace":{"location":"uri","locationName":"Namespace"},"AssignmentStatus":{},"PolicyArn":{},"Identities":{"shape":"S5v"}}},"output":{"type":"structure","members":{"AssignmentName":{},"AssignmentId":{},"PolicyArn":{},"Identities":{"shape":"S5v"},"AssignmentStatus":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateIpRestriction":{"http":{"requestUri":"/accounts/{AwsAccountId}/ip-restriction"},"input":{"type":"structure","required":["AwsAccountId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"IpRestrictionRuleMap":{"shape":"S9s"},"Enabled":{"type":"boolean"}}},"output":{"type":"structure","members":{"AwsAccountId":{},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateTemplate":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","SourceEntity"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"SourceEntity":{"shape":"S69"},"VersionDescription":{},"Name":{}}},"output":{"type":"structure","members":{"TemplateId":{},"Arn":{},"VersionArn":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateTemplateAlias":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","TemplateId","AliasName","TemplateVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"AliasName":{"location":"uri","locationName":"AliasName"},"TemplateVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"TemplateAlias":{"shape":"S6h"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateTemplatePermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/templates/{TemplateId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","TemplateId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"TemplateId":{"location":"uri","locationName":"TemplateId"},"GrantPermissions":{"shape":"Seu"},"RevokePermissions":{"shape":"Seu"}}},"output":{"type":"structure","members":{"TemplateId":{},"TemplateArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateTheme":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","BaseThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"Name":{},"BaseThemeId":{},"VersionDescription":{},"Configuration":{"shape":"S6k"}}},"output":{"type":"structure","members":{"ThemeId":{},"Arn":{},"VersionArn":{},"CreationStatus":{},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateThemeAlias":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/aliases/{AliasName}"},"input":{"type":"structure","required":["AwsAccountId","ThemeId","AliasName","ThemeVersionNumber"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"AliasName":{"location":"uri","locationName":"AliasName"},"ThemeVersionNumber":{"type":"long"}}},"output":{"type":"structure","members":{"ThemeAlias":{"shape":"S6z"},"Status":{"location":"statusCode","type":"integer"},"RequestId":{}}}},"UpdateThemePermissions":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/themes/{ThemeId}/permissions"},"input":{"type":"structure","required":["AwsAccountId","ThemeId"],"members":{"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"ThemeId":{"location":"uri","locationName":"ThemeId"},"GrantPermissions":{"shape":"Seu"},"RevokePermissions":{"shape":"Seu"}}},"output":{"type":"structure","members":{"ThemeId":{},"ThemeArn":{},"Permissions":{"shape":"S10"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}},"UpdateUser":{"http":{"method":"PUT","requestUri":"/accounts/{AwsAccountId}/namespaces/{Namespace}/users/{UserName}"},"input":{"type":"structure","required":["UserName","AwsAccountId","Namespace","Email","Role"],"members":{"UserName":{"location":"uri","locationName":"UserName"},"AwsAccountId":{"location":"uri","locationName":"AwsAccountId"},"Namespace":{"location":"uri","locationName":"Namespace"},"Email":{},"Role":{},"CustomPermissionsName":{},"UnapplyCustomPermissions":{"type":"boolean"},"ExternalLoginFederationProviderType":{},"CustomFederationProviderUrl":{},"ExternalLoginId":{}}},"output":{"type":"structure","members":{"User":{"shape":"Sb0"},"RequestId":{},"Status":{"location":"statusCode","type":"integer"}}}}},"shapes":{"Sa":{"type":"structure","members":{"DefaultTheme":{}}},"Sb":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}}},"Sj":{"type":"structure","members":{"StringParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{}}}}},"IntegerParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{"type":"long"}}}}},"DecimalParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{"type":"double"}}}}},"DateTimeParameters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{"type":"timestamp"}}}}}}},"S10":{"type":"list","member":{"shape":"S11"}},"S11":{"type":"structure","required":["Principal","Actions"],"members":{"Principal":{},"Actions":{"type":"list","member":{}}}},"S14":{"type":"structure","members":{"SourceTemplate":{"type":"structure","required":["DataSetReferences","Arn"],"members":{"DataSetReferences":{"shape":"S16"},"Arn":{}}}}},"S16":{"type":"list","member":{"type":"structure","required":["DataSetPlaceholder","DataSetArn"],"members":{"DataSetPlaceholder":{},"DataSetArn":{}}}},"S1c":{"type":"structure","members":{"SourceTemplate":{"type":"structure","required":["DataSetReferences","Arn"],"members":{"DataSetReferences":{"shape":"S16"},"Arn":{}}}}},"S1f":{"type":"structure","members":{"AdHocFilteringOption":{"type":"structure","members":{"AvailabilityStatus":{}}},"ExportToCSVOption":{"type":"structure","members":{"AvailabilityStatus":{}}},"SheetControlsOption":{"type":"structure","members":{"VisibilityState":{}}}}},"S1p":{"type":"map","key":{},"value":{"type":"structure","members":{"RelationalTable":{"type":"structure","required":["DataSourceArn","Name","InputColumns"],"members":{"DataSourceArn":{},"Catalog":{},"Schema":{},"Name":{},"InputColumns":{"shape":"S1w"}}},"CustomSql":{"type":"structure","required":["DataSourceArn","Name","SqlQuery"],"members":{"DataSourceArn":{},"Name":{},"SqlQuery":{},"Columns":{"shape":"S1w"}}},"S3Source":{"type":"structure","required":["DataSourceArn","InputColumns"],"members":{"DataSourceArn":{},"UploadSettings":{"type":"structure","members":{"Format":{},"StartFromRow":{"type":"integer"},"ContainsHeader":{"type":"boolean"},"TextQualifier":{},"Delimiter":{}}},"InputColumns":{"shape":"S1w"}}}}}},"S1w":{"type":"list","member":{"type":"structure","required":["Name","Type"],"members":{"Name":{},"Type":{}}}},"S2a":{"type":"map","key":{},"value":{"type":"structure","required":["Alias","Source"],"members":{"Alias":{},"DataTransforms":{"type":"list","member":{"type":"structure","members":{"ProjectOperation":{"type":"structure","required":["ProjectedColumns"],"members":{"ProjectedColumns":{"type":"list","member":{}}}},"FilterOperation":{"type":"structure","required":["ConditionExpression"],"members":{"ConditionExpression":{}}},"CreateColumnsOperation":{"type":"structure","required":["Columns"],"members":{"Columns":{"type":"list","member":{"type":"structure","required":["ColumnName","ColumnId","Expression"],"members":{"ColumnName":{},"ColumnId":{},"Expression":{}}}}}},"RenameColumnOperation":{"type":"structure","required":["ColumnName","NewColumnName"],"members":{"ColumnName":{},"NewColumnName":{}}},"CastColumnTypeOperation":{"type":"structure","required":["ColumnName","NewColumnType"],"members":{"ColumnName":{},"NewColumnType":{},"Format":{}}},"TagColumnOperation":{"type":"structure","required":["ColumnName","Tags"],"members":{"ColumnName":{},"Tags":{"type":"list","member":{"type":"structure","members":{"ColumnGeographicRole":{},"ColumnDescription":{"type":"structure","members":{"Text":{}}}}}}}},"UntagColumnOperation":{"type":"structure","required":["ColumnName","TagNames"],"members":{"ColumnName":{},"TagNames":{"type":"list","member":{}}}}}}},"Source":{"type":"structure","members":{"JoinInstruction":{"type":"structure","required":["LeftOperand","RightOperand","Type","OnClause"],"members":{"LeftOperand":{},"RightOperand":{},"LeftJoinKeyProperties":{"shape":"S33"},"RightJoinKeyProperties":{"shape":"S33"},"Type":{},"OnClause":{}}},"PhysicalTableId":{},"DataSetArn":{}}}}}},"S33":{"type":"structure","members":{"UniqueKey":{"type":"boolean"}}},"S37":{"type":"list","member":{"type":"structure","members":{"GeoSpatialColumnGroup":{"type":"structure","required":["Name","CountryCode","Columns"],"members":{"Name":{},"CountryCode":{},"Columns":{"type":"list","member":{}}}}}}},"S3d":{"type":"map","key":{},"value":{"type":"structure","members":{"description":{},"columns":{"type":"list","member":{}}}}},"S3i":{"type":"structure","required":["Arn","PermissionPolicy"],"members":{"Namespace":{},"Arn":{},"PermissionPolicy":{},"FormatVersion":{},"Status":{}}},"S3m":{"type":"structure","required":["TagRules"],"members":{"Status":{},"TagRules":{"type":"list","member":{"type":"structure","required":["TagKey","ColumnName"],"members":{"TagKey":{},"ColumnName":{},"TagMultiValueDelimiter":{},"MatchAllValue":{"shape":"S3r"}}}}}},"S3r":{"type":"string","sensitive":true},"S3s":{"type":"list","member":{"type":"structure","members":{"Principals":{"type":"list","member":{}},"ColumnNames":{"type":"list","member":{}}}}},"S3w":{"type":"structure","members":{"DisableUseAsDirectQuerySource":{"type":"boolean"},"DisableUseAsImportedSource":{"type":"boolean"}}},"S40":{"type":"structure","members":{"AmazonElasticsearchParameters":{"type":"structure","required":["Domain"],"members":{"Domain":{}}},"AthenaParameters":{"type":"structure","members":{"WorkGroup":{}}},"AuroraParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"AuroraPostgreSqlParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"AwsIotAnalyticsParameters":{"type":"structure","required":["DataSetName"],"members":{"DataSetName":{}}},"JiraParameters":{"type":"structure","required":["SiteBaseUrl"],"members":{"SiteBaseUrl":{}}},"MariaDbParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"MySqlParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"OracleParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"PostgreSqlParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"PrestoParameters":{"type":"structure","required":["Host","Port","Catalog"],"members":{"Host":{},"Port":{"type":"integer"},"Catalog":{}}},"RdsParameters":{"type":"structure","required":["InstanceId","Database"],"members":{"InstanceId":{},"Database":{}}},"RedshiftParameters":{"type":"structure","required":["Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{},"ClusterId":{}}},"S3Parameters":{"type":"structure","required":["ManifestFileLocation"],"members":{"ManifestFileLocation":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{},"Key":{}}}}},"ServiceNowParameters":{"type":"structure","required":["SiteBaseUrl"],"members":{"SiteBaseUrl":{}}},"SnowflakeParameters":{"type":"structure","required":["Host","Database","Warehouse"],"members":{"Host":{},"Database":{},"Warehouse":{}}},"SparkParameters":{"type":"structure","required":["Host","Port"],"members":{"Host":{},"Port":{"type":"integer"}}},"SqlServerParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"TeradataParameters":{"type":"structure","required":["Host","Port","Database"],"members":{"Host":{},"Port":{"type":"integer"},"Database":{}}},"TwitterParameters":{"type":"structure","required":["Query","MaxRows"],"members":{"Query":{},"MaxRows":{"type":"integer"}}},"AmazonOpenSearchParameters":{"type":"structure","required":["Domain"],"members":{"Domain":{}}}}},"S52":{"type":"structure","members":{"CredentialPair":{"type":"structure","required":["Username","Password"],"members":{"Username":{},"Password":{},"AlternateDataSourceParameters":{"shape":"S56"}}},"CopySourceArn":{}},"sensitive":true},"S56":{"type":"list","member":{"shape":"S40"}},"S58":{"type":"structure","required":["VpcConnectionArn"],"members":{"VpcConnectionArn":{}}},"S59":{"type":"structure","members":{"DisableSsl":{"type":"boolean"}}},"S5n":{"type":"structure","members":{"Arn":{},"GroupName":{},"Description":{},"PrincipalId":{}}},"S5r":{"type":"structure","members":{"Arn":{},"MemberName":{}}},"S5v":{"type":"map","key":{},"value":{"type":"list","member":{}}},"S69":{"type":"structure","members":{"SourceAnalysis":{"type":"structure","required":["Arn","DataSetReferences"],"members":{"Arn":{},"DataSetReferences":{"shape":"S16"}}},"SourceTemplate":{"type":"structure","required":["Arn"],"members":{"Arn":{}}}}},"S6h":{"type":"structure","members":{"AliasName":{},"Arn":{},"TemplateVersionNumber":{"type":"long"}}},"S6k":{"type":"structure","members":{"DataColorPalette":{"type":"structure","members":{"Colors":{"shape":"S6m"},"MinMaxGradient":{"shape":"S6m"},"EmptyFillColor":{}}},"UIColorPalette":{"type":"structure","members":{"PrimaryForeground":{},"PrimaryBackground":{},"SecondaryForeground":{},"SecondaryBackground":{},"Accent":{},"AccentForeground":{},"Danger":{},"DangerForeground":{},"Warning":{},"WarningForeground":{},"Success":{},"SuccessForeground":{},"Dimension":{},"DimensionForeground":{},"Measure":{},"MeasureForeground":{}}},"Sheet":{"type":"structure","members":{"Tile":{"type":"structure","members":{"Border":{"type":"structure","members":{"Show":{"type":"boolean"}}}}},"TileLayout":{"type":"structure","members":{"Gutter":{"type":"structure","members":{"Show":{"type":"boolean"}}},"Margin":{"type":"structure","members":{"Show":{"type":"boolean"}}}}}}}}},"S6m":{"type":"list","member":{}},"S6z":{"type":"structure","members":{"Arn":{},"AliasName":{},"ThemeVersionNumber":{"type":"long"}}},"S8c":{"type":"list","member":{}},"S8d":{"type":"list","member":{"type":"structure","members":{"SheetId":{},"Name":{}}}},"S8z":{"type":"structure","members":{"Arn":{},"DataSourceId":{},"Name":{},"Type":{},"Status":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"DataSourceParameters":{"shape":"S40"},"AlternateDataSourceParameters":{"shape":"S56"},"VpcConnectionProperties":{"shape":"S58"},"SslProperties":{"shape":"S59"},"ErrorInfo":{"type":"structure","members":{"Type":{},"Message":{}}}}},"S9j":{"type":"structure","required":["Arn","IngestionStatus","CreatedTime"],"members":{"Arn":{},"IngestionId":{},"IngestionStatus":{},"ErrorInfo":{"type":"structure","members":{"Type":{},"Message":{}}},"RowInfo":{"type":"structure","members":{"RowsIngested":{"type":"long"},"RowsDropped":{"type":"long"},"TotalRowsInDataset":{"type":"long"}}},"QueueInfo":{"type":"structure","required":["WaitingOnIngestion","QueuedIngestion"],"members":{"WaitingOnIngestion":{},"QueuedIngestion":{}}},"CreatedTime":{"type":"timestamp"},"IngestionTimeInSeconds":{"type":"long"},"IngestionSizeInBytes":{"type":"long"},"RequestSource":{},"RequestType":{}}},"S9s":{"type":"map","key":{},"value":{}},"S9y":{"type":"structure","members":{"Name":{},"Arn":{},"CapacityRegion":{},"CreationStatus":{},"IdentityStore":{},"NamespaceError":{"type":"structure","members":{"Type":{},"Message":{}}}}},"Sb0":{"type":"structure","members":{"Arn":{},"UserName":{},"Email":{},"Role":{},"IdentityType":{},"Active":{"type":"boolean"},"PrincipalId":{},"CustomPermissionsName":{},"ExternalLoginFederationProviderType":{},"ExternalLoginFederationProviderUrl":{},"ExternalLoginId":{}}},"Sbc":{"type":"string","sensitive":true},"Sbu":{"type":"list","member":{"type":"structure","members":{"Arn":{},"AnalysisId":{},"Name":{},"Status":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"Sc2":{"type":"list","member":{"type":"structure","members":{"Arn":{},"DashboardId":{},"Name":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"PublishedVersionNumber":{"type":"long"},"LastPublishedTime":{"type":"timestamp"}}}},"Sch":{"type":"list","member":{"type":"structure","members":{"Arn":{},"FolderId":{},"Name":{},"FolderType":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"Sco":{"type":"list","member":{"shape":"S5n"}},"Seu":{"type":"list","member":{"shape":"S11"}}}}
50108
50166
 
50109
50167
  /***/ }),
50110
50168
  /* 662 */
@@ -53988,12 +54046,11 @@ return /******/ (function(modules) { // webpackBootstrap
53988
54046
 
53989
54047
  apiLoader.services['lexmodelsv2'] = {};
53990
54048
  AWS.LexModelsV2 = Service.defineService('lexmodelsv2', ['2020-08-07']);
53991
- __webpack_require__(986);
53992
54049
  Object.defineProperty(apiLoader.services['lexmodelsv2'], '2020-08-07', {
53993
54050
  get: function get() {
53994
- var model = __webpack_require__(987);
53995
- model.paginators = __webpack_require__(988).pagination;
53996
- model.waiters = __webpack_require__(989).waiters;
54051
+ var model = __webpack_require__(986);
54052
+ model.paginators = __webpack_require__(987).pagination;
54053
+ model.waiters = __webpack_require__(988).waiters;
53997
54054
  return model;
53998
54055
  },
53999
54056
  enumerable: true,
@@ -54005,53 +54062,24 @@ return /******/ (function(modules) { // webpackBootstrap
54005
54062
 
54006
54063
  /***/ }),
54007
54064
  /* 986 */
54008
- /***/ (function(module, exports, __webpack_require__) {
54009
-
54010
- var AWS = __webpack_require__(4);
54011
-
54012
- AWS.util.update(AWS.LexModelsV2.prototype, {
54013
- /**
54014
- * @api private
54015
- */
54016
- setupRequestListeners: function setupRequestListeners(request) {
54017
- request.addListener('build', this.modifyContentType);
54018
- },
54019
-
54020
- /**
54021
- * Normally rest-json services require `Content-Type` header to be 'application/json',
54022
- * However Lex Model V2 services requires the header to be 'application/x-amz-json-1.1'.
54023
- *
54024
- * @api private
54025
- */
54026
- modifyContentType: function modifyContentType(request) {
54027
- if (request.httpRequest.headers['Content-Type'] === 'application/json') {
54028
- request.httpRequest.headers['Content-Type'] = 'application/x-amz-json-1.1';
54029
- }
54030
- }
54031
- });
54032
-
54033
-
54034
-
54035
- /***/ }),
54036
- /* 987 */
54037
54065
  /***/ (function(module, exports) {
54038
54066
 
54039
54067
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-08-07","endpointPrefix":"models-v2-lex","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"Lex Models V2","serviceFullName":"Amazon Lex Model Building V2","serviceId":"Lex Models V2","signatureVersion":"v4","signingName":"lex","uid":"models.lex.v2-2020-08-07"},"operations":{"BuildBotLocale":{"http":{"requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/","responseCode":202},"input":{"type":"structure","required":["botId","botVersion","localeId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeId":{},"botLocaleStatus":{},"lastBuildSubmittedDateTime":{"type":"timestamp"}}}},"CreateBot":{"http":{"method":"PUT","requestUri":"/bots/","responseCode":202},"input":{"type":"structure","required":["botName","roleArn","dataPrivacy","idleSessionTTLInSeconds"],"members":{"botName":{},"description":{},"roleArn":{},"dataPrivacy":{"shape":"Sc"},"idleSessionTTLInSeconds":{"type":"integer"},"botTags":{"shape":"Sf"},"testBotAliasTags":{"shape":"Sf"}}},"output":{"type":"structure","members":{"botId":{},"botName":{},"description":{},"roleArn":{},"dataPrivacy":{"shape":"Sc"},"idleSessionTTLInSeconds":{"type":"integer"},"botStatus":{},"creationDateTime":{"type":"timestamp"},"botTags":{"shape":"Sf"},"testBotAliasTags":{"shape":"Sf"}}}},"CreateBotAlias":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botaliases/","responseCode":202},"input":{"type":"structure","required":["botAliasName","botId"],"members":{"botAliasName":{},"description":{},"botVersion":{},"botAliasLocaleSettings":{"shape":"Sm"},"conversationLogSettings":{"shape":"St"},"sentimentAnalysisSettings":{"shape":"S16"},"botId":{"location":"uri","locationName":"botId"},"tags":{"shape":"Sf"}}},"output":{"type":"structure","members":{"botAliasId":{},"botAliasName":{},"description":{},"botVersion":{},"botAliasLocaleSettings":{"shape":"Sm"},"conversationLogSettings":{"shape":"St"},"sentimentAnalysisSettings":{"shape":"S16"},"botAliasStatus":{},"botId":{},"creationDateTime":{"type":"timestamp"},"tags":{"shape":"Sf"}}}},"CreateBotLocale":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/","responseCode":202},"input":{"type":"structure","required":["botId","botVersion","localeId","nluIntentConfidenceThreshold"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{},"description":{},"nluIntentConfidenceThreshold":{"type":"double"},"voiceSettings":{"shape":"S1c"}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeName":{},"localeId":{},"description":{},"nluIntentConfidenceThreshold":{"type":"double"},"voiceSettings":{"shape":"S1c"},"botLocaleStatus":{},"creationDateTime":{"type":"timestamp"}}}},"CreateBotVersion":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/","responseCode":202},"input":{"type":"structure","required":["botId","botVersionLocaleSpecification"],"members":{"botId":{"location":"uri","locationName":"botId"},"description":{},"botVersionLocaleSpecification":{"shape":"S1h"}}},"output":{"type":"structure","members":{"botId":{},"description":{},"botVersion":{},"botVersionLocaleSpecification":{"shape":"S1h"},"botStatus":{},"creationDateTime":{"type":"timestamp"}}}},"CreateExport":{"http":{"method":"PUT","requestUri":"/exports/","responseCode":202},"input":{"type":"structure","required":["resourceSpecification","fileFormat"],"members":{"resourceSpecification":{"shape":"S1m"},"fileFormat":{},"filePassword":{"shape":"S1q"}}},"output":{"type":"structure","members":{"exportId":{},"resourceSpecification":{"shape":"S1m"},"fileFormat":{},"exportStatus":{},"creationDateTime":{"type":"timestamp"}}}},"CreateIntent":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/","responseCode":200},"input":{"type":"structure","required":["intentName","botId","botVersion","localeId"],"members":{"intentName":{},"description":{},"parentIntentSignature":{},"sampleUtterances":{"shape":"S1v"},"dialogCodeHook":{"shape":"S1y"},"fulfillmentCodeHook":{"shape":"S1z"},"intentConfirmationSetting":{"shape":"S2q"},"intentClosingSetting":{"shape":"S2t"},"inputContexts":{"shape":"S2u"},"outputContexts":{"shape":"S2w"},"kendraConfiguration":{"shape":"S30"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"intentId":{},"intentName":{},"description":{},"parentIntentSignature":{},"sampleUtterances":{"shape":"S1v"},"dialogCodeHook":{"shape":"S1y"},"fulfillmentCodeHook":{"shape":"S1z"},"intentConfirmationSetting":{"shape":"S2q"},"intentClosingSetting":{"shape":"S2t"},"inputContexts":{"shape":"S2u"},"outputContexts":{"shape":"S2w"},"kendraConfiguration":{"shape":"S30"},"botId":{},"botVersion":{},"localeId":{},"creationDateTime":{"type":"timestamp"}}}},"CreateResourcePolicy":{"http":{"requestUri":"/policy/{resourceArn}/","responseCode":200},"input":{"type":"structure","required":["resourceArn","policy"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"policy":{}}},"output":{"type":"structure","members":{"resourceArn":{},"revisionId":{}}}},"CreateResourcePolicyStatement":{"http":{"requestUri":"/policy/{resourceArn}/statements/","responseCode":200},"input":{"type":"structure","required":["resourceArn","statementId","effect","principal","action"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"statementId":{},"effect":{},"principal":{"type":"list","member":{"type":"structure","members":{"service":{},"arn":{}}}},"action":{"type":"list","member":{}},"condition":{"type":"map","key":{},"value":{"type":"map","key":{},"value":{}}},"expectedRevisionId":{"location":"querystring","locationName":"expectedRevisionId"}}},"output":{"type":"structure","members":{"resourceArn":{},"revisionId":{}}}},"CreateSlot":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/","responseCode":200},"input":{"type":"structure","required":["slotName","slotTypeId","valueElicitationSetting","botId","botVersion","localeId","intentId"],"members":{"slotName":{},"description":{},"slotTypeId":{},"valueElicitationSetting":{"shape":"S3p"},"obfuscationSetting":{"shape":"S3z"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"intentId":{"location":"uri","locationName":"intentId"},"multipleValuesSetting":{"shape":"S41"}}},"output":{"type":"structure","members":{"slotId":{},"slotName":{},"description":{},"slotTypeId":{},"valueElicitationSetting":{"shape":"S3p"},"obfuscationSetting":{"shape":"S3z"},"botId":{},"botVersion":{},"localeId":{},"intentId":{},"creationDateTime":{"type":"timestamp"},"multipleValuesSetting":{"shape":"S41"}}}},"CreateSlotType":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/","responseCode":200},"input":{"type":"structure","required":["slotTypeName","valueSelectionSetting","botId","botVersion","localeId"],"members":{"slotTypeName":{},"description":{},"slotTypeValues":{"shape":"S44"},"valueSelectionSetting":{"shape":"S49"},"parentSlotTypeSignature":{},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"slotTypeId":{},"slotTypeName":{},"description":{},"slotTypeValues":{"shape":"S44"},"valueSelectionSetting":{"shape":"S49"},"parentSlotTypeSignature":{},"botId":{},"botVersion":{},"localeId":{},"creationDateTime":{"type":"timestamp"}}}},"CreateUploadUrl":{"http":{"requestUri":"/createuploadurl/","responseCode":200},"input":{"type":"structure","members":{}},"output":{"type":"structure","members":{"importId":{},"uploadUrl":{}}}},"DeleteBot":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/","responseCode":202},"input":{"type":"structure","required":["botId"],"members":{"botId":{"location":"uri","locationName":"botId"},"skipResourceInUseCheck":{"location":"querystring","locationName":"skipResourceInUseCheck","type":"boolean"}}},"output":{"type":"structure","members":{"botId":{},"botStatus":{}}}},"DeleteBotAlias":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/botaliases/{botAliasId}/","responseCode":202},"input":{"type":"structure","required":["botAliasId","botId"],"members":{"botAliasId":{"location":"uri","locationName":"botAliasId"},"botId":{"location":"uri","locationName":"botId"},"skipResourceInUseCheck":{"location":"querystring","locationName":"skipResourceInUseCheck","type":"boolean"}}},"output":{"type":"structure","members":{"botAliasId":{},"botId":{},"botAliasStatus":{}}}},"DeleteBotLocale":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/","responseCode":202},"input":{"type":"structure","required":["botId","botVersion","localeId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeId":{},"botLocaleStatus":{}}}},"DeleteBotVersion":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/botversions/{botVersion}/","responseCode":202},"input":{"type":"structure","required":["botId","botVersion"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"skipResourceInUseCheck":{"location":"querystring","locationName":"skipResourceInUseCheck","type":"boolean"}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"botStatus":{}}}},"DeleteExport":{"http":{"method":"DELETE","requestUri":"/exports/{exportId}/","responseCode":202},"input":{"type":"structure","required":["exportId"],"members":{"exportId":{"location":"uri","locationName":"exportId"}}},"output":{"type":"structure","members":{"exportId":{},"exportStatus":{}}}},"DeleteImport":{"http":{"method":"DELETE","requestUri":"/imports/{importId}/","responseCode":202},"input":{"type":"structure","required":["importId"],"members":{"importId":{"location":"uri","locationName":"importId"}}},"output":{"type":"structure","members":{"importId":{},"importStatus":{}}}},"DeleteIntent":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/","responseCode":204},"input":{"type":"structure","required":["intentId","botId","botVersion","localeId"],"members":{"intentId":{"location":"uri","locationName":"intentId"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}}},"DeleteResourcePolicy":{"http":{"method":"DELETE","requestUri":"/policy/{resourceArn}/","responseCode":204},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"expectedRevisionId":{"location":"querystring","locationName":"expectedRevisionId"}}},"output":{"type":"structure","members":{"resourceArn":{},"revisionId":{}}}},"DeleteResourcePolicyStatement":{"http":{"method":"DELETE","requestUri":"/policy/{resourceArn}/statements/{statementId}/","responseCode":204},"input":{"type":"structure","required":["resourceArn","statementId"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"statementId":{"location":"uri","locationName":"statementId"},"expectedRevisionId":{"location":"querystring","locationName":"expectedRevisionId"}}},"output":{"type":"structure","members":{"resourceArn":{},"revisionId":{}}}},"DeleteSlot":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}/","responseCode":204},"input":{"type":"structure","required":["slotId","botId","botVersion","localeId","intentId"],"members":{"slotId":{"location":"uri","locationName":"slotId"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"intentId":{"location":"uri","locationName":"intentId"}}}},"DeleteSlotType":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}/","responseCode":204},"input":{"type":"structure","required":["slotTypeId","botId","botVersion","localeId"],"members":{"slotTypeId":{"location":"uri","locationName":"slotTypeId"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"skipResourceInUseCheck":{"location":"querystring","locationName":"skipResourceInUseCheck","type":"boolean"}}}},"DeleteUtterances":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/utterances/","responseCode":204},"input":{"type":"structure","required":["botId"],"members":{"botId":{"location":"uri","locationName":"botId"},"localeId":{"location":"querystring","locationName":"localeId"},"sessionId":{"location":"querystring","locationName":"sessionId"}}},"output":{"type":"structure","members":{}}},"DescribeBot":{"http":{"method":"GET","requestUri":"/bots/{botId}/","responseCode":200},"input":{"type":"structure","required":["botId"],"members":{"botId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"botId":{},"botName":{},"description":{},"roleArn":{},"dataPrivacy":{"shape":"Sc"},"idleSessionTTLInSeconds":{"type":"integer"},"botStatus":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"DescribeBotAlias":{"http":{"method":"GET","requestUri":"/bots/{botId}/botaliases/{botAliasId}/","responseCode":200},"input":{"type":"structure","required":["botAliasId","botId"],"members":{"botAliasId":{"location":"uri","locationName":"botAliasId"},"botId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"botAliasId":{},"botAliasName":{},"description":{},"botVersion":{},"botAliasLocaleSettings":{"shape":"Sm"},"conversationLogSettings":{"shape":"St"},"sentimentAnalysisSettings":{"shape":"S16"},"botAliasHistoryEvents":{"type":"list","member":{"type":"structure","members":{"botVersion":{},"startDate":{"type":"timestamp"},"endDate":{"type":"timestamp"}}}},"botAliasStatus":{},"botId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"DescribeBotLocale":{"http":{"method":"GET","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/","responseCode":200},"input":{"type":"structure","required":["botId","botVersion","localeId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeId":{},"localeName":{},"description":{},"nluIntentConfidenceThreshold":{"type":"double"},"voiceSettings":{"shape":"S1c"},"intentsCount":{"type":"integer"},"slotTypesCount":{"type":"integer"},"botLocaleStatus":{},"failureReasons":{"shape":"S5f"},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"},"lastBuildSubmittedDateTime":{"type":"timestamp"},"botLocaleHistoryEvents":{"type":"list","member":{"type":"structure","required":["event","eventDate"],"members":{"event":{},"eventDate":{"type":"timestamp"}}}}}}},"DescribeBotVersion":{"http":{"method":"GET","requestUri":"/bots/{botId}/botversions/{botVersion}/","responseCode":200},"input":{"type":"structure","required":["botId","botVersion"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"}}},"output":{"type":"structure","members":{"botId":{},"botName":{},"botVersion":{},"description":{},"roleArn":{},"dataPrivacy":{"shape":"Sc"},"idleSessionTTLInSeconds":{"type":"integer"},"botStatus":{},"failureReasons":{"shape":"S5f"},"creationDateTime":{"type":"timestamp"}}}},"DescribeExport":{"http":{"method":"GET","requestUri":"/exports/{exportId}/","responseCode":200},"input":{"type":"structure","required":["exportId"],"members":{"exportId":{"location":"uri","locationName":"exportId"}}},"output":{"type":"structure","members":{"exportId":{},"resourceSpecification":{"shape":"S1m"},"fileFormat":{},"exportStatus":{},"failureReasons":{"shape":"S5f"},"downloadUrl":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"DescribeImport":{"http":{"method":"GET","requestUri":"/imports/{importId}/","responseCode":200},"input":{"type":"structure","required":["importId"],"members":{"importId":{"location":"uri","locationName":"importId"}}},"output":{"type":"structure","members":{"importId":{},"resourceSpecification":{"shape":"S5q"},"importedResourceId":{},"importedResourceName":{},"mergeStrategy":{},"importStatus":{},"failureReasons":{"shape":"S5f"},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"DescribeIntent":{"http":{"method":"GET","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/","responseCode":200},"input":{"type":"structure","required":["intentId","botId","botVersion","localeId"],"members":{"intentId":{"location":"uri","locationName":"intentId"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"intentId":{},"intentName":{},"description":{},"parentIntentSignature":{},"sampleUtterances":{"shape":"S1v"},"dialogCodeHook":{"shape":"S1y"},"fulfillmentCodeHook":{"shape":"S1z"},"slotPriorities":{"shape":"S5x"},"intentConfirmationSetting":{"shape":"S2q"},"intentClosingSetting":{"shape":"S2t"},"inputContexts":{"shape":"S2u"},"outputContexts":{"shape":"S2w"},"kendraConfiguration":{"shape":"S30"},"botId":{},"botVersion":{},"localeId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"DescribeResourcePolicy":{"http":{"method":"GET","requestUri":"/policy/{resourceArn}/","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"resourceArn":{},"policy":{},"revisionId":{}}}},"DescribeSlot":{"http":{"method":"GET","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}/","responseCode":200},"input":{"type":"structure","required":["slotId","botId","botVersion","localeId","intentId"],"members":{"slotId":{"location":"uri","locationName":"slotId"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"intentId":{"location":"uri","locationName":"intentId"}}},"output":{"type":"structure","members":{"slotId":{},"slotName":{},"description":{},"slotTypeId":{},"valueElicitationSetting":{"shape":"S3p"},"obfuscationSetting":{"shape":"S3z"},"botId":{},"botVersion":{},"localeId":{},"intentId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"},"multipleValuesSetting":{"shape":"S41"}}}},"DescribeSlotType":{"http":{"method":"GET","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}/","responseCode":200},"input":{"type":"structure","required":["slotTypeId","botId","botVersion","localeId"],"members":{"slotTypeId":{"location":"uri","locationName":"slotTypeId"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"slotTypeId":{},"slotTypeName":{},"description":{},"slotTypeValues":{"shape":"S44"},"valueSelectionSetting":{"shape":"S49"},"parentSlotTypeSignature":{},"botId":{},"botVersion":{},"localeId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"ListAggregatedUtterances":{"http":{"requestUri":"/bots/{botId}/aggregatedutterances/","responseCode":200},"input":{"type":"structure","required":["botId","localeId","aggregationDuration"],"members":{"botId":{"location":"uri","locationName":"botId"},"botAliasId":{},"botVersion":{},"localeId":{},"aggregationDuration":{"shape":"S67"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botAliasId":{},"botVersion":{},"localeId":{},"aggregationDuration":{"shape":"S67"},"aggregationWindowStartTime":{"type":"timestamp"},"aggregationWindowEndTime":{"type":"timestamp"},"aggregationLastRefreshedDateTime":{"type":"timestamp"},"aggregatedUtterancesSummaries":{"type":"list","member":{"type":"structure","members":{"utterance":{},"hitCount":{"type":"integer"},"missedCount":{"type":"integer"},"utteranceFirstRecordedInAggregationDuration":{"type":"timestamp"},"utteranceLastRecordedInAggregationDuration":{"type":"timestamp"},"containsDataFromDeletedResources":{"type":"boolean"}}}},"nextToken":{}}}},"ListBotAliases":{"http":{"requestUri":"/bots/{botId}/botaliases/","responseCode":200},"input":{"type":"structure","required":["botId"],"members":{"botId":{"location":"uri","locationName":"botId"},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botAliasSummaries":{"type":"list","member":{"type":"structure","members":{"botAliasId":{},"botAliasName":{},"description":{},"botVersion":{},"botAliasStatus":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"nextToken":{},"botId":{}}}},"ListBotLocales":{"http":{"requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/","responseCode":200},"input":{"type":"structure","required":["botId","botVersion"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"nextToken":{},"botLocaleSummaries":{"type":"list","member":{"type":"structure","members":{"localeId":{},"localeName":{},"description":{},"botLocaleStatus":{},"lastUpdatedDateTime":{"type":"timestamp"},"lastBuildSubmittedDateTime":{"type":"timestamp"}}}}}}},"ListBotVersions":{"http":{"requestUri":"/bots/{botId}/botversions/","responseCode":200},"input":{"type":"structure","required":["botId"],"members":{"botId":{"location":"uri","locationName":"botId"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botVersionSummaries":{"type":"list","member":{"type":"structure","members":{"botName":{},"botVersion":{},"description":{},"botStatus":{},"creationDateTime":{"type":"timestamp"}}}},"nextToken":{}}}},"ListBots":{"http":{"requestUri":"/bots/","responseCode":200},"input":{"type":"structure","members":{"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botSummaries":{"type":"list","member":{"type":"structure","members":{"botId":{},"botName":{},"description":{},"botStatus":{},"latestBotVersion":{},"lastUpdatedDateTime":{"type":"timestamp"}}}},"nextToken":{}}}},"ListBuiltInIntents":{"http":{"requestUri":"/builtins/locales/{localeId}/intents/","responseCode":200},"input":{"type":"structure","required":["localeId"],"members":{"localeId":{"location":"uri","locationName":"localeId"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"builtInIntentSummaries":{"type":"list","member":{"type":"structure","members":{"intentSignature":{},"description":{}}}},"nextToken":{},"localeId":{}}}},"ListBuiltInSlotTypes":{"http":{"requestUri":"/builtins/locales/{localeId}/slottypes/","responseCode":200},"input":{"type":"structure","required":["localeId"],"members":{"localeId":{"location":"uri","locationName":"localeId"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"builtInSlotTypeSummaries":{"type":"list","member":{"type":"structure","members":{"slotTypeSignature":{},"description":{}}}},"nextToken":{},"localeId":{}}}},"ListExports":{"http":{"requestUri":"/exports/","responseCode":200},"input":{"type":"structure","members":{"botId":{},"botVersion":{},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"exportSummaries":{"type":"list","member":{"type":"structure","members":{"exportId":{},"resourceSpecification":{"shape":"S1m"},"fileFormat":{},"exportStatus":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"nextToken":{}}}},"ListImports":{"http":{"requestUri":"/imports/","responseCode":200},"input":{"type":"structure","members":{"botId":{},"botVersion":{},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"importSummaries":{"type":"list","member":{"type":"structure","members":{"importId":{},"importedResourceId":{},"importedResourceName":{},"importStatus":{},"mergeStrategy":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"nextToken":{}}}},"ListIntents":{"http":{"requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/","responseCode":200},"input":{"type":"structure","required":["botId","botVersion","localeId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeId":{},"intentSummaries":{"type":"list","member":{"type":"structure","members":{"intentId":{},"intentName":{},"description":{},"parentIntentSignature":{},"inputContexts":{"shape":"S2u"},"outputContexts":{"shape":"S2w"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"nextToken":{}}}},"ListSlotTypes":{"http":{"requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/","responseCode":200},"input":{"type":"structure","required":["botId","botVersion","localeId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeId":{},"slotTypeSummaries":{"type":"list","member":{"type":"structure","members":{"slotTypeId":{},"slotTypeName":{},"description":{},"parentSlotTypeSignature":{},"lastUpdatedDateTime":{"type":"timestamp"}}}},"nextToken":{}}}},"ListSlots":{"http":{"requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/","responseCode":200},"input":{"type":"structure","required":["botId","botVersion","localeId","intentId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"intentId":{"location":"uri","locationName":"intentId"},"sortBy":{"type":"structure","required":["attribute","order"],"members":{"attribute":{},"order":{}}},"filters":{"type":"list","member":{"type":"structure","required":["name","values","operator"],"members":{"name":{},"values":{"shape":"S6h"},"operator":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeId":{},"intentId":{},"slotSummaries":{"type":"list","member":{"type":"structure","members":{"slotId":{},"slotName":{},"description":{},"slotConstraint":{},"slotTypeId":{},"valueElicitationPromptSpecification":{"shape":"S2r"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"nextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceARN}","responseCode":200},"input":{"type":"structure","required":["resourceARN"],"members":{"resourceARN":{"location":"uri","locationName":"resourceARN"}}},"output":{"type":"structure","members":{"tags":{"shape":"Sf"}}}},"StartImport":{"http":{"method":"PUT","requestUri":"/imports/","responseCode":202},"input":{"type":"structure","required":["importId","resourceSpecification","mergeStrategy"],"members":{"importId":{},"resourceSpecification":{"shape":"S5q"},"mergeStrategy":{},"filePassword":{"shape":"S1q"}}},"output":{"type":"structure","members":{"importId":{},"resourceSpecification":{"shape":"S5q"},"mergeStrategy":{},"importStatus":{},"creationDateTime":{"type":"timestamp"}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceARN}","responseCode":200},"input":{"type":"structure","required":["resourceARN","tags"],"members":{"resourceARN":{"location":"uri","locationName":"resourceARN"},"tags":{"shape":"Sf"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceARN}","responseCode":200},"input":{"type":"structure","required":["resourceARN","tagKeys"],"members":{"resourceARN":{"location":"uri","locationName":"resourceARN"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateBot":{"http":{"method":"PUT","requestUri":"/bots/{botId}/","responseCode":202},"input":{"type":"structure","required":["botId","botName","roleArn","dataPrivacy","idleSessionTTLInSeconds"],"members":{"botId":{"location":"uri","locationName":"botId"},"botName":{},"description":{},"roleArn":{},"dataPrivacy":{"shape":"Sc"},"idleSessionTTLInSeconds":{"type":"integer"}}},"output":{"type":"structure","members":{"botId":{},"botName":{},"description":{},"roleArn":{},"dataPrivacy":{"shape":"Sc"},"idleSessionTTLInSeconds":{"type":"integer"},"botStatus":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"UpdateBotAlias":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botaliases/{botAliasId}/","responseCode":202},"input":{"type":"structure","required":["botAliasId","botAliasName","botId"],"members":{"botAliasId":{"location":"uri","locationName":"botAliasId"},"botAliasName":{},"description":{},"botVersion":{},"botAliasLocaleSettings":{"shape":"Sm"},"conversationLogSettings":{"shape":"St"},"sentimentAnalysisSettings":{"shape":"S16"},"botId":{"location":"uri","locationName":"botId"}}},"output":{"type":"structure","members":{"botAliasId":{},"botAliasName":{},"description":{},"botVersion":{},"botAliasLocaleSettings":{"shape":"Sm"},"conversationLogSettings":{"shape":"St"},"sentimentAnalysisSettings":{"shape":"S16"},"botAliasStatus":{},"botId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"UpdateBotLocale":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/","responseCode":202},"input":{"type":"structure","required":["botId","botVersion","localeId","nluIntentConfidenceThreshold"],"members":{"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"description":{},"nluIntentConfidenceThreshold":{"type":"double"},"voiceSettings":{"shape":"S1c"}}},"output":{"type":"structure","members":{"botId":{},"botVersion":{},"localeId":{},"localeName":{},"description":{},"nluIntentConfidenceThreshold":{"type":"double"},"voiceSettings":{"shape":"S1c"},"botLocaleStatus":{},"failureReasons":{"shape":"S5f"},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"UpdateExport":{"http":{"method":"PUT","requestUri":"/exports/{exportId}/","responseCode":202},"input":{"type":"structure","required":["exportId"],"members":{"exportId":{"location":"uri","locationName":"exportId"},"filePassword":{"shape":"S1q"}}},"output":{"type":"structure","members":{"exportId":{},"resourceSpecification":{"shape":"S1m"},"fileFormat":{},"exportStatus":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"UpdateIntent":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/","responseCode":200},"input":{"type":"structure","required":["intentId","intentName","botId","botVersion","localeId"],"members":{"intentId":{"location":"uri","locationName":"intentId"},"intentName":{},"description":{},"parentIntentSignature":{},"sampleUtterances":{"shape":"S1v"},"dialogCodeHook":{"shape":"S1y"},"fulfillmentCodeHook":{"shape":"S1z"},"slotPriorities":{"shape":"S5x"},"intentConfirmationSetting":{"shape":"S2q"},"intentClosingSetting":{"shape":"S2t"},"inputContexts":{"shape":"S2u"},"outputContexts":{"shape":"S2w"},"kendraConfiguration":{"shape":"S30"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"intentId":{},"intentName":{},"description":{},"parentIntentSignature":{},"sampleUtterances":{"shape":"S1v"},"dialogCodeHook":{"shape":"S1y"},"fulfillmentCodeHook":{"shape":"S1z"},"slotPriorities":{"shape":"S5x"},"intentConfirmationSetting":{"shape":"S2q"},"intentClosingSetting":{"shape":"S2t"},"inputContexts":{"shape":"S2u"},"outputContexts":{"shape":"S2w"},"kendraConfiguration":{"shape":"S30"},"botId":{},"botVersion":{},"localeId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}},"UpdateResourcePolicy":{"http":{"method":"PUT","requestUri":"/policy/{resourceArn}/","responseCode":200},"input":{"type":"structure","required":["resourceArn","policy"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"policy":{},"expectedRevisionId":{"location":"querystring","locationName":"expectedRevisionId"}}},"output":{"type":"structure","members":{"resourceArn":{},"revisionId":{}}}},"UpdateSlot":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/intents/{intentId}/slots/{slotId}/","responseCode":200},"input":{"type":"structure","required":["slotId","slotName","slotTypeId","valueElicitationSetting","botId","botVersion","localeId","intentId"],"members":{"slotId":{"location":"uri","locationName":"slotId"},"slotName":{},"description":{},"slotTypeId":{},"valueElicitationSetting":{"shape":"S3p"},"obfuscationSetting":{"shape":"S3z"},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"},"intentId":{"location":"uri","locationName":"intentId"},"multipleValuesSetting":{"shape":"S41"}}},"output":{"type":"structure","members":{"slotId":{},"slotName":{},"description":{},"slotTypeId":{},"valueElicitationSetting":{"shape":"S3p"},"obfuscationSetting":{"shape":"S3z"},"botId":{},"botVersion":{},"localeId":{},"intentId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"},"multipleValuesSetting":{"shape":"S41"}}}},"UpdateSlotType":{"http":{"method":"PUT","requestUri":"/bots/{botId}/botversions/{botVersion}/botlocales/{localeId}/slottypes/{slotTypeId}/","responseCode":202},"input":{"type":"structure","required":["slotTypeId","slotTypeName","valueSelectionSetting","botId","botVersion","localeId"],"members":{"slotTypeId":{"location":"uri","locationName":"slotTypeId"},"slotTypeName":{},"description":{},"slotTypeValues":{"shape":"S44"},"valueSelectionSetting":{"shape":"S49"},"parentSlotTypeSignature":{},"botId":{"location":"uri","locationName":"botId"},"botVersion":{"location":"uri","locationName":"botVersion"},"localeId":{"location":"uri","locationName":"localeId"}}},"output":{"type":"structure","members":{"slotTypeId":{},"slotTypeName":{},"description":{},"slotTypeValues":{"shape":"S44"},"valueSelectionSetting":{"shape":"S49"},"parentSlotTypeSignature":{},"botId":{},"botVersion":{},"localeId":{},"creationDateTime":{"type":"timestamp"},"lastUpdatedDateTime":{"type":"timestamp"}}}}},"shapes":{"Sc":{"type":"structure","required":["childDirected"],"members":{"childDirected":{"type":"boolean"}}},"Sf":{"type":"map","key":{},"value":{}},"Sm":{"type":"map","key":{},"value":{"type":"structure","required":["enabled"],"members":{"enabled":{"type":"boolean"},"codeHookSpecification":{"type":"structure","required":["lambdaCodeHook"],"members":{"lambdaCodeHook":{"type":"structure","required":["lambdaARN","codeHookInterfaceVersion"],"members":{"lambdaARN":{},"codeHookInterfaceVersion":{}}}}}}}},"St":{"type":"structure","members":{"textLogSettings":{"type":"list","member":{"type":"structure","required":["enabled","destination"],"members":{"enabled":{"type":"boolean"},"destination":{"type":"structure","required":["cloudWatch"],"members":{"cloudWatch":{"type":"structure","required":["cloudWatchLogGroupArn","logPrefix"],"members":{"cloudWatchLogGroupArn":{},"logPrefix":{}}}}}}}},"audioLogSettings":{"type":"list","member":{"type":"structure","required":["enabled","destination"],"members":{"enabled":{"type":"boolean"},"destination":{"type":"structure","required":["s3Bucket"],"members":{"s3Bucket":{"type":"structure","required":["s3BucketArn","logPrefix"],"members":{"kmsKeyArn":{},"s3BucketArn":{},"logPrefix":{}}}}}}}}}},"S16":{"type":"structure","required":["detectSentiment"],"members":{"detectSentiment":{"type":"boolean"}}},"S1c":{"type":"structure","required":["voiceId"],"members":{"voiceId":{}}},"S1h":{"type":"map","key":{},"value":{"type":"structure","required":["sourceBotVersion"],"members":{"sourceBotVersion":{}}}},"S1m":{"type":"structure","members":{"botExportSpecification":{"type":"structure","required":["botId","botVersion"],"members":{"botId":{},"botVersion":{}}},"botLocaleExportSpecification":{"type":"structure","required":["botId","botVersion","localeId"],"members":{"botId":{},"botVersion":{},"localeId":{}}}}},"S1q":{"type":"string","sensitive":true},"S1v":{"type":"list","member":{"type":"structure","required":["utterance"],"members":{"utterance":{}}}},"S1y":{"type":"structure","required":["enabled"],"members":{"enabled":{"type":"boolean"}}},"S1z":{"type":"structure","required":["enabled"],"members":{"enabled":{"type":"boolean"},"postFulfillmentStatusSpecification":{"type":"structure","members":{"successResponse":{"shape":"S21"},"failureResponse":{"shape":"S21"},"timeoutResponse":{"shape":"S21"}}},"fulfillmentUpdatesSpecification":{"type":"structure","required":["active"],"members":{"active":{"type":"boolean"},"startResponse":{"type":"structure","required":["delayInSeconds","messageGroups"],"members":{"delayInSeconds":{"type":"integer"},"messageGroups":{"shape":"S22"},"allowInterrupt":{"type":"boolean"}}},"updateResponse":{"type":"structure","required":["frequencyInSeconds","messageGroups"],"members":{"frequencyInSeconds":{"type":"integer"},"messageGroups":{"shape":"S22"},"allowInterrupt":{"type":"boolean"}}},"timeoutInSeconds":{"type":"integer"}}}}},"S21":{"type":"structure","required":["messageGroups"],"members":{"messageGroups":{"shape":"S22"},"allowInterrupt":{"type":"boolean"}}},"S22":{"type":"list","member":{"type":"structure","required":["message"],"members":{"message":{"shape":"S24"},"variations":{"type":"list","member":{"shape":"S24"}}}}},"S24":{"type":"structure","members":{"plainTextMessage":{"type":"structure","required":["value"],"members":{"value":{}}},"customPayload":{"type":"structure","required":["value"],"members":{"value":{}}},"ssmlMessage":{"type":"structure","required":["value"],"members":{"value":{}}},"imageResponseCard":{"type":"structure","required":["title"],"members":{"title":{},"subtitle":{},"imageUrl":{},"buttons":{"type":"list","member":{"type":"structure","required":["text","value"],"members":{"text":{},"value":{}}}}}}}},"S2q":{"type":"structure","required":["promptSpecification","declinationResponse"],"members":{"promptSpecification":{"shape":"S2r"},"declinationResponse":{"shape":"S21"},"active":{"type":"boolean"}}},"S2r":{"type":"structure","required":["messageGroups","maxRetries"],"members":{"messageGroups":{"shape":"S22"},"maxRetries":{"type":"integer"},"allowInterrupt":{"type":"boolean"}}},"S2t":{"type":"structure","required":["closingResponse"],"members":{"closingResponse":{"shape":"S21"},"active":{"type":"boolean"}}},"S2u":{"type":"list","member":{"type":"structure","required":["name"],"members":{"name":{}}}},"S2w":{"type":"list","member":{"type":"structure","required":["name","timeToLiveInSeconds","turnsToLive"],"members":{"name":{},"timeToLiveInSeconds":{"type":"integer"},"turnsToLive":{"type":"integer"}}}},"S30":{"type":"structure","required":["kendraIndex"],"members":{"kendraIndex":{},"queryFilterStringEnabled":{"type":"boolean"},"queryFilterString":{}}},"S3p":{"type":"structure","required":["slotConstraint"],"members":{"defaultValueSpecification":{"type":"structure","required":["defaultValueList"],"members":{"defaultValueList":{"type":"list","member":{"type":"structure","required":["defaultValue"],"members":{"defaultValue":{}}}}}},"slotConstraint":{},"promptSpecification":{"shape":"S2r"},"sampleUtterances":{"shape":"S1v"},"waitAndContinueSpecification":{"type":"structure","required":["waitingResponse","continueResponse"],"members":{"waitingResponse":{"shape":"S21"},"continueResponse":{"shape":"S21"},"stillWaitingResponse":{"type":"structure","required":["messageGroups","frequencyInSeconds","timeoutInSeconds"],"members":{"messageGroups":{"shape":"S22"},"frequencyInSeconds":{"type":"integer"},"timeoutInSeconds":{"type":"integer"},"allowInterrupt":{"type":"boolean"}}},"active":{"type":"boolean"}}}}},"S3z":{"type":"structure","required":["obfuscationSettingType"],"members":{"obfuscationSettingType":{}}},"S41":{"type":"structure","members":{"allowMultipleValues":{"type":"boolean"}}},"S44":{"type":"list","member":{"type":"structure","members":{"sampleValue":{"shape":"S46"},"synonyms":{"type":"list","member":{"shape":"S46"}}}}},"S46":{"type":"structure","required":["value"],"members":{"value":{}}},"S49":{"type":"structure","required":["resolutionStrategy"],"members":{"resolutionStrategy":{},"regexFilter":{"type":"structure","required":["pattern"],"members":{"pattern":{}}}}},"S5f":{"type":"list","member":{}},"S5q":{"type":"structure","members":{"botImportSpecification":{"type":"structure","required":["botName","roleArn","dataPrivacy"],"members":{"botName":{},"roleArn":{},"dataPrivacy":{"shape":"Sc"},"idleSessionTTLInSeconds":{"type":"integer"},"botTags":{"shape":"Sf"},"testBotAliasTags":{"shape":"Sf"}}},"botLocaleImportSpecification":{"type":"structure","required":["botId","botVersion","localeId"],"members":{"botId":{},"botVersion":{},"localeId":{},"nluIntentConfidenceThreshold":{"type":"double"},"voiceSettings":{"shape":"S1c"}}}}},"S5x":{"type":"list","member":{"type":"structure","required":["priority","slotId"],"members":{"priority":{"type":"integer"},"slotId":{}}}},"S67":{"type":"structure","required":["relativeAggregationDuration"],"members":{"relativeAggregationDuration":{"type":"structure","required":["timeDimension","timeValue"],"members":{"timeDimension":{},"timeValue":{"type":"integer"}}}}},"S6h":{"type":"list","member":{}}}}
54040
54068
 
54041
54069
  /***/ }),
54042
- /* 988 */
54070
+ /* 987 */
54043
54071
  /***/ (function(module, exports) {
54044
54072
 
54045
54073
  module.exports = {"pagination":{"ListAggregatedUtterances":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListBotAliases":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListBotLocales":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListBotVersions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListBots":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListBuiltInIntents":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListBuiltInSlotTypes":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListExports":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListImports":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListIntents":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListSlotTypes":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListSlots":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"}}}
54046
54074
 
54047
54075
  /***/ }),
54048
- /* 989 */
54076
+ /* 988 */
54049
54077
  /***/ (function(module, exports) {
54050
54078
 
54051
54079
  module.exports = {"version":2,"waiters":{"BotAvailable":{"delay":10,"operation":"DescribeBot","maxAttempts":35,"description":"Wait until a bot is available","acceptors":[{"expected":"Available","matcher":"path","state":"success","argument":"botStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"botStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"botStatus"},{"expected":"Inactive","matcher":"path","state":"failure","argument":"botStatus"}]},"BotAliasAvailable":{"delay":10,"operation":"DescribeBotAlias","maxAttempts":35,"description":"Wait until a bot alias is available","acceptors":[{"expected":"Available","matcher":"path","state":"success","argument":"botAliasStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"botAliasStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"botAliasStatus"}]},"BotExportCompleted":{"delay":10,"operation":"DescribeExport","maxAttempts":35,"description":"Wait until a bot has been exported","acceptors":[{"expected":"Completed","matcher":"path","state":"success","argument":"exportStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"exportStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"exportStatus"}]},"BotImportCompleted":{"delay":10,"operation":"DescribeImport","maxAttempts":35,"description":"Wait until a bot has been imported","acceptors":[{"expected":"Completed","matcher":"path","state":"success","argument":"importStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"importStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"importStatus"}]},"BotLocaleBuilt":{"delay":10,"operation":"DescribeBotLocale","maxAttempts":35,"description":"Wait until a bot locale is built","acceptors":[{"expected":"Built","matcher":"path","state":"success","argument":"botLocaleStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"botLocaleStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"botLocaleStatus"},{"expected":"NotBuilt","matcher":"path","state":"failure","argument":"botLocaleStatus"}]},"BotLocaleExpressTestingAvailable":{"delay":10,"operation":"DescribeBotLocale","maxAttempts":35,"description":"Wait until a bot locale build is ready for express testing","acceptors":[{"expected":"Built","matcher":"path","state":"success","argument":"botLocaleStatus"},{"expected":"ReadyExpressTesting","matcher":"path","state":"success","argument":"botLocaleStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"botLocaleStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"botLocaleStatus"},{"expected":"NotBuilt","matcher":"path","state":"failure","argument":"botLocaleStatus"}]},"BotVersionAvailable":{"delay":10,"operation":"DescribeBotVersion","maxAttempts":35,"description":"Wait until a bot version is available","acceptors":[{"expected":"Available","matcher":"path","state":"success","argument":"botStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"botStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"botStatus"},{"state":"retry","matcher":"status","expected":404}]},"BotLocaleCreated":{"delay":10,"operation":"DescribeBotLocale","maxAttempts":35,"description":"Wait unit a bot locale is created","acceptors":[{"expected":"Built","matcher":"path","state":"success","argument":"botLocaleStatus"},{"expected":"ReadyExpressTesting","matcher":"path","state":"success","argument":"botLocaleStatus"},{"expected":"NotBuilt","matcher":"path","state":"success","argument":"botLocaleStatus"},{"expected":"Deleting","matcher":"path","state":"failure","argument":"botLocaleStatus"},{"expected":"Failed","matcher":"path","state":"failure","argument":"botLocaleStatus"}]}}}
54052
54080
 
54053
54081
  /***/ }),
54054
- /* 990 */
54082
+ /* 989 */
54055
54083
  /***/ (function(module, exports, __webpack_require__) {
54056
54084
 
54057
54085
  __webpack_require__(2);
@@ -54063,8 +54091,8 @@ return /******/ (function(modules) { // webpackBootstrap
54063
54091
  AWS.LexRuntimeV2 = Service.defineService('lexruntimev2', ['2020-08-07']);
54064
54092
  Object.defineProperty(apiLoader.services['lexruntimev2'], '2020-08-07', {
54065
54093
  get: function get() {
54066
- var model = __webpack_require__(991);
54067
- model.paginators = __webpack_require__(992).pagination;
54094
+ var model = __webpack_require__(990);
54095
+ model.paginators = __webpack_require__(991).pagination;
54068
54096
  return model;
54069
54097
  },
54070
54098
  enumerable: true,
@@ -54075,19 +54103,19 @@ return /******/ (function(modules) { // webpackBootstrap
54075
54103
 
54076
54104
 
54077
54105
  /***/ }),
54078
- /* 991 */
54106
+ /* 990 */
54079
54107
  /***/ (function(module, exports) {
54080
54108
 
54081
54109
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-08-07","endpointPrefix":"runtime-v2-lex","jsonVersion":"1.1","protocol":"rest-json","protocolSettings":{"h2":"eventstream"},"serviceAbbreviation":"Lex Runtime V2","serviceFullName":"Amazon Lex Runtime V2","serviceId":"Lex Runtime V2","signatureVersion":"v4","signingName":"lex","uid":"runtime.lex.v2-2020-08-07"},"operations":{"DeleteSession":{"http":{"method":"DELETE","requestUri":"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}"},"input":{"type":"structure","required":["botId","botAliasId","sessionId","localeId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botAliasId":{"location":"uri","locationName":"botAliasId"},"localeId":{"location":"uri","locationName":"localeId"},"sessionId":{"location":"uri","locationName":"sessionId"}}},"output":{"type":"structure","members":{"botId":{},"botAliasId":{},"localeId":{},"sessionId":{}}}},"GetSession":{"http":{"method":"GET","requestUri":"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}"},"input":{"type":"structure","required":["botId","botAliasId","localeId","sessionId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botAliasId":{"location":"uri","locationName":"botAliasId"},"localeId":{"location":"uri","locationName":"localeId"},"sessionId":{"location":"uri","locationName":"sessionId"}}},"output":{"type":"structure","members":{"sessionId":{},"messages":{"shape":"Sa"},"interpretations":{"shape":"Sl"},"sessionState":{"shape":"S11"}}}},"PutSession":{"http":{"requestUri":"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}"},"input":{"type":"structure","required":["botId","botAliasId","localeId","sessionState","sessionId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botAliasId":{"location":"uri","locationName":"botAliasId"},"localeId":{"location":"uri","locationName":"localeId"},"sessionId":{"location":"uri","locationName":"sessionId"},"messages":{"shape":"Sa"},"sessionState":{"shape":"S11"},"requestAttributes":{"shape":"S1c"},"responseContentType":{"location":"header","locationName":"ResponseContentType"}}},"output":{"type":"structure","members":{"contentType":{"location":"header","locationName":"Content-Type"},"messages":{"location":"header","locationName":"x-amz-lex-messages"},"sessionState":{"location":"header","locationName":"x-amz-lex-session-state"},"requestAttributes":{"location":"header","locationName":"x-amz-lex-request-attributes"},"sessionId":{"location":"header","locationName":"x-amz-lex-session-id"},"audioStream":{"shape":"S1g"}},"payload":"audioStream"}},"RecognizeText":{"http":{"requestUri":"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/text"},"input":{"type":"structure","required":["botId","botAliasId","localeId","text","sessionId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botAliasId":{"location":"uri","locationName":"botAliasId"},"localeId":{"location":"uri","locationName":"localeId"},"sessionId":{"location":"uri","locationName":"sessionId"},"text":{"shape":"Sc"},"sessionState":{"shape":"S11"},"requestAttributes":{"shape":"S1c"}}},"output":{"type":"structure","members":{"messages":{"shape":"Sa"},"sessionState":{"shape":"S11"},"interpretations":{"shape":"Sl"},"requestAttributes":{"shape":"S1c"},"sessionId":{}}}},"RecognizeUtterance":{"http":{"requestUri":"/bots/{botId}/botAliases/{botAliasId}/botLocales/{localeId}/sessions/{sessionId}/utterance"},"input":{"type":"structure","required":["botId","botAliasId","localeId","requestContentType","sessionId"],"members":{"botId":{"location":"uri","locationName":"botId"},"botAliasId":{"location":"uri","locationName":"botAliasId"},"localeId":{"location":"uri","locationName":"localeId"},"sessionId":{"location":"uri","locationName":"sessionId"},"sessionState":{"shape":"S1k","location":"header","locationName":"x-amz-lex-session-state"},"requestAttributes":{"shape":"S1k","location":"header","locationName":"x-amz-lex-request-attributes"},"requestContentType":{"location":"header","locationName":"Content-Type"},"responseContentType":{"location":"header","locationName":"Response-Content-Type"},"inputStream":{"shape":"S1g"}},"payload":"inputStream"},"output":{"type":"structure","members":{"inputMode":{"location":"header","locationName":"x-amz-lex-input-mode"},"contentType":{"location":"header","locationName":"Content-Type"},"messages":{"location":"header","locationName":"x-amz-lex-messages"},"interpretations":{"location":"header","locationName":"x-amz-lex-interpretations"},"sessionState":{"location":"header","locationName":"x-amz-lex-session-state"},"requestAttributes":{"location":"header","locationName":"x-amz-lex-request-attributes"},"sessionId":{"location":"header","locationName":"x-amz-lex-session-id"},"inputTranscript":{"location":"header","locationName":"x-amz-lex-input-transcript"},"audioStream":{"shape":"S1g"}},"payload":"audioStream"},"authtype":"v4-unsigned-body"}},"shapes":{"Sa":{"type":"list","member":{"type":"structure","required":["contentType"],"members":{"content":{"shape":"Sc"},"contentType":{},"imageResponseCard":{"type":"structure","required":["title"],"members":{"title":{},"subtitle":{},"imageUrl":{},"buttons":{"type":"list","member":{"type":"structure","required":["text","value"],"members":{"text":{},"value":{}}}}}}}}},"Sc":{"type":"string","sensitive":true},"Sl":{"type":"list","member":{"type":"structure","members":{"nluConfidence":{"type":"structure","members":{"score":{"type":"double"}}},"sentimentResponse":{"type":"structure","members":{"sentiment":{},"sentimentScore":{"type":"structure","members":{"positive":{"type":"double"},"negative":{"type":"double"},"neutral":{"type":"double"},"mixed":{"type":"double"}}}}},"intent":{"shape":"Ss"}}}},"Ss":{"type":"structure","required":["name"],"members":{"name":{},"slots":{"type":"map","key":{},"value":{"shape":"Su"}},"state":{},"confirmationState":{}}},"Su":{"type":"structure","members":{"value":{"type":"structure","required":["interpretedValue"],"members":{"originalValue":{},"interpretedValue":{},"resolvedValues":{"type":"list","member":{}}}},"shape":{},"values":{"type":"list","member":{"shape":"Su"}}}},"S11":{"type":"structure","members":{"dialogAction":{"type":"structure","required":["type"],"members":{"type":{},"slotToElicit":{}}},"intent":{"shape":"Ss"},"activeContexts":{"type":"list","member":{"type":"structure","required":["name","timeToLive","contextAttributes"],"members":{"name":{},"timeToLive":{"type":"structure","required":["timeToLiveInSeconds","turnsToLive"],"members":{"timeToLiveInSeconds":{"type":"integer"},"turnsToLive":{"type":"integer"}}},"contextAttributes":{"type":"map","key":{},"value":{"shape":"Sc"}}}}},"sessionAttributes":{"shape":"S1c"},"originatingRequestId":{}}},"S1c":{"type":"map","key":{},"value":{}},"S1g":{"type":"blob","streaming":true},"S1k":{"type":"string","sensitive":true}}}
54082
54110
 
54083
54111
  /***/ }),
54084
- /* 992 */
54112
+ /* 991 */
54085
54113
  /***/ (function(module, exports) {
54086
54114
 
54087
54115
  module.exports = {"pagination":{}}
54088
54116
 
54089
54117
  /***/ }),
54090
- /* 993 */
54118
+ /* 992 */
54091
54119
  /***/ (function(module, exports, __webpack_require__) {
54092
54120
 
54093
54121
  __webpack_require__(2);
@@ -54099,8 +54127,8 @@ return /******/ (function(modules) { // webpackBootstrap
54099
54127
  AWS.Fis = Service.defineService('fis', ['2020-12-01']);
54100
54128
  Object.defineProperty(apiLoader.services['fis'], '2020-12-01', {
54101
54129
  get: function get() {
54102
- var model = __webpack_require__(994);
54103
- model.paginators = __webpack_require__(995).pagination;
54130
+ var model = __webpack_require__(993);
54131
+ model.paginators = __webpack_require__(994).pagination;
54104
54132
  return model;
54105
54133
  },
54106
54134
  enumerable: true,
@@ -54111,19 +54139,19 @@ return /******/ (function(modules) { // webpackBootstrap
54111
54139
 
54112
54140
 
54113
54141
  /***/ }),
54114
- /* 994 */
54142
+ /* 993 */
54115
54143
  /***/ (function(module, exports) {
54116
54144
 
54117
54145
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-12-01","endpointPrefix":"fis","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"FIS","serviceFullName":"AWS Fault Injection Simulator","serviceId":"fis","signatureVersion":"v4","signingName":"fis","uid":"fis-2020-12-01"},"operations":{"CreateExperimentTemplate":{"http":{"requestUri":"/experimentTemplates","responseCode":200},"input":{"type":"structure","required":["clientToken","description","stopConditions","actions","roleArn"],"members":{"clientToken":{"idempotencyToken":true},"description":{},"stopConditions":{"type":"list","member":{"type":"structure","required":["source"],"members":{"source":{},"value":{}}}},"targets":{"type":"map","key":{},"value":{"type":"structure","required":["resourceType","selectionMode"],"members":{"resourceType":{},"resourceArns":{"shape":"Sc"},"resourceTags":{"shape":"Se"},"filters":{"shape":"Sh"},"selectionMode":{}}}},"actions":{"type":"map","key":{},"value":{"type":"structure","required":["actionId"],"members":{"actionId":{},"description":{},"parameters":{"shape":"Ss"},"targets":{"shape":"Sv"},"startAfter":{"shape":"Sx"}}}},"roleArn":{},"tags":{"shape":"Se"}}},"output":{"type":"structure","members":{"experimentTemplate":{"shape":"S11"}}}},"DeleteExperimentTemplate":{"http":{"method":"DELETE","requestUri":"/experimentTemplates/{id}","responseCode":200},"input":{"type":"structure","required":["id"],"members":{"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"experimentTemplate":{"shape":"S11"}}}},"GetAction":{"http":{"method":"GET","requestUri":"/actions/{id}","responseCode":200},"input":{"type":"structure","required":["id"],"members":{"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"action":{"type":"structure","members":{"id":{},"description":{},"parameters":{"type":"map","key":{},"value":{"type":"structure","members":{"description":{},"required":{"type":"boolean"}}}},"targets":{"shape":"S1o"},"tags":{"shape":"Se"}}}}}},"GetExperiment":{"http":{"method":"GET","requestUri":"/experiments/{id}","responseCode":200},"input":{"type":"structure","required":["id"],"members":{"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"experiment":{"shape":"S1v"}}}},"GetExperimentTemplate":{"http":{"method":"GET","requestUri":"/experimentTemplates/{id}","responseCode":200},"input":{"type":"structure","required":["id"],"members":{"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"experimentTemplate":{"shape":"S11"}}}},"ListActions":{"http":{"method":"GET","requestUri":"/actions","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"actions":{"type":"list","member":{"type":"structure","members":{"id":{},"description":{},"targets":{"shape":"S1o"},"tags":{"shape":"Se"}}}},"nextToken":{}}}},"ListExperimentTemplates":{"http":{"method":"GET","requestUri":"/experimentTemplates","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"experimentTemplates":{"type":"list","member":{"type":"structure","members":{"id":{},"description":{},"creationTime":{"type":"timestamp"},"lastUpdateTime":{"type":"timestamp"},"tags":{"shape":"Se"}}}},"nextToken":{}}}},"ListExperiments":{"http":{"method":"GET","requestUri":"/experiments","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"experiments":{"type":"list","member":{"type":"structure","members":{"id":{},"experimentTemplateId":{},"state":{"shape":"S1w"},"creationTime":{"type":"timestamp"},"tags":{"shape":"Se"}}}},"nextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"tags":{"shape":"Se"}}}},"StartExperiment":{"http":{"requestUri":"/experiments","responseCode":200},"input":{"type":"structure","required":["clientToken","experimentTemplateId"],"members":{"clientToken":{"idempotencyToken":true},"experimentTemplateId":{},"tags":{"shape":"Se"}}},"output":{"type":"structure","members":{"experiment":{"shape":"S1v"}}}},"StopExperiment":{"http":{"method":"DELETE","requestUri":"/experiments/{id}","responseCode":200},"input":{"type":"structure","required":["id"],"members":{"id":{"location":"uri","locationName":"id"}}},"output":{"type":"structure","members":{"experiment":{"shape":"S1v"}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"Se"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateExperimentTemplate":{"http":{"method":"PATCH","requestUri":"/experimentTemplates/{id}","responseCode":200},"input":{"type":"structure","required":["id"],"members":{"id":{"location":"uri","locationName":"id"},"description":{},"stopConditions":{"type":"list","member":{"type":"structure","required":["source"],"members":{"source":{},"value":{}}}},"targets":{"type":"map","key":{},"value":{"type":"structure","required":["resourceType","selectionMode"],"members":{"resourceType":{},"resourceArns":{"shape":"Sc"},"resourceTags":{"shape":"Se"},"filters":{"shape":"Sh"},"selectionMode":{}}}},"actions":{"type":"map","key":{},"value":{"type":"structure","members":{"actionId":{},"description":{},"parameters":{"shape":"Ss"},"targets":{"shape":"Sv"},"startAfter":{"shape":"Sx"}}}},"roleArn":{}}},"output":{"type":"structure","members":{"experimentTemplate":{"shape":"S11"}}}}},"shapes":{"Sc":{"type":"list","member":{}},"Se":{"type":"map","key":{},"value":{}},"Sh":{"type":"list","member":{"type":"structure","required":["path","values"],"members":{"path":{},"values":{"shape":"Sk"}}}},"Sk":{"type":"list","member":{}},"Ss":{"type":"map","key":{},"value":{}},"Sv":{"type":"map","key":{},"value":{}},"Sx":{"type":"list","member":{}},"S11":{"type":"structure","members":{"id":{},"description":{},"targets":{"type":"map","key":{},"value":{"type":"structure","members":{"resourceType":{},"resourceArns":{"shape":"Sc"},"resourceTags":{"shape":"Se"},"filters":{"type":"list","member":{"type":"structure","members":{"path":{},"values":{"shape":"Sk"}}}},"selectionMode":{}}}},"actions":{"type":"map","key":{},"value":{"type":"structure","members":{"actionId":{},"description":{},"parameters":{"shape":"Ss"},"targets":{"shape":"Sv"},"startAfter":{"shape":"Sx"}}}},"stopConditions":{"type":"list","member":{"type":"structure","members":{"source":{},"value":{}}}},"creationTime":{"type":"timestamp"},"lastUpdateTime":{"type":"timestamp"},"roleArn":{},"tags":{"shape":"Se"}}},"S1o":{"type":"map","key":{},"value":{"type":"structure","members":{"resourceType":{}}}},"S1v":{"type":"structure","members":{"id":{},"experimentTemplateId":{},"roleArn":{},"state":{"shape":"S1w"},"targets":{"type":"map","key":{},"value":{"type":"structure","members":{"resourceType":{},"resourceArns":{"shape":"Sc"},"resourceTags":{"shape":"Se"},"filters":{"type":"list","member":{"type":"structure","members":{"path":{},"values":{"type":"list","member":{}}}}},"selectionMode":{}}}},"actions":{"type":"map","key":{},"value":{"type":"structure","members":{"actionId":{},"description":{},"parameters":{"type":"map","key":{},"value":{}},"targets":{"type":"map","key":{},"value":{}},"startAfter":{"type":"list","member":{}},"state":{"type":"structure","members":{"status":{},"reason":{}}}}}},"stopConditions":{"type":"list","member":{"type":"structure","members":{"source":{},"value":{}}}},"creationTime":{"type":"timestamp"},"startTime":{"type":"timestamp"},"endTime":{"type":"timestamp"},"tags":{"shape":"Se"}}},"S1w":{"type":"structure","members":{"status":{},"reason":{}}}}}
54118
54146
 
54119
54147
  /***/ }),
54120
- /* 995 */
54148
+ /* 994 */
54121
54149
  /***/ (function(module, exports) {
54122
54150
 
54123
54151
  module.exports = {"pagination":{"ListActions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListExperimentTemplates":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"},"ListExperiments":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults"}}}
54124
54152
 
54125
54153
  /***/ }),
54126
- /* 996 */
54154
+ /* 995 */
54127
54155
  /***/ (function(module, exports, __webpack_require__) {
54128
54156
 
54129
54157
  __webpack_require__(2);
@@ -54133,11 +54161,10 @@ return /******/ (function(modules) { // webpackBootstrap
54133
54161
 
54134
54162
  apiLoader.services['lookoutmetrics'] = {};
54135
54163
  AWS.LookoutMetrics = Service.defineService('lookoutmetrics', ['2017-07-25']);
54136
- __webpack_require__(997);
54137
54164
  Object.defineProperty(apiLoader.services['lookoutmetrics'], '2017-07-25', {
54138
54165
  get: function get() {
54139
- var model = __webpack_require__(998);
54140
- model.paginators = __webpack_require__(999).pagination;
54166
+ var model = __webpack_require__(996);
54167
+ model.paginators = __webpack_require__(997).pagination;
54141
54168
  return model;
54142
54169
  },
54143
54170
  enumerable: true,
@@ -54148,47 +54175,19 @@ return /******/ (function(modules) { // webpackBootstrap
54148
54175
 
54149
54176
 
54150
54177
  /***/ }),
54151
- /* 997 */
54152
- /***/ (function(module, exports, __webpack_require__) {
54153
-
54154
- var AWS = __webpack_require__(4);
54155
-
54156
- AWS.util.update(AWS.LookoutMetrics.prototype, {
54157
- /**
54158
- * @api private
54159
- */
54160
- setupRequestListeners: function setupRequestListeners(request) {
54161
- request.addListener('build', this.modifyContentType);
54162
- },
54163
-
54164
- /**
54165
- * Normally rest-json services require `Content-Type` header to be 'application/json',
54166
- * However lookout metrics services requires the header to be 'application/x-amz-json-1.1'.
54167
- *
54168
- * @api private
54169
- */
54170
- modifyContentType: function modifyContentType(request) {
54171
- if (request.httpRequest.headers['Content-Type'] === 'application/json') {
54172
- request.httpRequest.headers['Content-Type'] = 'application/x-amz-json-1.1';
54173
- }
54174
- }
54175
- });
54176
-
54177
-
54178
- /***/ }),
54179
- /* 998 */
54178
+ /* 996 */
54180
54179
  /***/ (function(module, exports) {
54181
54180
 
54182
54181
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2017-07-25","endpointPrefix":"lookoutmetrics","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"LookoutMetrics","serviceFullName":"Amazon Lookout for Metrics","serviceId":"LookoutMetrics","signatureVersion":"v4","signingName":"lookoutmetrics","uid":"lookoutmetrics-2017-07-25"},"operations":{"ActivateAnomalyDetector":{"http":{"requestUri":"/ActivateAnomalyDetector"},"input":{"type":"structure","required":["AnomalyDetectorArn"],"members":{"AnomalyDetectorArn":{}}},"output":{"type":"structure","members":{}}},"BackTestAnomalyDetector":{"http":{"requestUri":"/BackTestAnomalyDetector"},"input":{"type":"structure","required":["AnomalyDetectorArn"],"members":{"AnomalyDetectorArn":{}}},"output":{"type":"structure","members":{}}},"CreateAlert":{"http":{"requestUri":"/CreateAlert"},"input":{"type":"structure","required":["AlertName","AlertSensitivityThreshold","AnomalyDetectorArn","Action"],"members":{"AlertName":{},"AlertSensitivityThreshold":{"type":"integer"},"AlertDescription":{},"AnomalyDetectorArn":{},"Action":{"shape":"Sa"},"Tags":{"shape":"Sd"}}},"output":{"type":"structure","members":{"AlertArn":{}}}},"CreateAnomalyDetector":{"http":{"requestUri":"/CreateAnomalyDetector"},"input":{"type":"structure","required":["AnomalyDetectorName","AnomalyDetectorConfig"],"members":{"AnomalyDetectorName":{},"AnomalyDetectorDescription":{},"AnomalyDetectorConfig":{"shape":"Sk"},"KmsKeyArn":{},"Tags":{"shape":"Sd"}}},"output":{"type":"structure","members":{"AnomalyDetectorArn":{}}}},"CreateMetricSet":{"http":{"requestUri":"/CreateMetricSet"},"input":{"type":"structure","required":["AnomalyDetectorArn","MetricSetName","MetricList","MetricSource"],"members":{"AnomalyDetectorArn":{},"MetricSetName":{},"MetricSetDescription":{},"MetricList":{"shape":"Sr"},"Offset":{"type":"integer"},"TimestampColumn":{"shape":"Sx"},"DimensionList":{"shape":"Sz"},"MetricSetFrequency":{},"MetricSource":{"shape":"S10"},"Timezone":{},"Tags":{"shape":"Sd"}}},"output":{"type":"structure","members":{"MetricSetArn":{}}}},"DeleteAlert":{"http":{"requestUri":"/DeleteAlert"},"input":{"type":"structure","required":["AlertArn"],"members":{"AlertArn":{}}},"output":{"type":"structure","members":{}}},"DeleteAnomalyDetector":{"http":{"requestUri":"/DeleteAnomalyDetector"},"input":{"type":"structure","required":["AnomalyDetectorArn"],"members":{"AnomalyDetectorArn":{}}},"output":{"type":"structure","members":{}}},"DescribeAlert":{"http":{"requestUri":"/DescribeAlert"},"input":{"type":"structure","required":["AlertArn"],"members":{"AlertArn":{}}},"output":{"type":"structure","members":{"Alert":{"type":"structure","members":{"Action":{"shape":"Sa"},"AlertDescription":{},"AlertArn":{},"AnomalyDetectorArn":{},"AlertName":{},"AlertSensitivityThreshold":{"type":"integer"},"AlertType":{},"AlertStatus":{},"LastModificationTime":{"type":"timestamp"},"CreationTime":{"type":"timestamp"}}}}}},"DescribeAnomalyDetectionExecutions":{"http":{"requestUri":"/DescribeAnomalyDetectionExecutions"},"input":{"type":"structure","required":["AnomalyDetectorArn"],"members":{"AnomalyDetectorArn":{},"Timestamp":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"ExecutionList":{"type":"list","member":{"type":"structure","members":{"Timestamp":{},"Status":{},"FailureReason":{}}}},"NextToken":{}}}},"DescribeAnomalyDetector":{"http":{"requestUri":"/DescribeAnomalyDetector"},"input":{"type":"structure","required":["AnomalyDetectorArn"],"members":{"AnomalyDetectorArn":{}}},"output":{"type":"structure","members":{"AnomalyDetectorArn":{},"AnomalyDetectorName":{},"AnomalyDetectorDescription":{},"AnomalyDetectorConfig":{"type":"structure","members":{"AnomalyDetectorFrequency":{}}},"CreationTime":{"type":"timestamp"},"LastModificationTime":{"type":"timestamp"},"Status":{},"FailureReason":{},"KmsKeyArn":{}}}},"DescribeMetricSet":{"http":{"requestUri":"/DescribeMetricSet"},"input":{"type":"structure","required":["MetricSetArn"],"members":{"MetricSetArn":{}}},"output":{"type":"structure","members":{"MetricSetArn":{},"AnomalyDetectorArn":{},"MetricSetName":{},"MetricSetDescription":{},"CreationTime":{"type":"timestamp"},"LastModificationTime":{"type":"timestamp"},"Offset":{"type":"integer"},"MetricList":{"shape":"Sr"},"TimestampColumn":{"shape":"Sx"},"DimensionList":{"shape":"Sz"},"MetricSetFrequency":{},"Timezone":{},"MetricSource":{"shape":"S10"}}}},"GetAnomalyGroup":{"http":{"requestUri":"/GetAnomalyGroup"},"input":{"type":"structure","required":["AnomalyGroupId","AnomalyDetectorArn"],"members":{"AnomalyGroupId":{},"AnomalyDetectorArn":{}}},"output":{"type":"structure","members":{"AnomalyGroup":{"type":"structure","members":{"StartTime":{},"EndTime":{},"AnomalyGroupId":{},"AnomalyGroupScore":{"type":"double"},"PrimaryMetricName":{},"MetricLevelImpactList":{"type":"list","member":{"type":"structure","members":{"MetricName":{},"NumTimeSeries":{"type":"integer"},"ContributionMatrix":{"type":"structure","members":{"DimensionContributionList":{"type":"list","member":{"type":"structure","members":{"DimensionName":{},"DimensionValueContributionList":{"type":"list","member":{"type":"structure","members":{"DimensionValue":{},"ContributionScore":{"type":"double"}}}}}}}}}}}}}}}}},"GetFeedback":{"http":{"requestUri":"/GetFeedback"},"input":{"type":"structure","required":["AnomalyDetectorArn","AnomalyGroupTimeSeriesFeedback"],"members":{"AnomalyDetectorArn":{},"AnomalyGroupTimeSeriesFeedback":{"type":"structure","required":["AnomalyGroupId"],"members":{"AnomalyGroupId":{},"TimeSeriesId":{}}},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"AnomalyGroupTimeSeriesFeedback":{"type":"list","member":{"type":"structure","members":{"TimeSeriesId":{},"IsAnomaly":{"type":"boolean"}}}},"NextToken":{}}}},"GetSampleData":{"http":{"requestUri":"/GetSampleData"},"input":{"type":"structure","members":{"S3SourceConfig":{"type":"structure","required":["RoleArn","FileFormatDescriptor"],"members":{"RoleArn":{},"TemplatedPathList":{"shape":"S12"},"HistoricalDataPathList":{"shape":"S14"},"FileFormatDescriptor":{"shape":"S16"}}}}},"output":{"type":"structure","members":{"HeaderValues":{"type":"list","member":{}},"SampleRows":{"type":"list","member":{"type":"list","member":{}}}}}},"ListAlerts":{"http":{"requestUri":"/ListAlerts"},"input":{"type":"structure","members":{"AnomalyDetectorArn":{},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"AlertSummaryList":{"type":"list","member":{"type":"structure","members":{"AlertArn":{},"AnomalyDetectorArn":{},"AlertName":{},"AlertSensitivityThreshold":{"type":"integer"},"AlertType":{},"AlertStatus":{},"LastModificationTime":{"type":"timestamp"},"CreationTime":{"type":"timestamp"},"Tags":{"shape":"Sd"}}}},"NextToken":{}}}},"ListAnomalyDetectors":{"http":{"requestUri":"/ListAnomalyDetectors"},"input":{"type":"structure","members":{"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"AnomalyDetectorSummaryList":{"type":"list","member":{"type":"structure","members":{"AnomalyDetectorArn":{},"AnomalyDetectorName":{},"AnomalyDetectorDescription":{},"CreationTime":{"type":"timestamp"},"LastModificationTime":{"type":"timestamp"},"Status":{},"Tags":{"shape":"Sd"}}}},"NextToken":{}}}},"ListAnomalyGroupSummaries":{"http":{"requestUri":"/ListAnomalyGroupSummaries"},"input":{"type":"structure","required":["AnomalyDetectorArn","SensitivityThreshold"],"members":{"AnomalyDetectorArn":{},"SensitivityThreshold":{"type":"integer"},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"AnomalyGroupSummaryList":{"type":"list","member":{"type":"structure","members":{"StartTime":{},"EndTime":{},"AnomalyGroupId":{},"AnomalyGroupScore":{"type":"double"},"PrimaryMetricName":{}}}},"AnomalyGroupStatistics":{"type":"structure","members":{"EvaluationStartDate":{},"TotalCount":{"type":"integer"},"ItemizedMetricStatsList":{"type":"list","member":{"type":"structure","members":{"MetricName":{},"OccurrenceCount":{"type":"integer"}}}}}},"NextToken":{}}}},"ListAnomalyGroupTimeSeries":{"http":{"requestUri":"/ListAnomalyGroupTimeSeries"},"input":{"type":"structure","required":["AnomalyDetectorArn","AnomalyGroupId","MetricName"],"members":{"AnomalyDetectorArn":{},"AnomalyGroupId":{},"MetricName":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"AnomalyGroupId":{},"MetricName":{},"TimestampList":{"type":"list","member":{}},"NextToken":{},"TimeSeriesList":{"type":"list","member":{"type":"structure","required":["TimeSeriesId","DimensionList","MetricValueList"],"members":{"TimeSeriesId":{},"DimensionList":{"type":"list","member":{"type":"structure","required":["DimensionName","DimensionValue"],"members":{"DimensionName":{},"DimensionValue":{}}}},"MetricValueList":{"type":"list","member":{"type":"double"}}}}}}}},"ListMetricSets":{"http":{"requestUri":"/ListMetricSets"},"input":{"type":"structure","members":{"AnomalyDetectorArn":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"MetricSetSummaryList":{"type":"list","member":{"type":"structure","members":{"MetricSetArn":{},"AnomalyDetectorArn":{},"MetricSetDescription":{},"MetricSetName":{},"CreationTime":{"type":"timestamp"},"LastModificationTime":{"type":"timestamp"},"Tags":{"shape":"Sd"}}}},"NextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"Sd","locationName":"Tags"}}}},"PutFeedback":{"http":{"requestUri":"/PutFeedback"},"input":{"type":"structure","required":["AnomalyDetectorArn","AnomalyGroupTimeSeriesFeedback"],"members":{"AnomalyDetectorArn":{},"AnomalyGroupTimeSeriesFeedback":{"type":"structure","required":["AnomalyGroupId","TimeSeriesId","IsAnomaly"],"members":{"AnomalyGroupId":{},"TimeSeriesId":{},"IsAnomaly":{"type":"boolean"}}}}},"output":{"type":"structure","members":{}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":204},"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{"location":"uri","locationName":"resourceArn"},"Tags":{"shape":"Sd","locationName":"tags"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":204},"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{"location":"uri","locationName":"resourceArn"},"TagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateAnomalyDetector":{"http":{"requestUri":"/UpdateAnomalyDetector"},"input":{"type":"structure","required":["AnomalyDetectorArn"],"members":{"AnomalyDetectorArn":{},"KmsKeyArn":{},"AnomalyDetectorDescription":{},"AnomalyDetectorConfig":{"shape":"Sk"}}},"output":{"type":"structure","members":{"AnomalyDetectorArn":{}}}},"UpdateMetricSet":{"http":{"requestUri":"/UpdateMetricSet"},"input":{"type":"structure","required":["MetricSetArn"],"members":{"MetricSetArn":{},"MetricSetDescription":{},"MetricList":{"shape":"Sr"},"Offset":{"type":"integer"},"TimestampColumn":{"shape":"Sx"},"DimensionList":{"shape":"Sz"},"MetricSetFrequency":{},"MetricSource":{"shape":"S10"}}},"output":{"type":"structure","members":{"MetricSetArn":{}}}}},"shapes":{"Sa":{"type":"structure","members":{"SNSConfiguration":{"type":"structure","required":["RoleArn","SnsTopicArn"],"members":{"RoleArn":{},"SnsTopicArn":{}}},"LambdaConfiguration":{"type":"structure","required":["RoleArn","LambdaArn"],"members":{"RoleArn":{},"LambdaArn":{}}}}},"Sd":{"type":"map","key":{},"value":{}},"Sk":{"type":"structure","members":{"AnomalyDetectorFrequency":{}}},"Sr":{"type":"list","member":{"type":"structure","required":["MetricName","AggregationFunction"],"members":{"MetricName":{},"AggregationFunction":{},"Namespace":{}}}},"Sx":{"type":"structure","members":{"ColumnName":{},"ColumnFormat":{}}},"Sz":{"type":"list","member":{}},"S10":{"type":"structure","members":{"S3SourceConfig":{"type":"structure","required":["RoleArn"],"members":{"RoleArn":{},"TemplatedPathList":{"shape":"S12"},"HistoricalDataPathList":{"shape":"S14"},"FileFormatDescriptor":{"shape":"S16"}}},"AppFlowConfig":{"type":"structure","required":["RoleArn","FlowName"],"members":{"RoleArn":{},"FlowName":{}}},"CloudWatchConfig":{"type":"structure","required":["RoleArn"],"members":{"RoleArn":{}}},"RDSSourceConfig":{"type":"structure","required":["DBInstanceIdentifier","DatabaseHost","DatabasePort","SecretManagerArn","DatabaseName","TableName","RoleArn","VpcConfiguration"],"members":{"DBInstanceIdentifier":{},"DatabaseHost":{},"DatabasePort":{"type":"integer"},"SecretManagerArn":{},"DatabaseName":{},"TableName":{},"RoleArn":{},"VpcConfiguration":{"shape":"S1q"}}},"RedshiftSourceConfig":{"type":"structure","required":["ClusterIdentifier","DatabaseHost","DatabasePort","SecretManagerArn","DatabaseName","TableName","RoleArn","VpcConfiguration"],"members":{"ClusterIdentifier":{},"DatabaseHost":{},"DatabasePort":{"type":"integer"},"SecretManagerArn":{},"DatabaseName":{},"TableName":{},"RoleArn":{},"VpcConfiguration":{"shape":"S1q"}}}}},"S12":{"type":"list","member":{}},"S14":{"type":"list","member":{}},"S16":{"type":"structure","members":{"CsvFormatDescriptor":{"type":"structure","members":{"FileCompression":{},"Charset":{},"ContainsHeader":{"type":"boolean"},"Delimiter":{},"HeaderList":{"type":"list","member":{}},"QuoteSymbol":{}}},"JsonFormatDescriptor":{"type":"structure","members":{"FileCompression":{},"Charset":{}}}}},"S1q":{"type":"structure","required":["SubnetIdList","SecurityGroupIdList"],"members":{"SubnetIdList":{"type":"list","member":{}},"SecurityGroupIdList":{"type":"list","member":{}}}}}}
54183
54182
 
54184
54183
  /***/ }),
54185
- /* 999 */
54184
+ /* 997 */
54186
54185
  /***/ (function(module, exports) {
54187
54186
 
54188
54187
  module.exports = {"pagination":{"DescribeAnomalyDetectionExecutions":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"GetFeedback":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListAlerts":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListAnomalyDetectors":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListAnomalyGroupSummaries":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListAnomalyGroupTimeSeries":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListMetricSets":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54189
54188
 
54190
54189
  /***/ }),
54191
- /* 1000 */
54190
+ /* 998 */
54192
54191
  /***/ (function(module, exports, __webpack_require__) {
54193
54192
 
54194
54193
  __webpack_require__(2);
@@ -54200,8 +54199,8 @@ return /******/ (function(modules) { // webpackBootstrap
54200
54199
  AWS.Mgn = Service.defineService('mgn', ['2020-02-26']);
54201
54200
  Object.defineProperty(apiLoader.services['mgn'], '2020-02-26', {
54202
54201
  get: function get() {
54203
- var model = __webpack_require__(1001);
54204
- model.paginators = __webpack_require__(1002).pagination;
54202
+ var model = __webpack_require__(999);
54203
+ model.paginators = __webpack_require__(1000).pagination;
54205
54204
  return model;
54206
54205
  },
54207
54206
  enumerable: true,
@@ -54212,19 +54211,19 @@ return /******/ (function(modules) { // webpackBootstrap
54212
54211
 
54213
54212
 
54214
54213
  /***/ }),
54215
- /* 1001 */
54214
+ /* 999 */
54216
54215
  /***/ (function(module, exports) {
54217
54216
 
54218
54217
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-02-26","endpointPrefix":"mgn","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"mgn","serviceFullName":"Application Migration Service","serviceId":"mgn","signatureVersion":"v4","signingName":"mgn","uid":"mgn-2020-02-26"},"operations":{"ChangeServerLifeCycleState":{"http":{"requestUri":"/ChangeServerLifeCycleState","responseCode":200},"input":{"type":"structure","required":["lifeCycle","sourceServerID"],"members":{"lifeCycle":{"type":"structure","required":["state"],"members":{"state":{}}},"sourceServerID":{}}},"output":{"shape":"S5"}},"CreateReplicationConfigurationTemplate":{"http":{"requestUri":"/CreateReplicationConfigurationTemplate","responseCode":201},"input":{"type":"structure","required":["associateDefaultSecurityGroup","bandwidthThrottling","createPublicIP","dataPlaneRouting","defaultLargeStagingDiskType","ebsEncryption","replicationServerInstanceType","replicationServersSecurityGroupsIDs","stagingAreaSubnetId","stagingAreaTags","useDedicatedReplicationServer"],"members":{"associateDefaultSecurityGroup":{"type":"boolean"},"bandwidthThrottling":{"type":"long"},"createPublicIP":{"type":"boolean"},"dataPlaneRouting":{},"defaultLargeStagingDiskType":{},"ebsEncryption":{},"ebsEncryptionKeyArn":{},"replicationServerInstanceType":{},"replicationServersSecurityGroupsIDs":{"shape":"S1j"},"stagingAreaSubnetId":{},"stagingAreaTags":{"shape":"S1c"},"tags":{"shape":"S1c"},"useDedicatedReplicationServer":{"type":"boolean"}}},"output":{"shape":"S1m"}},"DeleteJob":{"http":{"requestUri":"/DeleteJob","responseCode":204},"input":{"type":"structure","required":["jobID"],"members":{"jobID":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteReplicationConfigurationTemplate":{"http":{"requestUri":"/DeleteReplicationConfigurationTemplate","responseCode":204},"input":{"type":"structure","required":["replicationConfigurationTemplateID"],"members":{"replicationConfigurationTemplateID":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteSourceServer":{"http":{"requestUri":"/DeleteSourceServer","responseCode":204},"input":{"type":"structure","required":["sourceServerID"],"members":{"sourceServerID":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"DescribeJobLogItems":{"http":{"requestUri":"/DescribeJobLogItems","responseCode":200},"input":{"type":"structure","required":["jobID"],"members":{"jobID":{},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"items":{"type":"list","member":{"type":"structure","members":{"event":{},"eventData":{"type":"structure","members":{"conversionServerID":{},"rawError":{},"sourceServerID":{},"targetInstanceID":{}}},"logDateTime":{}}}},"nextToken":{}}}},"DescribeJobs":{"http":{"requestUri":"/DescribeJobs","responseCode":200},"input":{"type":"structure","required":["filters"],"members":{"filters":{"type":"structure","members":{"fromDate":{},"jobIDs":{"type":"list","member":{}},"toDate":{}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"items":{"type":"list","member":{"shape":"S27"}},"nextToken":{}}}},"DescribeReplicationConfigurationTemplates":{"http":{"requestUri":"/DescribeReplicationConfigurationTemplates","responseCode":200},"input":{"type":"structure","required":["replicationConfigurationTemplateIDs"],"members":{"maxResults":{"type":"integer"},"nextToken":{},"replicationConfigurationTemplateIDs":{"type":"list","member":{}}}},"output":{"type":"structure","members":{"items":{"type":"list","member":{"shape":"S1m"}},"nextToken":{}}}},"DescribeSourceServers":{"http":{"requestUri":"/DescribeSourceServers","responseCode":200},"input":{"type":"structure","required":["filters"],"members":{"filters":{"type":"structure","members":{"isArchived":{"type":"boolean"},"sourceServerIDs":{"type":"list","member":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","members":{"items":{"type":"list","member":{"shape":"S5"}},"nextToken":{}}}},"DisconnectFromService":{"http":{"requestUri":"/DisconnectFromService","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"sourceServerID":{}}},"output":{"shape":"S5"}},"FinalizeCutover":{"http":{"requestUri":"/FinalizeCutover","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"sourceServerID":{}}},"output":{"shape":"S5"}},"GetLaunchConfiguration":{"http":{"requestUri":"/GetLaunchConfiguration","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"sourceServerID":{}}},"output":{"shape":"S2q"}},"GetReplicationConfiguration":{"http":{"requestUri":"/GetReplicationConfiguration","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"sourceServerID":{}}},"output":{"shape":"S2w"}},"InitializeService":{"http":{"requestUri":"/InitializeService","responseCode":204},"input":{"type":"structure","members":{}},"output":{"type":"structure","members":{}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"tags":{"shape":"S1c"}}}},"MarkAsArchived":{"http":{"requestUri":"/MarkAsArchived","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"sourceServerID":{}}},"output":{"shape":"S5"}},"RetryDataReplication":{"http":{"requestUri":"/RetryDataReplication","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"sourceServerID":{}}},"output":{"shape":"S5"}},"StartCutover":{"http":{"requestUri":"/StartCutover","responseCode":202},"input":{"type":"structure","required":["sourceServerIDs"],"members":{"sourceServerIDs":{"type":"list","member":{}},"tags":{"shape":"S1c"}}},"output":{"type":"structure","members":{"job":{"shape":"S27"}}}},"StartTest":{"http":{"requestUri":"/StartTest","responseCode":202},"input":{"type":"structure","required":["sourceServerIDs"],"members":{"sourceServerIDs":{"type":"list","member":{}},"tags":{"shape":"S1c"}}},"output":{"type":"structure","members":{"job":{"shape":"S27"}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"S1c"}}},"idempotent":true},"TerminateTargetInstances":{"http":{"requestUri":"/TerminateTargetInstances","responseCode":202},"input":{"type":"structure","required":["sourceServerIDs"],"members":{"sourceServerIDs":{"type":"list","member":{}},"tags":{"shape":"S1c"}}},"output":{"type":"structure","members":{"job":{"shape":"S27"}}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{},"sensitive":true}}},"idempotent":true},"UpdateLaunchConfiguration":{"http":{"requestUri":"/UpdateLaunchConfiguration","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"copyPrivateIp":{"type":"boolean"},"copyTags":{"type":"boolean"},"launchDisposition":{},"licensing":{"shape":"S2s"},"name":{},"sourceServerID":{},"targetInstanceTypeRightSizingMethod":{}}},"output":{"shape":"S2q"},"idempotent":true},"UpdateReplicationConfiguration":{"http":{"requestUri":"/UpdateReplicationConfiguration","responseCode":200},"input":{"type":"structure","required":["sourceServerID"],"members":{"associateDefaultSecurityGroup":{"type":"boolean"},"bandwidthThrottling":{"type":"long"},"createPublicIP":{"type":"boolean"},"dataPlaneRouting":{},"defaultLargeStagingDiskType":{},"ebsEncryption":{},"ebsEncryptionKeyArn":{},"name":{},"replicatedDisks":{"shape":"S2x"},"replicationServerInstanceType":{},"replicationServersSecurityGroupsIDs":{"shape":"S1j"},"sourceServerID":{},"stagingAreaSubnetId":{},"stagingAreaTags":{"shape":"S1c"},"useDedicatedReplicationServer":{"type":"boolean"}}},"output":{"shape":"S2w"},"idempotent":true},"UpdateReplicationConfigurationTemplate":{"http":{"requestUri":"/UpdateReplicationConfigurationTemplate","responseCode":200},"input":{"type":"structure","required":["replicationConfigurationTemplateID"],"members":{"arn":{},"associateDefaultSecurityGroup":{"type":"boolean"},"bandwidthThrottling":{"type":"long"},"createPublicIP":{"type":"boolean"},"dataPlaneRouting":{},"defaultLargeStagingDiskType":{},"ebsEncryption":{},"ebsEncryptionKeyArn":{},"replicationConfigurationTemplateID":{},"replicationServerInstanceType":{},"replicationServersSecurityGroupsIDs":{"shape":"S1j"},"stagingAreaSubnetId":{},"stagingAreaTags":{"shape":"S1c"},"useDedicatedReplicationServer":{"type":"boolean"}}},"output":{"shape":"S1m"}}},"shapes":{"S5":{"type":"structure","members":{"arn":{},"dataReplicationInfo":{"type":"structure","members":{"dataReplicationError":{"type":"structure","members":{"error":{},"rawError":{}}},"dataReplicationInitiation":{"type":"structure","members":{"nextAttemptDateTime":{},"startDateTime":{},"steps":{"type":"list","member":{"type":"structure","members":{"name":{},"status":{}}}}}},"dataReplicationState":{},"etaDateTime":{},"lagDuration":{},"replicatedDisks":{"type":"list","member":{"type":"structure","members":{"backloggedStorageBytes":{"type":"long"},"deviceName":{},"replicatedStorageBytes":{"type":"long"},"rescannedStorageBytes":{"type":"long"},"totalStorageBytes":{"type":"long"}}}}}},"isArchived":{"type":"boolean"},"launchedInstance":{"type":"structure","members":{"ec2InstanceID":{},"firstBoot":{},"jobID":{}}},"lifeCycle":{"type":"structure","members":{"addedToServiceDateTime":{},"elapsedReplicationDuration":{},"firstByteDateTime":{},"lastCutover":{"type":"structure","members":{"finalized":{"type":"structure","members":{"apiCallDateTime":{}}},"initiated":{"type":"structure","members":{"apiCallDateTime":{},"jobID":{}}},"reverted":{"type":"structure","members":{"apiCallDateTime":{}}}}},"lastSeenByServiceDateTime":{},"lastTest":{"type":"structure","members":{"finalized":{"type":"structure","members":{"apiCallDateTime":{}}},"initiated":{"type":"structure","members":{"apiCallDateTime":{},"jobID":{}}},"reverted":{"type":"structure","members":{"apiCallDateTime":{}}}}},"state":{}}},"sourceProperties":{"type":"structure","members":{"cpus":{"type":"list","member":{"type":"structure","members":{"cores":{"type":"long"},"modelName":{}}}},"disks":{"type":"list","member":{"type":"structure","members":{"bytes":{"type":"long"},"deviceName":{}}}},"identificationHints":{"type":"structure","members":{"awsInstanceID":{},"fqdn":{},"hostname":{},"vmWareUuid":{}}},"lastUpdatedDateTime":{},"networkInterfaces":{"type":"list","member":{"type":"structure","members":{"ips":{"type":"list","member":{}},"isPrimary":{"type":"boolean"},"macAddress":{}}}},"os":{"type":"structure","members":{"fullString":{}}},"ramBytes":{"type":"long"},"recommendedInstanceType":{}}},"sourceServerID":{},"tags":{"shape":"S1c"}}},"S1c":{"type":"map","key":{},"value":{},"sensitive":true},"S1j":{"type":"list","member":{}},"S1m":{"type":"structure","required":["replicationConfigurationTemplateID"],"members":{"arn":{},"associateDefaultSecurityGroup":{"type":"boolean"},"bandwidthThrottling":{"type":"long"},"createPublicIP":{"type":"boolean"},"dataPlaneRouting":{},"defaultLargeStagingDiskType":{},"ebsEncryption":{},"ebsEncryptionKeyArn":{},"replicationConfigurationTemplateID":{},"replicationServerInstanceType":{},"replicationServersSecurityGroupsIDs":{"shape":"S1j"},"stagingAreaSubnetId":{},"stagingAreaTags":{"shape":"S1c"},"tags":{"shape":"S1c"},"useDedicatedReplicationServer":{"type":"boolean"}}},"S27":{"type":"structure","required":["jobID"],"members":{"arn":{},"creationDateTime":{},"endDateTime":{},"initiatedBy":{},"jobID":{},"participatingServers":{"type":"list","member":{"type":"structure","members":{"launchStatus":{},"sourceServerID":{}}}},"status":{},"tags":{"shape":"S1c"},"type":{}}},"S2q":{"type":"structure","members":{"copyPrivateIp":{"type":"boolean"},"copyTags":{"type":"boolean"},"ec2LaunchTemplateID":{},"launchDisposition":{},"licensing":{"shape":"S2s"},"name":{},"sourceServerID":{},"targetInstanceTypeRightSizingMethod":{}}},"S2s":{"type":"structure","members":{"osByol":{"type":"boolean"}}},"S2w":{"type":"structure","members":{"associateDefaultSecurityGroup":{"type":"boolean"},"bandwidthThrottling":{"type":"long"},"createPublicIP":{"type":"boolean"},"dataPlaneRouting":{},"defaultLargeStagingDiskType":{},"ebsEncryption":{},"ebsEncryptionKeyArn":{},"name":{},"replicatedDisks":{"shape":"S2x"},"replicationServerInstanceType":{},"replicationServersSecurityGroupsIDs":{"shape":"S1j"},"sourceServerID":{},"stagingAreaSubnetId":{},"stagingAreaTags":{"shape":"S1c"},"useDedicatedReplicationServer":{"type":"boolean"}}},"S2x":{"type":"list","member":{"type":"structure","members":{"deviceName":{},"iops":{"type":"long"},"isBootDisk":{"type":"boolean"},"stagingDiskType":{}}}}}}
54219
54218
 
54220
54219
  /***/ }),
54221
- /* 1002 */
54220
+ /* 1000 */
54222
54221
  /***/ (function(module, exports) {
54223
54222
 
54224
54223
  module.exports = {"pagination":{"DescribeJobLogItems":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"items"},"DescribeJobs":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"items"},"DescribeReplicationConfigurationTemplates":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"items"},"DescribeSourceServers":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"items"}}}
54225
54224
 
54226
54225
  /***/ }),
54227
- /* 1003 */
54226
+ /* 1001 */
54228
54227
  /***/ (function(module, exports, __webpack_require__) {
54229
54228
 
54230
54229
  __webpack_require__(2);
@@ -54236,8 +54235,8 @@ return /******/ (function(modules) { // webpackBootstrap
54236
54235
  AWS.LookoutEquipment = Service.defineService('lookoutequipment', ['2020-12-15']);
54237
54236
  Object.defineProperty(apiLoader.services['lookoutequipment'], '2020-12-15', {
54238
54237
  get: function get() {
54239
- var model = __webpack_require__(1004);
54240
- model.paginators = __webpack_require__(1005).pagination;
54238
+ var model = __webpack_require__(1002);
54239
+ model.paginators = __webpack_require__(1003).pagination;
54241
54240
  return model;
54242
54241
  },
54243
54242
  enumerable: true,
@@ -54248,19 +54247,19 @@ return /******/ (function(modules) { // webpackBootstrap
54248
54247
 
54249
54248
 
54250
54249
  /***/ }),
54251
- /* 1004 */
54250
+ /* 1002 */
54252
54251
  /***/ (function(module, exports) {
54253
54252
 
54254
54253
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-12-15","endpointPrefix":"lookoutequipment","jsonVersion":"1.0","protocol":"json","serviceAbbreviation":"LookoutEquipment","serviceFullName":"Amazon Lookout for Equipment","serviceId":"LookoutEquipment","signatureVersion":"v4","targetPrefix":"AWSLookoutEquipmentFrontendService","uid":"lookoutequipment-2020-12-15"},"operations":{"CreateDataset":{"input":{"type":"structure","required":["DatasetName","DatasetSchema","ClientToken"],"members":{"DatasetName":{},"DatasetSchema":{"shape":"S3"},"ServerSideKmsKeyId":{},"ClientToken":{"idempotencyToken":true},"Tags":{"shape":"S7"}}},"output":{"type":"structure","members":{"DatasetName":{},"DatasetArn":{},"Status":{}}}},"CreateInferenceScheduler":{"input":{"type":"structure","required":["ModelName","InferenceSchedulerName","DataUploadFrequency","DataInputConfiguration","DataOutputConfiguration","RoleArn","ClientToken"],"members":{"ModelName":{},"InferenceSchedulerName":{},"DataDelayOffsetInMinutes":{"type":"long"},"DataUploadFrequency":{},"DataInputConfiguration":{"shape":"Sj"},"DataOutputConfiguration":{"shape":"Sr"},"RoleArn":{},"ServerSideKmsKeyId":{},"ClientToken":{"idempotencyToken":true},"Tags":{"shape":"S7"}}},"output":{"type":"structure","members":{"InferenceSchedulerArn":{},"InferenceSchedulerName":{},"Status":{}}}},"CreateModel":{"input":{"type":"structure","required":["ModelName","DatasetName","ClientToken"],"members":{"ModelName":{},"DatasetName":{},"DatasetSchema":{"shape":"S3"},"LabelsInputConfiguration":{"shape":"Sz"},"ClientToken":{"idempotencyToken":true},"TrainingDataStartTime":{"type":"timestamp"},"TrainingDataEndTime":{"type":"timestamp"},"EvaluationDataStartTime":{"type":"timestamp"},"EvaluationDataEndTime":{"type":"timestamp"},"RoleArn":{},"DataPreProcessingConfiguration":{"shape":"S12"},"ServerSideKmsKeyId":{},"Tags":{"shape":"S7"},"OffCondition":{}}},"output":{"type":"structure","members":{"ModelArn":{},"Status":{}}}},"DeleteDataset":{"input":{"type":"structure","required":["DatasetName"],"members":{"DatasetName":{}}}},"DeleteInferenceScheduler":{"input":{"type":"structure","required":["InferenceSchedulerName"],"members":{"InferenceSchedulerName":{}}}},"DeleteModel":{"input":{"type":"structure","required":["ModelName"],"members":{"ModelName":{}}}},"DescribeDataIngestionJob":{"input":{"type":"structure","required":["JobId"],"members":{"JobId":{}}},"output":{"type":"structure","members":{"JobId":{},"DatasetArn":{},"IngestionInputConfiguration":{"shape":"S1f"},"RoleArn":{},"CreatedAt":{"type":"timestamp"},"Status":{},"FailedReason":{}}}},"DescribeDataset":{"input":{"type":"structure","required":["DatasetName"],"members":{"DatasetName":{}}},"output":{"type":"structure","members":{"DatasetName":{},"DatasetArn":{},"CreatedAt":{"type":"timestamp"},"LastUpdatedAt":{"type":"timestamp"},"Status":{},"Schema":{"jsonvalue":true},"ServerSideKmsKeyId":{},"IngestionInputConfiguration":{"shape":"S1f"}}}},"DescribeInferenceScheduler":{"input":{"type":"structure","required":["InferenceSchedulerName"],"members":{"InferenceSchedulerName":{}}},"output":{"type":"structure","members":{"ModelArn":{},"ModelName":{},"InferenceSchedulerName":{},"InferenceSchedulerArn":{},"Status":{},"DataDelayOffsetInMinutes":{"type":"long"},"DataUploadFrequency":{},"CreatedAt":{"type":"timestamp"},"UpdatedAt":{"type":"timestamp"},"DataInputConfiguration":{"shape":"Sj"},"DataOutputConfiguration":{"shape":"Sr"},"RoleArn":{},"ServerSideKmsKeyId":{}}}},"DescribeModel":{"input":{"type":"structure","required":["ModelName"],"members":{"ModelName":{}}},"output":{"type":"structure","members":{"ModelName":{},"ModelArn":{},"DatasetName":{},"DatasetArn":{},"Schema":{"jsonvalue":true},"LabelsInputConfiguration":{"shape":"Sz"},"TrainingDataStartTime":{"type":"timestamp"},"TrainingDataEndTime":{"type":"timestamp"},"EvaluationDataStartTime":{"type":"timestamp"},"EvaluationDataEndTime":{"type":"timestamp"},"RoleArn":{},"DataPreProcessingConfiguration":{"shape":"S12"},"Status":{},"TrainingExecutionStartTime":{"type":"timestamp"},"TrainingExecutionEndTime":{"type":"timestamp"},"FailedReason":{},"ModelMetrics":{"jsonvalue":true},"LastUpdatedTime":{"type":"timestamp"},"CreatedAt":{"type":"timestamp"},"ServerSideKmsKeyId":{},"OffCondition":{}}}},"ListDataIngestionJobs":{"input":{"type":"structure","members":{"DatasetName":{},"NextToken":{},"MaxResults":{"type":"integer"},"Status":{}}},"output":{"type":"structure","members":{"NextToken":{},"DataIngestionJobSummaries":{"type":"list","member":{"type":"structure","members":{"JobId":{},"DatasetName":{},"DatasetArn":{},"IngestionInputConfiguration":{"shape":"S1f"},"Status":{}}}}}}},"ListDatasets":{"input":{"type":"structure","members":{"NextToken":{},"MaxResults":{"type":"integer"},"DatasetNameBeginsWith":{}}},"output":{"type":"structure","members":{"NextToken":{},"DatasetSummaries":{"type":"list","member":{"type":"structure","members":{"DatasetName":{},"DatasetArn":{},"Status":{},"CreatedAt":{"type":"timestamp"}}}}}}},"ListInferenceExecutions":{"input":{"type":"structure","required":["InferenceSchedulerName"],"members":{"NextToken":{},"MaxResults":{"type":"integer"},"InferenceSchedulerName":{},"DataStartTimeAfter":{"type":"timestamp"},"DataEndTimeBefore":{"type":"timestamp"},"Status":{}}},"output":{"type":"structure","members":{"NextToken":{},"InferenceExecutionSummaries":{"type":"list","member":{"type":"structure","members":{"ModelName":{},"ModelArn":{},"InferenceSchedulerName":{},"InferenceSchedulerArn":{},"ScheduledStartTime":{"type":"timestamp"},"DataStartTime":{"type":"timestamp"},"DataEndTime":{"type":"timestamp"},"DataInputConfiguration":{"shape":"Sj"},"DataOutputConfiguration":{"shape":"Sr"},"CustomerResultObject":{"type":"structure","required":["Bucket","Key"],"members":{"Bucket":{},"Key":{}}},"Status":{},"FailedReason":{}}}}}}},"ListInferenceSchedulers":{"input":{"type":"structure","members":{"NextToken":{},"MaxResults":{"type":"integer"},"InferenceSchedulerNameBeginsWith":{},"ModelName":{}}},"output":{"type":"structure","members":{"NextToken":{},"InferenceSchedulerSummaries":{"type":"list","member":{"type":"structure","members":{"ModelName":{},"ModelArn":{},"InferenceSchedulerName":{},"InferenceSchedulerArn":{},"Status":{},"DataDelayOffsetInMinutes":{"type":"long"},"DataUploadFrequency":{}}}}}}},"ListModels":{"input":{"type":"structure","members":{"NextToken":{},"MaxResults":{"type":"integer"},"Status":{},"ModelNameBeginsWith":{},"DatasetNameBeginsWith":{}}},"output":{"type":"structure","members":{"NextToken":{},"ModelSummaries":{"type":"list","member":{"type":"structure","members":{"ModelName":{},"ModelArn":{},"DatasetName":{},"DatasetArn":{},"Status":{},"CreatedAt":{"type":"timestamp"}}}}}}},"ListTagsForResource":{"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{}}},"output":{"type":"structure","members":{"Tags":{"shape":"S7"}}}},"StartDataIngestionJob":{"input":{"type":"structure","required":["DatasetName","IngestionInputConfiguration","RoleArn","ClientToken"],"members":{"DatasetName":{},"IngestionInputConfiguration":{"shape":"S1f"},"RoleArn":{},"ClientToken":{"idempotencyToken":true}}},"output":{"type":"structure","members":{"JobId":{},"Status":{}}}},"StartInferenceScheduler":{"input":{"type":"structure","required":["InferenceSchedulerName"],"members":{"InferenceSchedulerName":{}}},"output":{"type":"structure","members":{"ModelArn":{},"ModelName":{},"InferenceSchedulerName":{},"InferenceSchedulerArn":{},"Status":{}}}},"StopInferenceScheduler":{"input":{"type":"structure","required":["InferenceSchedulerName"],"members":{"InferenceSchedulerName":{}}},"output":{"type":"structure","members":{"ModelArn":{},"ModelName":{},"InferenceSchedulerName":{},"InferenceSchedulerArn":{},"Status":{}}}},"TagResource":{"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{},"Tags":{"shape":"S7"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{},"TagKeys":{"type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateInferenceScheduler":{"input":{"type":"structure","required":["InferenceSchedulerName"],"members":{"InferenceSchedulerName":{},"DataDelayOffsetInMinutes":{"type":"long"},"DataUploadFrequency":{},"DataInputConfiguration":{"shape":"Sj"},"DataOutputConfiguration":{"shape":"Sr"},"RoleArn":{}}}}},"shapes":{"S3":{"type":"structure","members":{"InlineDataSchema":{"jsonvalue":true}}},"S7":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}}},"Sj":{"type":"structure","members":{"S3InputConfiguration":{"type":"structure","required":["Bucket"],"members":{"Bucket":{},"Prefix":{}}},"InputTimeZoneOffset":{},"InferenceInputNameConfiguration":{"type":"structure","members":{"TimestampFormat":{},"ComponentTimestampDelimiter":{}}}}},"Sr":{"type":"structure","required":["S3OutputConfiguration"],"members":{"S3OutputConfiguration":{"type":"structure","required":["Bucket"],"members":{"Bucket":{},"Prefix":{}}},"KmsKeyId":{}}},"Sz":{"type":"structure","required":["S3InputConfiguration"],"members":{"S3InputConfiguration":{"type":"structure","required":["Bucket"],"members":{"Bucket":{},"Prefix":{}}}}},"S12":{"type":"structure","members":{"TargetSamplingRate":{}}},"S1f":{"type":"structure","required":["S3InputConfiguration"],"members":{"S3InputConfiguration":{"type":"structure","required":["Bucket"],"members":{"Bucket":{},"Prefix":{}}}}}}}
54255
54254
 
54256
54255
  /***/ }),
54257
- /* 1005 */
54256
+ /* 1003 */
54258
54257
  /***/ (function(module, exports) {
54259
54258
 
54260
54259
  module.exports = {"pagination":{"ListDataIngestionJobs":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListDatasets":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListInferenceExecutions":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListInferenceSchedulers":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListModels":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54261
54260
 
54262
54261
  /***/ }),
54263
- /* 1006 */
54262
+ /* 1004 */
54264
54263
  /***/ (function(module, exports, __webpack_require__) {
54265
54264
 
54266
54265
  __webpack_require__(2);
@@ -54272,8 +54271,8 @@ return /******/ (function(modules) { // webpackBootstrap
54272
54271
  AWS.Nimble = Service.defineService('nimble', ['2020-08-01']);
54273
54272
  Object.defineProperty(apiLoader.services['nimble'], '2020-08-01', {
54274
54273
  get: function get() {
54275
- var model = __webpack_require__(1007);
54276
- model.paginators = __webpack_require__(1008).pagination;
54274
+ var model = __webpack_require__(1005);
54275
+ model.paginators = __webpack_require__(1006).pagination;
54277
54276
  return model;
54278
54277
  },
54279
54278
  enumerable: true,
@@ -54284,19 +54283,19 @@ return /******/ (function(modules) { // webpackBootstrap
54284
54283
 
54285
54284
 
54286
54285
  /***/ }),
54287
- /* 1007 */
54286
+ /* 1005 */
54288
54287
  /***/ (function(module, exports) {
54289
54288
 
54290
54289
  module.exports = {"metadata":{"apiVersion":"2020-08-01","endpointPrefix":"nimble","signingName":"nimble","serviceFullName":"AmazonNimbleStudio","serviceId":"nimble","protocol":"rest-json","jsonVersion":"1.1","uid":"nimble-2020-08-01","signatureVersion":"v4"},"operations":{"AcceptEulas":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/eula-acceptances","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"eulaIds":{"shape":"S3","locationName":"eulaIds"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"eulaAcceptances":{"shape":"S6","locationName":"eulaAcceptances"}}}},"CreateLaunchProfile":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/launch-profiles","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"description":{"locationName":"description"},"ec2SubnetIds":{"shape":"Sd","locationName":"ec2SubnetIds"},"launchProfileProtocolVersions":{"shape":"Sf","locationName":"launchProfileProtocolVersions"},"name":{"locationName":"name"},"streamConfiguration":{"shape":"Si","locationName":"streamConfiguration"},"studioComponentIds":{"shape":"Sp","locationName":"studioComponentIds"},"studioId":{"location":"uri","locationName":"studioId"},"tags":{"shape":"Sq","locationName":"tags"}},"required":["ec2SubnetIds","studioComponentIds","studioId","launchProfileProtocolVersions","name","streamConfiguration"]},"output":{"type":"structure","members":{"launchProfile":{"shape":"Ss","locationName":"launchProfile"}}}},"CreateStreamingImage":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/streaming-images","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"description":{"locationName":"description"},"ec2ImageId":{"locationName":"ec2ImageId"},"name":{"locationName":"name"},"studioId":{"location":"uri","locationName":"studioId"},"tags":{"shape":"Sq","locationName":"tags"}},"required":["studioId","name","ec2ImageId"]},"output":{"type":"structure","members":{"streamingImage":{"shape":"S12","locationName":"streamingImage"}}}},"CreateStreamingSession":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/streaming-sessions","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"ec2InstanceType":{"locationName":"ec2InstanceType"},"launchProfileId":{"locationName":"launchProfileId"},"ownedBy":{"locationName":"ownedBy"},"streamingImageId":{"locationName":"streamingImageId"},"studioId":{"location":"uri","locationName":"studioId"},"tags":{"shape":"Sq","locationName":"tags"}},"required":["studioId"]},"output":{"type":"structure","members":{"session":{"shape":"S1c","locationName":"session"}}}},"CreateStreamingSessionStream":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/streaming-sessions/{sessionId}/streams","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"expirationInSeconds":{"locationName":"expirationInSeconds","type":"integer"},"sessionId":{"location":"uri","locationName":"sessionId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","sessionId"]},"output":{"type":"structure","members":{"stream":{"shape":"S1j","locationName":"stream"}}}},"CreateStudio":{"http":{"requestUri":"/2020-08-01/studios","responseCode":200},"input":{"type":"structure","members":{"adminRoleArn":{"locationName":"adminRoleArn"},"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"displayName":{"locationName":"displayName"},"studioEncryptionConfiguration":{"shape":"S1o","locationName":"studioEncryptionConfiguration"},"studioName":{"locationName":"studioName"},"tags":{"shape":"Sq","locationName":"tags"},"userRoleArn":{"locationName":"userRoleArn"}},"required":["displayName","studioName","userRoleArn","adminRoleArn"]},"output":{"type":"structure","members":{"studio":{"shape":"S1t","locationName":"studio"}}}},"CreateStudioComponent":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/studio-components","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"configuration":{"shape":"S1y","locationName":"configuration"},"description":{"locationName":"description"},"ec2SecurityGroupIds":{"shape":"S2c","locationName":"ec2SecurityGroupIds"},"initializationScripts":{"shape":"S2e","locationName":"initializationScripts"},"name":{"locationName":"name"},"scriptParameters":{"shape":"S2k","locationName":"scriptParameters"},"studioId":{"location":"uri","locationName":"studioId"},"subtype":{"locationName":"subtype"},"tags":{"shape":"Sq","locationName":"tags"},"type":{"locationName":"type"}},"required":["studioId","name","type"]},"output":{"type":"structure","members":{"studioComponent":{"shape":"S2r","locationName":"studioComponent"}}}},"DeleteLaunchProfile":{"http":{"method":"DELETE","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","launchProfileId"]},"output":{"type":"structure","members":{"launchProfile":{"shape":"Ss","locationName":"launchProfile"}}}},"DeleteLaunchProfileMember":{"http":{"method":"DELETE","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}/membership/{principalId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"principalId":{"location":"uri","locationName":"principalId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","principalId","launchProfileId"]},"output":{"type":"structure","members":{}}},"DeleteStreamingImage":{"http":{"method":"DELETE","requestUri":"/2020-08-01/studios/{studioId}/streaming-images/{streamingImageId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"streamingImageId":{"location":"uri","locationName":"streamingImageId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","streamingImageId"]},"output":{"type":"structure","members":{"streamingImage":{"shape":"S12","locationName":"streamingImage"}}}},"DeleteStreamingSession":{"http":{"method":"DELETE","requestUri":"/2020-08-01/studios/{studioId}/streaming-sessions/{sessionId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"sessionId":{"location":"uri","locationName":"sessionId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","sessionId"]},"output":{"type":"structure","members":{"session":{"shape":"S1c","locationName":"session"}}}},"DeleteStudio":{"http":{"method":"DELETE","requestUri":"/2020-08-01/studios/{studioId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"studio":{"shape":"S1t","locationName":"studio"}}}},"DeleteStudioComponent":{"http":{"method":"DELETE","requestUri":"/2020-08-01/studios/{studioId}/studio-components/{studioComponentId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"studioComponentId":{"location":"uri","locationName":"studioComponentId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","studioComponentId"]},"output":{"type":"structure","members":{"studioComponent":{"shape":"S2r","locationName":"studioComponent"}}}},"DeleteStudioMember":{"http":{"method":"DELETE","requestUri":"/2020-08-01/studios/{studioId}/membership/{principalId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"principalId":{"location":"uri","locationName":"principalId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","principalId"]},"output":{"type":"structure","members":{}}},"GetEula":{"http":{"method":"GET","requestUri":"/2020-08-01/eulas/{eulaId}","responseCode":200},"input":{"type":"structure","members":{"eulaId":{"location":"uri","locationName":"eulaId"}},"required":["eulaId"]},"output":{"type":"structure","members":{"eula":{"shape":"S3b","locationName":"eula"}}}},"GetLaunchProfile":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}","responseCode":200},"input":{"type":"structure","members":{"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","launchProfileId"]},"output":{"type":"structure","members":{"launchProfile":{"shape":"Ss","locationName":"launchProfile"}}}},"GetLaunchProfileDetails":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}/details","responseCode":200},"input":{"type":"structure","members":{"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","launchProfileId"]},"output":{"type":"structure","members":{"launchProfile":{"shape":"Ss","locationName":"launchProfile"},"streamingImages":{"shape":"S3h","locationName":"streamingImages"},"studioComponentSummaries":{"locationName":"studioComponentSummaries","type":"list","member":{"type":"structure","members":{"createdAt":{"shape":"S8","locationName":"createdAt"},"createdBy":{"locationName":"createdBy"},"description":{"locationName":"description"},"name":{"locationName":"name"},"studioComponentId":{"locationName":"studioComponentId"},"subtype":{"locationName":"subtype"},"type":{"locationName":"type"},"updatedAt":{"shape":"S8","locationName":"updatedAt"},"updatedBy":{"locationName":"updatedBy"}}}}}}},"GetLaunchProfileInitialization":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}/init","responseCode":200},"input":{"type":"structure","members":{"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"launchProfileProtocolVersions":{"shape":"S3l","location":"querystring","locationName":"launchProfileProtocolVersions"},"launchPurpose":{"location":"querystring","locationName":"launchPurpose"},"platform":{"location":"querystring","locationName":"platform"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","launchProfileProtocolVersions","launchPurpose","launchProfileId","platform"]},"output":{"type":"structure","members":{"launchProfileInitialization":{"locationName":"launchProfileInitialization","type":"structure","members":{"activeDirectory":{"locationName":"activeDirectory","type":"structure","members":{"computerAttributes":{"shape":"S20","locationName":"computerAttributes"},"directoryId":{"locationName":"directoryId"},"directoryName":{"locationName":"directoryName"},"dnsIpAddresses":{"locationName":"dnsIpAddresses","type":"list","member":{}},"organizationalUnitDistinguishedName":{"locationName":"organizationalUnitDistinguishedName"},"studioComponentId":{"locationName":"studioComponentId"},"studioComponentName":{"locationName":"studioComponentName"}}},"ec2SecurityGroupIds":{"locationName":"ec2SecurityGroupIds","type":"list","member":{}},"launchProfileId":{"locationName":"launchProfileId"},"launchProfileProtocolVersion":{"locationName":"launchProfileProtocolVersion"},"launchPurpose":{"locationName":"launchPurpose"},"name":{"locationName":"name"},"platform":{"locationName":"platform"},"systemInitializationScripts":{"shape":"S3t","locationName":"systemInitializationScripts"},"userInitializationScripts":{"shape":"S3t","locationName":"userInitializationScripts"}}}}}},"GetLaunchProfileMember":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}/membership/{principalId}","responseCode":200},"input":{"type":"structure","members":{"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"principalId":{"location":"uri","locationName":"principalId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","principalId","launchProfileId"]},"output":{"type":"structure","members":{"member":{"shape":"S3x","locationName":"member"}}}},"GetStreamingImage":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/streaming-images/{streamingImageId}","responseCode":200},"input":{"type":"structure","members":{"streamingImageId":{"location":"uri","locationName":"streamingImageId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","streamingImageId"]},"output":{"type":"structure","members":{"streamingImage":{"shape":"S12","locationName":"streamingImage"}}}},"GetStreamingSession":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/streaming-sessions/{sessionId}","responseCode":200},"input":{"type":"structure","members":{"sessionId":{"location":"uri","locationName":"sessionId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","sessionId"]},"output":{"type":"structure","members":{"session":{"shape":"S1c","locationName":"session"}}}},"GetStreamingSessionStream":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/streaming-sessions/{sessionId}/streams/{streamId}","responseCode":200},"input":{"type":"structure","members":{"sessionId":{"location":"uri","locationName":"sessionId"},"streamId":{"location":"uri","locationName":"streamId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","streamId","sessionId"]},"output":{"type":"structure","members":{"stream":{"shape":"S1j","locationName":"stream"}}}},"GetStudio":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}","responseCode":200},"input":{"type":"structure","members":{"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"studio":{"shape":"S1t","locationName":"studio"}}}},"GetStudioComponent":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/studio-components/{studioComponentId}","responseCode":200},"input":{"type":"structure","members":{"studioComponentId":{"location":"uri","locationName":"studioComponentId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","studioComponentId"]},"output":{"type":"structure","members":{"studioComponent":{"shape":"S2r","locationName":"studioComponent"}}}},"GetStudioMember":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/membership/{principalId}","responseCode":200},"input":{"type":"structure","members":{"principalId":{"location":"uri","locationName":"principalId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","principalId"]},"output":{"type":"structure","members":{"member":{"shape":"S4b","locationName":"member"}}}},"ListEulaAcceptances":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/eula-acceptances","responseCode":200},"input":{"type":"structure","members":{"eulaIds":{"shape":"S3l","location":"querystring","locationName":"eulaIds"},"nextToken":{"location":"querystring","locationName":"nextToken"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"eulaAcceptances":{"shape":"S6","locationName":"eulaAcceptances"},"nextToken":{"locationName":"nextToken"}}}},"ListEulas":{"http":{"method":"GET","requestUri":"/2020-08-01/eulas","responseCode":200},"input":{"type":"structure","members":{"eulaIds":{"shape":"S3l","location":"querystring","locationName":"eulaIds"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"eulas":{"locationName":"eulas","type":"list","member":{"shape":"S3b"}},"nextToken":{"locationName":"nextToken"}}}},"ListLaunchProfileMembers":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}/membership","responseCode":200},"input":{"type":"structure","members":{"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","launchProfileId"]},"output":{"type":"structure","members":{"members":{"locationName":"members","type":"list","member":{"shape":"S3x"}},"nextToken":{"locationName":"nextToken"}}}},"ListLaunchProfiles":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"principalId":{"location":"querystring","locationName":"principalId"},"states":{"shape":"S3l","location":"querystring","locationName":"states"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"launchProfiles":{"locationName":"launchProfiles","type":"list","member":{"shape":"Ss"}},"nextToken":{"locationName":"nextToken"}}}},"ListStreamingImages":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/streaming-images","responseCode":200},"input":{"type":"structure","members":{"nextToken":{"location":"querystring","locationName":"nextToken"},"owner":{"location":"querystring","locationName":"owner"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"nextToken":{"locationName":"nextToken"},"streamingImages":{"shape":"S3h","locationName":"streamingImages"}}}},"ListStreamingSessions":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/streaming-sessions","responseCode":200},"input":{"type":"structure","members":{"createdBy":{"location":"querystring","locationName":"createdBy"},"nextToken":{"location":"querystring","locationName":"nextToken"},"ownedBy":{"location":"querystring","locationName":"ownedBy"},"sessionIds":{"location":"querystring","locationName":"sessionIds"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"nextToken":{"locationName":"nextToken"},"sessions":{"locationName":"sessions","type":"list","member":{"shape":"S1c"}}}}},"ListStudioComponents":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/studio-components","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"states":{"shape":"S3l","location":"querystring","locationName":"states"},"studioId":{"location":"uri","locationName":"studioId"},"types":{"shape":"S3l","location":"querystring","locationName":"types"}},"required":["studioId"]},"output":{"type":"structure","members":{"nextToken":{"locationName":"nextToken"},"studioComponents":{"locationName":"studioComponents","type":"list","member":{"shape":"S2r"}}}}},"ListStudioMembers":{"http":{"method":"GET","requestUri":"/2020-08-01/studios/{studioId}/membership","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"members":{"locationName":"members","type":"list","member":{"shape":"S4b"}},"nextToken":{"locationName":"nextToken"}}}},"ListStudios":{"http":{"method":"GET","requestUri":"/2020-08-01/studios","responseCode":200},"input":{"type":"structure","members":{"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"nextToken":{"locationName":"nextToken"},"studios":{"locationName":"studios","type":"list","member":{"shape":"S1t"}}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/2020-08-01/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}},"required":["resourceArn"]},"output":{"type":"structure","members":{"tags":{"shape":"Sq","locationName":"tags"}}}},"PutLaunchProfileMembers":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}/membership","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"identityStoreId":{"locationName":"identityStoreId"},"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"members":{"locationName":"members","type":"list","member":{"type":"structure","members":{"persona":{"locationName":"persona"},"principalId":{"locationName":"principalId"}},"required":["persona","principalId"]}},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","members","launchProfileId","identityStoreId"]},"output":{"type":"structure","members":{}}},"PutStudioMembers":{"http":{"requestUri":"/2020-08-01/studios/{studioId}/membership","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"identityStoreId":{"locationName":"identityStoreId"},"members":{"locationName":"members","type":"list","member":{"type":"structure","members":{"persona":{"locationName":"persona"},"principalId":{"locationName":"principalId"}},"required":["persona","principalId"]}},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","members","identityStoreId"]},"output":{"type":"structure","members":{}}},"StartStudioSSOConfigurationRepair":{"http":{"method":"PUT","requestUri":"/2020-08-01/studios/{studioId}/sso-configuration","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId"]},"output":{"type":"structure","members":{"studio":{"shape":"S1t","locationName":"studio"}}}},"TagResource":{"http":{"requestUri":"/2020-08-01/tags/{resourceArn}","responseCode":204},"input":{"type":"structure","members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"Sq","locationName":"tags"}},"required":["resourceArn"]},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/2020-08-01/tags/{resourceArn}","responseCode":204},"input":{"type":"structure","members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"shape":"S3l","location":"querystring","locationName":"tagKeys"}},"required":["tagKeys","resourceArn"]},"output":{"type":"structure","members":{}}},"UpdateLaunchProfile":{"http":{"method":"PATCH","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"description":{"locationName":"description"},"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"launchProfileProtocolVersions":{"shape":"Sf","locationName":"launchProfileProtocolVersions"},"name":{"locationName":"name"},"streamConfiguration":{"shape":"Si","locationName":"streamConfiguration"},"studioComponentIds":{"shape":"Sp","locationName":"studioComponentIds"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","launchProfileId"]},"output":{"type":"structure","members":{"launchProfile":{"shape":"Ss","locationName":"launchProfile"}}}},"UpdateLaunchProfileMember":{"http":{"method":"PATCH","requestUri":"/2020-08-01/studios/{studioId}/launch-profiles/{launchProfileId}/membership/{principalId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"launchProfileId":{"location":"uri","locationName":"launchProfileId"},"persona":{"locationName":"persona"},"principalId":{"location":"uri","locationName":"principalId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","persona","principalId","launchProfileId"]},"output":{"type":"structure","members":{"member":{"shape":"S3x","locationName":"member"}}}},"UpdateStreamingImage":{"http":{"method":"PATCH","requestUri":"/2020-08-01/studios/{studioId}/streaming-images/{streamingImageId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"description":{"locationName":"description"},"name":{"locationName":"name"},"streamingImageId":{"location":"uri","locationName":"streamingImageId"},"studioId":{"location":"uri","locationName":"studioId"}},"required":["studioId","streamingImageId"]},"output":{"type":"structure","members":{"streamingImage":{"shape":"S12","locationName":"streamingImage"}}}},"UpdateStudio":{"http":{"method":"PATCH","requestUri":"/2020-08-01/studios/{studioId}","responseCode":200},"input":{"type":"structure","members":{"adminRoleArn":{"locationName":"adminRoleArn"},"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"displayName":{"locationName":"displayName"},"studioId":{"location":"uri","locationName":"studioId"},"userRoleArn":{"locationName":"userRoleArn"}},"required":["studioId"]},"output":{"type":"structure","members":{"studio":{"shape":"S1t","locationName":"studio"}}}},"UpdateStudioComponent":{"http":{"method":"PATCH","requestUri":"/2020-08-01/studios/{studioId}/studio-components/{studioComponentId}","responseCode":200},"input":{"type":"structure","members":{"clientToken":{"location":"header","locationName":"X-Amz-Client-Token","idempotencyToken":true},"configuration":{"shape":"S1y","locationName":"configuration"},"description":{"locationName":"description"},"ec2SecurityGroupIds":{"shape":"S2c","locationName":"ec2SecurityGroupIds"},"initializationScripts":{"shape":"S2e","locationName":"initializationScripts"},"name":{"locationName":"name"},"scriptParameters":{"shape":"S2k","locationName":"scriptParameters"},"studioComponentId":{"location":"uri","locationName":"studioComponentId"},"studioId":{"location":"uri","locationName":"studioId"},"subtype":{"locationName":"subtype"},"type":{"locationName":"type"}},"required":["studioId","studioComponentId"]},"output":{"type":"structure","members":{"studioComponent":{"shape":"S2r","locationName":"studioComponent"}}}}},"shapes":{"S3":{"type":"list","member":{}},"S6":{"type":"list","member":{"type":"structure","members":{"acceptedAt":{"shape":"S8","locationName":"acceptedAt"},"acceptedBy":{"locationName":"acceptedBy"},"accepteeId":{"locationName":"accepteeId"},"eulaAcceptanceId":{"locationName":"eulaAcceptanceId"},"eulaId":{"locationName":"eulaId"}}}},"S8":{"type":"timestamp","timestampFormat":"iso8601"},"Sd":{"type":"list","member":{}},"Sf":{"type":"list","member":{}},"Si":{"type":"structure","members":{"clipboardMode":{"locationName":"clipboardMode"},"ec2InstanceTypes":{"shape":"Sk","locationName":"ec2InstanceTypes"},"maxSessionLengthInMinutes":{"locationName":"maxSessionLengthInMinutes","type":"integer"},"streamingImageIds":{"shape":"Sn","locationName":"streamingImageIds"}},"required":["clipboardMode","streamingImageIds","ec2InstanceTypes"]},"Sk":{"type":"list","member":{}},"Sn":{"type":"list","member":{}},"Sp":{"type":"list","member":{}},"Sq":{"type":"map","key":{},"value":{}},"Ss":{"type":"structure","members":{"arn":{"locationName":"arn"},"createdAt":{"shape":"S8","locationName":"createdAt"},"createdBy":{"locationName":"createdBy"},"description":{"locationName":"description"},"ec2SubnetIds":{"shape":"Sd","locationName":"ec2SubnetIds"},"launchProfileId":{"locationName":"launchProfileId"},"launchProfileProtocolVersions":{"shape":"Sf","locationName":"launchProfileProtocolVersions"},"name":{"locationName":"name"},"state":{"locationName":"state"},"statusCode":{"locationName":"statusCode"},"statusMessage":{"locationName":"statusMessage"},"streamConfiguration":{"locationName":"streamConfiguration","type":"structure","members":{"clipboardMode":{"locationName":"clipboardMode"},"ec2InstanceTypes":{"shape":"Sk","locationName":"ec2InstanceTypes"},"maxSessionLengthInMinutes":{"locationName":"maxSessionLengthInMinutes","type":"integer"},"streamingImageIds":{"shape":"Sn","locationName":"streamingImageIds"}}},"studioComponentIds":{"shape":"Sp","locationName":"studioComponentIds"},"tags":{"shape":"Sq","locationName":"tags"},"updatedAt":{"shape":"S8","locationName":"updatedAt"},"updatedBy":{"locationName":"updatedBy"}}},"S12":{"type":"structure","members":{"arn":{"locationName":"arn"},"description":{"locationName":"description"},"ec2ImageId":{"locationName":"ec2ImageId"},"encryptionConfiguration":{"locationName":"encryptionConfiguration","type":"structure","members":{"keyArn":{"locationName":"keyArn"},"keyType":{"locationName":"keyType"}},"required":["keyType"]},"eulaIds":{"shape":"S3","locationName":"eulaIds"},"name":{"locationName":"name"},"owner":{"locationName":"owner"},"platform":{"locationName":"platform"},"state":{"locationName":"state"},"statusCode":{"locationName":"statusCode"},"statusMessage":{"locationName":"statusMessage"},"streamingImageId":{"locationName":"streamingImageId"},"tags":{"shape":"Sq","locationName":"tags"}}},"S1c":{"type":"structure","members":{"arn":{"locationName":"arn"},"createdAt":{"shape":"S8","locationName":"createdAt"},"createdBy":{"locationName":"createdBy"},"ec2InstanceType":{"locationName":"ec2InstanceType"},"launchProfileId":{"locationName":"launchProfileId"},"ownedBy":{"locationName":"ownedBy"},"sessionId":{"locationName":"sessionId"},"state":{"locationName":"state"},"statusCode":{"locationName":"statusCode"},"statusMessage":{"locationName":"statusMessage"},"streamingImageId":{"locationName":"streamingImageId"},"tags":{"shape":"Sq","locationName":"tags"},"terminateAt":{"shape":"S8","locationName":"terminateAt"},"updatedAt":{"shape":"S8","locationName":"updatedAt"},"updatedBy":{"locationName":"updatedBy"}}},"S1j":{"type":"structure","members":{"createdAt":{"shape":"S8","locationName":"createdAt"},"createdBy":{"locationName":"createdBy"},"expiresAt":{"shape":"S8","locationName":"expiresAt"},"ownedBy":{"locationName":"ownedBy"},"state":{"locationName":"state"},"statusCode":{"locationName":"statusCode"},"streamId":{"locationName":"streamId"},"url":{"locationName":"url"}}},"S1o":{"type":"structure","members":{"keyArn":{"locationName":"keyArn"},"keyType":{"locationName":"keyType"}},"required":["keyType"]},"S1t":{"type":"structure","members":{"adminRoleArn":{"locationName":"adminRoleArn"},"arn":{"locationName":"arn"},"createdAt":{"shape":"S8","locationName":"createdAt"},"displayName":{"locationName":"displayName"},"homeRegion":{"locationName":"homeRegion"},"ssoClientId":{"locationName":"ssoClientId"},"state":{"locationName":"state"},"statusCode":{"locationName":"statusCode"},"statusMessage":{"locationName":"statusMessage"},"studioEncryptionConfiguration":{"shape":"S1o","locationName":"studioEncryptionConfiguration"},"studioId":{"locationName":"studioId"},"studioName":{"locationName":"studioName"},"studioUrl":{"locationName":"studioUrl"},"tags":{"shape":"Sq","locationName":"tags"},"updatedAt":{"shape":"S8","locationName":"updatedAt"},"userRoleArn":{"locationName":"userRoleArn"}}},"S1y":{"type":"structure","members":{"activeDirectoryConfiguration":{"locationName":"activeDirectoryConfiguration","type":"structure","members":{"computerAttributes":{"shape":"S20","locationName":"computerAttributes"},"directoryId":{"locationName":"directoryId"},"organizationalUnitDistinguishedName":{"locationName":"organizationalUnitDistinguishedName"}}},"computeFarmConfiguration":{"locationName":"computeFarmConfiguration","type":"structure","members":{"activeDirectoryUser":{"locationName":"activeDirectoryUser"},"endpoint":{"locationName":"endpoint"}}},"licenseServiceConfiguration":{"locationName":"licenseServiceConfiguration","type":"structure","members":{"endpoint":{"locationName":"endpoint"}}},"sharedFileSystemConfiguration":{"locationName":"sharedFileSystemConfiguration","type":"structure","members":{"endpoint":{"locationName":"endpoint"},"fileSystemId":{"locationName":"fileSystemId"},"linuxMountPoint":{"locationName":"linuxMountPoint"},"shareName":{"locationName":"shareName"},"windowsMountDrive":{"locationName":"windowsMountDrive"}}}},"union":true},"S20":{"type":"list","member":{"type":"structure","members":{"name":{"locationName":"name"},"value":{"locationName":"value"}}}},"S2c":{"type":"list","member":{}},"S2e":{"type":"list","member":{"type":"structure","members":{"launchProfileProtocolVersion":{"locationName":"launchProfileProtocolVersion"},"platform":{"locationName":"platform"},"runContext":{"locationName":"runContext"},"script":{"locationName":"script"}}}},"S2k":{"type":"list","member":{"type":"structure","members":{"key":{"locationName":"key"},"value":{"locationName":"value"}}}},"S2r":{"type":"structure","members":{"arn":{"locationName":"arn"},"configuration":{"shape":"S1y","locationName":"configuration"},"createdAt":{"shape":"S8","locationName":"createdAt"},"createdBy":{"locationName":"createdBy"},"description":{"locationName":"description"},"ec2SecurityGroupIds":{"shape":"S2c","locationName":"ec2SecurityGroupIds"},"initializationScripts":{"shape":"S2e","locationName":"initializationScripts"},"name":{"locationName":"name"},"scriptParameters":{"shape":"S2k","locationName":"scriptParameters"},"state":{"locationName":"state"},"statusCode":{"locationName":"statusCode"},"statusMessage":{"locationName":"statusMessage"},"studioComponentId":{"locationName":"studioComponentId"},"subtype":{"locationName":"subtype"},"tags":{"shape":"Sq","locationName":"tags"},"type":{"locationName":"type"},"updatedAt":{"shape":"S8","locationName":"updatedAt"},"updatedBy":{"locationName":"updatedBy"}}},"S3b":{"type":"structure","members":{"content":{"locationName":"content"},"createdAt":{"shape":"S8","locationName":"createdAt"},"eulaId":{"locationName":"eulaId"},"name":{"locationName":"name"},"updatedAt":{"shape":"S8","locationName":"updatedAt"}}},"S3h":{"type":"list","member":{"shape":"S12"}},"S3l":{"type":"list","member":{}},"S3t":{"type":"list","member":{"type":"structure","members":{"script":{"locationName":"script"},"studioComponentId":{"locationName":"studioComponentId"},"studioComponentName":{"locationName":"studioComponentName"}}}},"S3x":{"type":"structure","members":{"identityStoreId":{"locationName":"identityStoreId"},"persona":{"locationName":"persona"},"principalId":{"locationName":"principalId"}}},"S4b":{"type":"structure","members":{"identityStoreId":{"locationName":"identityStoreId"},"persona":{"locationName":"persona"},"principalId":{"locationName":"principalId"}}}}}
54291
54290
 
54292
54291
  /***/ }),
54293
- /* 1008 */
54292
+ /* 1006 */
54294
54293
  /***/ (function(module, exports) {
54295
54294
 
54296
54295
  module.exports = {"metadata":{"endpointPrefix":"nimble","serviceFullName":"AmazonNimbleStudio","serviceId":"nimble","uid":"nimble-2020-08-01"},"pagination":{"ListEulaAcceptances":{"input_token":"nextToken","output_token":"nextToken","result_key":"eulaAcceptances"},"ListEulas":{"input_token":"nextToken","output_token":"nextToken","result_key":"eulas"},"ListLaunchProfileMembers":{"input_token":"nextToken","limit_key":"maxResults","output_token":"nextToken","result_key":"members"},"ListLaunchProfiles":{"input_token":"nextToken","limit_key":"maxResults","output_token":"nextToken","result_key":"launchProfiles"},"ListStreamingImages":{"input_token":"nextToken","output_token":"nextToken","result_key":"streamingImages"},"ListStreamingSessions":{"input_token":"nextToken","output_token":"nextToken","result_key":"sessions"},"ListStudioComponents":{"input_token":"nextToken","limit_key":"maxResults","output_token":"nextToken","result_key":"studioComponents"},"ListStudioMembers":{"input_token":"nextToken","limit_key":"maxResults","output_token":"nextToken","result_key":"members"},"ListStudios":{"input_token":"nextToken","output_token":"nextToken","result_key":"studios"}}}
54297
54296
 
54298
54297
  /***/ }),
54299
- /* 1009 */
54298
+ /* 1007 */
54300
54299
  /***/ (function(module, exports, __webpack_require__) {
54301
54300
 
54302
54301
  __webpack_require__(2);
@@ -54306,11 +54305,10 @@ return /******/ (function(modules) { // webpackBootstrap
54306
54305
 
54307
54306
  apiLoader.services['finspace'] = {};
54308
54307
  AWS.Finspace = Service.defineService('finspace', ['2021-03-12']);
54309
- __webpack_require__(1010);
54310
54308
  Object.defineProperty(apiLoader.services['finspace'], '2021-03-12', {
54311
54309
  get: function get() {
54312
- var model = __webpack_require__(1011);
54313
- model.paginators = __webpack_require__(1012).pagination;
54310
+ var model = __webpack_require__(1008);
54311
+ model.paginators = __webpack_require__(1009).pagination;
54314
54312
  return model;
54315
54313
  },
54316
54314
  enumerable: true,
@@ -54321,48 +54319,19 @@ return /******/ (function(modules) { // webpackBootstrap
54321
54319
 
54322
54320
 
54323
54321
  /***/ }),
54324
- /* 1010 */
54325
- /***/ (function(module, exports, __webpack_require__) {
54326
-
54327
- var AWS = __webpack_require__(4);
54328
-
54329
- AWS.util.update(AWS.Finspace.prototype, {
54330
- /**
54331
- * @api private
54332
- */
54333
- setupRequestListeners: function setupRequestListeners(request) {
54334
- request.addListener('build', this.modifyContentType);
54335
- },
54336
-
54337
- /**
54338
- * Normally rest-json services require `Content-Type` header to be 'application/json',
54339
- * However Finspace service requires the header to be 'application/x-amz-json-1.1'.
54340
- *
54341
- * @api private
54342
- */
54343
- modifyContentType: function modifyContentType(request) {
54344
- if (request.httpRequest.headers['Content-Type'] === 'application/json') {
54345
- request.httpRequest.headers['Content-Type'] = 'application/x-amz-json-1.1';
54346
- }
54347
- }
54348
- });
54349
-
54350
-
54351
-
54352
- /***/ }),
54353
- /* 1011 */
54322
+ /* 1008 */
54354
54323
  /***/ (function(module, exports) {
54355
54324
 
54356
54325
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-03-12","endpointPrefix":"finspace","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"finspace","serviceFullName":"FinSpace User Environment Management service","serviceId":"finspace","signatureVersion":"v4","signingName":"finspace","uid":"finspace-2021-03-12"},"operations":{"CreateEnvironment":{"http":{"requestUri":"/environment"},"input":{"type":"structure","required":["name"],"members":{"name":{},"description":{},"kmsKeyId":{},"tags":{"shape":"S5"},"federationMode":{},"federationParameters":{"shape":"S9"}}},"output":{"type":"structure","members":{"environmentId":{},"environmentArn":{},"environmentUrl":{}}}},"DeleteEnvironment":{"http":{"method":"DELETE","requestUri":"/environment/{environmentId}"},"input":{"type":"structure","required":["environmentId"],"members":{"environmentId":{"location":"uri","locationName":"environmentId"}}},"output":{"type":"structure","members":{}}},"GetEnvironment":{"http":{"method":"GET","requestUri":"/environment/{environmentId}"},"input":{"type":"structure","required":["environmentId"],"members":{"environmentId":{"location":"uri","locationName":"environmentId"}}},"output":{"type":"structure","members":{"environment":{"shape":"Sn"}}}},"ListEnvironments":{"http":{"method":"GET","requestUri":"/environment"},"input":{"type":"structure","members":{"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","members":{"environments":{"type":"list","member":{"shape":"Sn"}},"nextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}"},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"tags":{"shape":"S5"}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}"},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"S5"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}"},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateEnvironment":{"http":{"method":"PUT","requestUri":"/environment/{environmentId}"},"input":{"type":"structure","required":["environmentId"],"members":{"environmentId":{"location":"uri","locationName":"environmentId"},"name":{},"description":{},"federationMode":{},"federationParameters":{"shape":"S9"}}},"output":{"type":"structure","members":{"environment":{"shape":"Sn"}}}}},"shapes":{"S5":{"type":"map","key":{},"value":{}},"S9":{"type":"structure","members":{"samlMetadataDocument":{},"samlMetadataURL":{},"applicationCallBackURL":{},"federationURN":{},"federationProviderName":{},"attributeMap":{"type":"map","key":{},"value":{}}}},"Sn":{"type":"structure","members":{"name":{},"environmentId":{},"awsAccountId":{},"status":{},"environmentUrl":{},"description":{},"environmentArn":{},"sageMakerStudioDomainUrl":{},"kmsKeyId":{},"dedicatedServiceAccountId":{},"federationMode":{},"federationParameters":{"shape":"S9"}}}}}
54357
54326
 
54358
54327
  /***/ }),
54359
- /* 1012 */
54328
+ /* 1009 */
54360
54329
  /***/ (function(module, exports) {
54361
54330
 
54362
54331
  module.exports = {"pagination":{}}
54363
54332
 
54364
54333
  /***/ }),
54365
- /* 1013 */
54334
+ /* 1010 */
54366
54335
  /***/ (function(module, exports, __webpack_require__) {
54367
54336
 
54368
54337
  __webpack_require__(2);
@@ -54372,11 +54341,10 @@ return /******/ (function(modules) { // webpackBootstrap
54372
54341
 
54373
54342
  apiLoader.services['finspacedata'] = {};
54374
54343
  AWS.Finspacedata = Service.defineService('finspacedata', ['2020-07-13']);
54375
- __webpack_require__(1014);
54376
54344
  Object.defineProperty(apiLoader.services['finspacedata'], '2020-07-13', {
54377
54345
  get: function get() {
54378
- var model = __webpack_require__(1015);
54379
- model.paginators = __webpack_require__(1016).pagination;
54346
+ var model = __webpack_require__(1011);
54347
+ model.paginators = __webpack_require__(1012).pagination;
54380
54348
  return model;
54381
54349
  },
54382
54350
  enumerable: true,
@@ -54387,48 +54355,19 @@ return /******/ (function(modules) { // webpackBootstrap
54387
54355
 
54388
54356
 
54389
54357
  /***/ }),
54390
- /* 1014 */
54391
- /***/ (function(module, exports, __webpack_require__) {
54392
-
54393
- var AWS = __webpack_require__(4);
54394
-
54395
- AWS.util.update(AWS.Finspacedata.prototype, {
54396
- /**
54397
- * @api private
54398
- */
54399
- setupRequestListeners: function setupRequestListeners(request) {
54400
- request.addListener('build', this.modifyContentType);
54401
- },
54402
-
54403
- /**
54404
- * Normally rest-json services require `Content-Type` header to be 'application/json',
54405
- * However Finspacedata service requires the header to be 'application/x-amz-json-1.1'.
54406
- *
54407
- * @api private
54408
- */
54409
- modifyContentType: function modifyContentType(request) {
54410
- if (request.httpRequest.headers['Content-Type'] === 'application/json') {
54411
- request.httpRequest.headers['Content-Type'] = 'application/x-amz-json-1.1';
54412
- }
54413
- }
54414
- });
54415
-
54416
-
54417
-
54418
- /***/ }),
54419
- /* 1015 */
54358
+ /* 1011 */
54420
54359
  /***/ (function(module, exports) {
54421
54360
 
54422
54361
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-07-13","endpointPrefix":"finspace-api","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"FinSpace Data","serviceFullName":"FinSpace Public API","serviceId":"finspace data","signatureVersion":"v4","signingName":"finspace-api","uid":"finspace-2020-07-13"},"operations":{"CreateChangeset":{"http":{"requestUri":"/datasets/{datasetId}/changesets"},"input":{"type":"structure","required":["datasetId","changeType","sourceType","sourceParams"],"members":{"datasetId":{"location":"uri","locationName":"datasetId"},"changeType":{},"sourceType":{},"sourceParams":{"shape":"S5"},"formatType":{},"formatParams":{"shape":"S5"},"tags":{"shape":"S5"}}},"output":{"type":"structure","members":{"changeset":{"type":"structure","members":{"id":{},"changesetArn":{},"datasetId":{},"changeType":{},"sourceType":{},"sourceParams":{"shape":"S5"},"formatType":{},"formatParams":{"shape":"S5"},"createTimestamp":{"type":"timestamp"},"status":{},"errorInfo":{"type":"structure","members":{"errorMessage":{},"errorCategory":{}}},"changesetLabels":{"shape":"S5"},"updatesChangesetId":{},"updatedByChangesetId":{}}}}}},"GetProgrammaticAccessCredentials":{"http":{"method":"GET","requestUri":"/credentials/programmatic"},"input":{"type":"structure","required":["environmentId"],"members":{"durationInMinutes":{"location":"querystring","locationName":"durationInMinutes","type":"long"},"environmentId":{"location":"querystring","locationName":"environmentId"}}},"output":{"type":"structure","members":{"credentials":{"type":"structure","members":{"accessKeyId":{},"secretAccessKey":{},"sessionToken":{}}},"durationInMinutes":{"type":"long"}}}},"GetWorkingLocation":{"http":{"requestUri":"/workingLocationV1"},"input":{"type":"structure","members":{"locationType":{}}},"output":{"type":"structure","members":{"s3Uri":{},"s3Path":{},"s3Bucket":{}}}}},"shapes":{"S5":{"type":"map","key":{},"value":{}}}}
54423
54362
 
54424
54363
  /***/ }),
54425
- /* 1016 */
54364
+ /* 1012 */
54426
54365
  /***/ (function(module, exports) {
54427
54366
 
54428
54367
  module.exports = {"pagination":{}}
54429
54368
 
54430
54369
  /***/ }),
54431
- /* 1017 */
54370
+ /* 1013 */
54432
54371
  /***/ (function(module, exports, __webpack_require__) {
54433
54372
 
54434
54373
  __webpack_require__(2);
@@ -54440,8 +54379,8 @@ return /******/ (function(modules) { // webpackBootstrap
54440
54379
  AWS.SSMContacts = Service.defineService('ssmcontacts', ['2021-05-03']);
54441
54380
  Object.defineProperty(apiLoader.services['ssmcontacts'], '2021-05-03', {
54442
54381
  get: function get() {
54443
- var model = __webpack_require__(1018);
54444
- model.paginators = __webpack_require__(1019).pagination;
54382
+ var model = __webpack_require__(1014);
54383
+ model.paginators = __webpack_require__(1015).pagination;
54445
54384
  return model;
54446
54385
  },
54447
54386
  enumerable: true,
@@ -54452,19 +54391,19 @@ return /******/ (function(modules) { // webpackBootstrap
54452
54391
 
54453
54392
 
54454
54393
  /***/ }),
54455
- /* 1018 */
54394
+ /* 1014 */
54456
54395
  /***/ (function(module, exports) {
54457
54396
 
54458
54397
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-05-03","endpointPrefix":"ssm-contacts","jsonVersion":"1.1","protocol":"json","serviceAbbreviation":"SSM Contacts","serviceFullName":"AWS Systems Manager Incident Manager Contacts","serviceId":"SSM Contacts","signatureVersion":"v4","signingName":"ssm-contacts","targetPrefix":"SSMContacts","uid":"ssm-contacts-2021-05-03"},"operations":{"AcceptPage":{"input":{"type":"structure","required":["PageId","AcceptType","AcceptCode"],"members":{"PageId":{},"ContactChannelId":{},"AcceptType":{},"Note":{},"AcceptCode":{},"AcceptCodeValidation":{}}},"output":{"type":"structure","members":{}}},"ActivateContactChannel":{"input":{"type":"structure","required":["ContactChannelId","ActivationCode"],"members":{"ContactChannelId":{},"ActivationCode":{}}},"output":{"type":"structure","members":{}}},"CreateContact":{"input":{"type":"structure","required":["Alias","Type","Plan"],"members":{"Alias":{},"DisplayName":{},"Type":{},"Plan":{"shape":"Sf"},"Tags":{"shape":"Sp"},"IdempotencyToken":{"idempotencyToken":true}}},"output":{"type":"structure","required":["ContactArn"],"members":{"ContactArn":{}}}},"CreateContactChannel":{"input":{"type":"structure","required":["ContactId","Name","Type","DeliveryAddress"],"members":{"ContactId":{},"Name":{},"Type":{},"DeliveryAddress":{"shape":"Sy"},"DeferActivation":{"type":"boolean"},"IdempotencyToken":{"idempotencyToken":true}}},"output":{"type":"structure","required":["ContactChannelArn"],"members":{"ContactChannelArn":{}}}},"DeactivateContactChannel":{"input":{"type":"structure","required":["ContactChannelId"],"members":{"ContactChannelId":{}}},"output":{"type":"structure","members":{}}},"DeleteContact":{"input":{"type":"structure","required":["ContactId"],"members":{"ContactId":{}}},"output":{"type":"structure","members":{}}},"DeleteContactChannel":{"input":{"type":"structure","required":["ContactChannelId"],"members":{"ContactChannelId":{}}},"output":{"type":"structure","members":{}}},"DescribeEngagement":{"input":{"type":"structure","required":["EngagementId"],"members":{"EngagementId":{}}},"output":{"type":"structure","required":["ContactArn","EngagementArn","Sender","Subject","Content"],"members":{"ContactArn":{},"EngagementArn":{},"Sender":{},"Subject":{},"Content":{},"PublicSubject":{},"PublicContent":{},"IncidentId":{},"StartTime":{"type":"timestamp"},"StopTime":{"type":"timestamp"}}}},"DescribePage":{"input":{"type":"structure","required":["PageId"],"members":{"PageId":{}}},"output":{"type":"structure","required":["PageArn","EngagementArn","ContactArn","Sender","Subject","Content"],"members":{"PageArn":{},"EngagementArn":{},"ContactArn":{},"Sender":{},"Subject":{},"Content":{},"PublicSubject":{},"PublicContent":{},"IncidentId":{},"SentTime":{"type":"timestamp"},"ReadTime":{"type":"timestamp"},"DeliveryTime":{"type":"timestamp"}}}},"GetContact":{"input":{"type":"structure","required":["ContactId"],"members":{"ContactId":{}}},"output":{"type":"structure","required":["ContactArn","Alias","Type","Plan"],"members":{"ContactArn":{},"Alias":{},"DisplayName":{},"Type":{},"Plan":{"shape":"Sf"}}}},"GetContactChannel":{"input":{"type":"structure","required":["ContactChannelId"],"members":{"ContactChannelId":{}}},"output":{"type":"structure","required":["ContactArn","ContactChannelArn","Name","Type","DeliveryAddress"],"members":{"ContactArn":{},"ContactChannelArn":{},"Name":{},"Type":{},"DeliveryAddress":{"shape":"Sy"},"ActivationStatus":{}}}},"GetContactPolicy":{"input":{"type":"structure","required":["ContactArn"],"members":{"ContactArn":{}}},"output":{"type":"structure","members":{"ContactArn":{},"Policy":{}}}},"ListContactChannels":{"input":{"type":"structure","required":["ContactId"],"members":{"ContactId":{},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","required":["ContactChannels"],"members":{"NextToken":{},"ContactChannels":{"type":"list","member":{"type":"structure","required":["ContactChannelArn","ContactArn","Name","DeliveryAddress","ActivationStatus"],"members":{"ContactChannelArn":{},"ContactArn":{},"Name":{},"Type":{},"DeliveryAddress":{"shape":"Sy"},"ActivationStatus":{}}}}}}},"ListContacts":{"input":{"type":"structure","members":{"NextToken":{},"MaxResults":{"type":"integer"},"AliasPrefix":{},"Type":{}}},"output":{"type":"structure","members":{"NextToken":{},"Contacts":{"type":"list","member":{"type":"structure","required":["ContactArn","Alias","Type"],"members":{"ContactArn":{},"Alias":{},"DisplayName":{},"Type":{}}}}}}},"ListEngagements":{"input":{"type":"structure","members":{"NextToken":{},"MaxResults":{"type":"integer"},"IncidentId":{},"TimeRangeValue":{"type":"structure","members":{"StartTime":{"type":"timestamp"},"EndTime":{"type":"timestamp"}}}}},"output":{"type":"structure","required":["Engagements"],"members":{"NextToken":{},"Engagements":{"type":"list","member":{"type":"structure","required":["EngagementArn","ContactArn","Sender"],"members":{"EngagementArn":{},"ContactArn":{},"Sender":{},"IncidentId":{},"StartTime":{"type":"timestamp"},"StopTime":{"type":"timestamp"}}}}}}},"ListPageReceipts":{"input":{"type":"structure","required":["PageId"],"members":{"PageId":{},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"NextToken":{},"Receipts":{"type":"list","member":{"type":"structure","required":["ReceiptType","ReceiptTime"],"members":{"ContactChannelArn":{},"ReceiptType":{},"ReceiptInfo":{},"ReceiptTime":{"type":"timestamp"}}}}}}},"ListPagesByContact":{"input":{"type":"structure","required":["ContactId"],"members":{"ContactId":{},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","required":["Pages"],"members":{"NextToken":{},"Pages":{"shape":"S2d"}}}},"ListPagesByEngagement":{"input":{"type":"structure","required":["EngagementId"],"members":{"EngagementId":{},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","required":["Pages"],"members":{"NextToken":{},"Pages":{"shape":"S2d"}}}},"ListTagsForResource":{"input":{"type":"structure","required":["ResourceARN"],"members":{"ResourceARN":{}}},"output":{"type":"structure","members":{"Tags":{"shape":"Sp"}}}},"PutContactPolicy":{"input":{"type":"structure","required":["ContactArn","Policy"],"members":{"ContactArn":{},"Policy":{}}},"output":{"type":"structure","members":{}}},"SendActivationCode":{"input":{"type":"structure","required":["ContactChannelId"],"members":{"ContactChannelId":{}}},"output":{"type":"structure","members":{}}},"StartEngagement":{"input":{"type":"structure","required":["ContactId","Sender","Subject","Content"],"members":{"ContactId":{},"Sender":{},"Subject":{},"Content":{},"PublicSubject":{},"PublicContent":{},"IncidentId":{},"IdempotencyToken":{"idempotencyToken":true}}},"output":{"type":"structure","required":["EngagementArn"],"members":{"EngagementArn":{}}}},"StopEngagement":{"input":{"type":"structure","required":["EngagementId"],"members":{"EngagementId":{},"Reason":{}}},"output":{"type":"structure","members":{}}},"TagResource":{"input":{"type":"structure","required":["ResourceARN","Tags"],"members":{"ResourceARN":{},"Tags":{"shape":"Sp"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"input":{"type":"structure","required":["ResourceARN","TagKeys"],"members":{"ResourceARN":{},"TagKeys":{"type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateContact":{"input":{"type":"structure","required":["ContactId"],"members":{"ContactId":{},"DisplayName":{},"Plan":{"shape":"Sf"}}},"output":{"type":"structure","members":{}}},"UpdateContactChannel":{"input":{"type":"structure","required":["ContactChannelId"],"members":{"ContactChannelId":{},"Name":{},"DeliveryAddress":{"shape":"Sy"}}},"output":{"type":"structure","members":{}}}},"shapes":{"Sf":{"type":"structure","required":["Stages"],"members":{"Stages":{"type":"list","member":{"type":"structure","required":["DurationInMinutes","Targets"],"members":{"DurationInMinutes":{"type":"integer"},"Targets":{"type":"list","member":{"type":"structure","members":{"ChannelTargetInfo":{"type":"structure","required":["ContactChannelId"],"members":{"ContactChannelId":{},"RetryIntervalInMinutes":{"type":"integer"}}},"ContactTargetInfo":{"type":"structure","required":["IsEssential"],"members":{"ContactId":{},"IsEssential":{"type":"boolean"}}}}}}}}}}},"Sp":{"type":"list","member":{"type":"structure","members":{"Key":{},"Value":{}}}},"Sy":{"type":"structure","members":{"SimpleAddress":{}}},"S2d":{"type":"list","member":{"type":"structure","required":["PageArn","EngagementArn","ContactArn","Sender"],"members":{"PageArn":{},"EngagementArn":{},"ContactArn":{},"Sender":{},"IncidentId":{},"SentTime":{"type":"timestamp"},"DeliveryTime":{"type":"timestamp"},"ReadTime":{"type":"timestamp"}}}}}}
54459
54398
 
54460
54399
  /***/ }),
54461
- /* 1019 */
54400
+ /* 1015 */
54462
54401
  /***/ (function(module, exports) {
54463
54402
 
54464
54403
  module.exports = {"pagination":{"ListContactChannels":{"input_token":"NextToken","limit_key":"MaxResults","output_token":"NextToken","result_key":"ContactChannels"},"ListContacts":{"input_token":"NextToken","limit_key":"MaxResults","output_token":"NextToken","result_key":"Contacts"},"ListEngagements":{"input_token":"NextToken","limit_key":"MaxResults","output_token":"NextToken","result_key":"Engagements"},"ListPageReceipts":{"input_token":"NextToken","limit_key":"MaxResults","output_token":"NextToken","result_key":"Receipts"},"ListPagesByContact":{"input_token":"NextToken","limit_key":"MaxResults","output_token":"NextToken","result_key":"Pages"},"ListPagesByEngagement":{"input_token":"NextToken","limit_key":"MaxResults","output_token":"NextToken","result_key":"Pages"}}}
54465
54404
 
54466
54405
  /***/ }),
54467
- /* 1020 */
54406
+ /* 1016 */
54468
54407
  /***/ (function(module, exports, __webpack_require__) {
54469
54408
 
54470
54409
  __webpack_require__(2);
@@ -54476,9 +54415,9 @@ return /******/ (function(modules) { // webpackBootstrap
54476
54415
  AWS.SSMIncidents = Service.defineService('ssmincidents', ['2018-05-10']);
54477
54416
  Object.defineProperty(apiLoader.services['ssmincidents'], '2018-05-10', {
54478
54417
  get: function get() {
54479
- var model = __webpack_require__(1021);
54480
- model.paginators = __webpack_require__(1022).pagination;
54481
- model.waiters = __webpack_require__(1023).waiters;
54418
+ var model = __webpack_require__(1017);
54419
+ model.paginators = __webpack_require__(1018).pagination;
54420
+ model.waiters = __webpack_require__(1019).waiters;
54482
54421
  return model;
54483
54422
  },
54484
54423
  enumerable: true,
@@ -54489,25 +54428,25 @@ return /******/ (function(modules) { // webpackBootstrap
54489
54428
 
54490
54429
 
54491
54430
  /***/ }),
54492
- /* 1021 */
54431
+ /* 1017 */
54493
54432
  /***/ (function(module, exports) {
54494
54433
 
54495
54434
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2018-05-10","endpointPrefix":"ssm-incidents","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"SSM Incidents","serviceFullName":"AWS Systems Manager Incident Manager","serviceId":"SSM Incidents","signatureVersion":"v4","signingName":"ssm-incidents","uid":"ssm-incidents-2018-05-10"},"operations":{"CreateReplicationSet":{"http":{"requestUri":"/createReplicationSet","responseCode":201},"input":{"type":"structure","required":["regions"],"members":{"clientToken":{"idempotencyToken":true},"regions":{"type":"map","key":{},"value":{"type":"structure","members":{"sseKmsKeyId":{}}}}}},"output":{"type":"structure","required":["arn"],"members":{"arn":{}}}},"CreateResponsePlan":{"http":{"requestUri":"/createResponsePlan","responseCode":201},"input":{"type":"structure","required":["incidentTemplate","name"],"members":{"actions":{"shape":"Sa"},"chatChannel":{"shape":"Sl"},"clientToken":{"idempotencyToken":true},"displayName":{},"engagements":{"shape":"Sq"},"incidentTemplate":{"shape":"Ss"},"name":{},"tags":{"shape":"S10"}}},"output":{"type":"structure","required":["arn"],"members":{"arn":{}}},"idempotent":true},"CreateTimelineEvent":{"http":{"requestUri":"/createTimelineEvent","responseCode":201},"input":{"type":"structure","required":["eventData","eventTime","eventType","incidentRecordArn"],"members":{"clientToken":{"idempotencyToken":true},"eventData":{},"eventTime":{"type":"timestamp"},"eventType":{},"incidentRecordArn":{}}},"output":{"type":"structure","required":["eventId","incidentRecordArn"],"members":{"eventId":{},"incidentRecordArn":{}}},"idempotent":true},"DeleteIncidentRecord":{"http":{"requestUri":"/deleteIncidentRecord","responseCode":204},"input":{"type":"structure","required":["arn"],"members":{"arn":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteReplicationSet":{"http":{"requestUri":"/deleteReplicationSet","responseCode":204},"input":{"type":"structure","required":["arn"],"members":{"arn":{"location":"querystring","locationName":"arn"}}},"output":{"type":"structure","members":{}}},"DeleteResourcePolicy":{"http":{"requestUri":"/deleteResourcePolicy","responseCode":200},"input":{"type":"structure","required":["policyId","resourceArn"],"members":{"policyId":{},"resourceArn":{}}},"output":{"type":"structure","members":{}}},"DeleteResponsePlan":{"http":{"requestUri":"/deleteResponsePlan","responseCode":204},"input":{"type":"structure","required":["arn"],"members":{"arn":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteTimelineEvent":{"http":{"requestUri":"/deleteTimelineEvent","responseCode":204},"input":{"type":"structure","required":["eventId","incidentRecordArn"],"members":{"eventId":{},"incidentRecordArn":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"GetIncidentRecord":{"http":{"method":"GET","requestUri":"/getIncidentRecord","responseCode":200},"input":{"type":"structure","required":["arn"],"members":{"arn":{"location":"querystring","locationName":"arn"}}},"output":{"type":"structure","required":["incidentRecord"],"members":{"incidentRecord":{"type":"structure","required":["arn","creationTime","dedupeString","impact","incidentRecordSource","lastModifiedBy","lastModifiedTime","status","title"],"members":{"arn":{},"automationExecutions":{"type":"list","member":{"type":"structure","members":{"ssmExecutionArn":{}},"union":true}},"chatChannel":{"shape":"Sl"},"creationTime":{"type":"timestamp"},"dedupeString":{},"impact":{"type":"integer"},"incidentRecordSource":{"shape":"S1q"},"lastModifiedBy":{},"lastModifiedTime":{"type":"timestamp"},"notificationTargets":{"shape":"Sv"},"resolvedTime":{"type":"timestamp"},"status":{},"summary":{},"title":{}}}}}},"GetReplicationSet":{"http":{"method":"GET","requestUri":"/getReplicationSet","responseCode":200},"input":{"type":"structure","required":["arn"],"members":{"arn":{"location":"querystring","locationName":"arn"}}},"output":{"type":"structure","required":["replicationSet"],"members":{"replicationSet":{"type":"structure","required":["createdBy","createdTime","deletionProtected","lastModifiedBy","lastModifiedTime","regionMap","status"],"members":{"arn":{},"createdBy":{},"createdTime":{"type":"timestamp"},"deletionProtected":{"type":"boolean"},"lastModifiedBy":{},"lastModifiedTime":{"type":"timestamp"},"regionMap":{"type":"map","key":{},"value":{"type":"structure","required":["status","statusUpdateDateTime"],"members":{"sseKmsKeyId":{},"status":{},"statusMessage":{},"statusUpdateDateTime":{"type":"timestamp"}}}},"status":{}}}}}},"GetResourcePolicies":{"http":{"requestUri":"/getResourcePolicies","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"maxResults":{"type":"integer"},"nextToken":{},"resourceArn":{"location":"querystring","locationName":"resourceArn"}}},"output":{"type":"structure","required":["resourcePolicies"],"members":{"nextToken":{},"resourcePolicies":{"type":"list","member":{"type":"structure","required":["policyDocument","policyId","ramResourceShareRegion"],"members":{"policyDocument":{},"policyId":{},"ramResourceShareRegion":{}}}}}}},"GetResponsePlan":{"http":{"method":"GET","requestUri":"/getResponsePlan","responseCode":200},"input":{"type":"structure","required":["arn"],"members":{"arn":{"location":"querystring","locationName":"arn"}}},"output":{"type":"structure","required":["arn","incidentTemplate","name"],"members":{"actions":{"shape":"Sa"},"arn":{},"chatChannel":{"shape":"Sl"},"displayName":{},"engagements":{"shape":"Sq"},"incidentTemplate":{"shape":"Ss"},"name":{}}}},"GetTimelineEvent":{"http":{"method":"GET","requestUri":"/getTimelineEvent","responseCode":200},"input":{"type":"structure","required":["eventId","incidentRecordArn"],"members":{"eventId":{"location":"querystring","locationName":"eventId"},"incidentRecordArn":{"location":"querystring","locationName":"incidentRecordArn"}}},"output":{"type":"structure","required":["event"],"members":{"event":{"type":"structure","required":["eventData","eventId","eventTime","eventType","eventUpdatedTime","incidentRecordArn"],"members":{"eventData":{},"eventId":{},"eventTime":{"type":"timestamp"},"eventType":{},"eventUpdatedTime":{"type":"timestamp"},"incidentRecordArn":{}}}}}},"ListIncidentRecords":{"http":{"requestUri":"/listIncidentRecords","responseCode":200},"input":{"type":"structure","members":{"filters":{"shape":"S2f"},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["incidentRecordSummaries"],"members":{"incidentRecordSummaries":{"type":"list","member":{"type":"structure","required":["arn","creationTime","impact","incidentRecordSource","status","title"],"members":{"arn":{},"creationTime":{"type":"timestamp"},"impact":{"type":"integer"},"incidentRecordSource":{"shape":"S1q"},"resolvedTime":{"type":"timestamp"},"status":{},"title":{}}}},"nextToken":{}}}},"ListRelatedItems":{"http":{"requestUri":"/listRelatedItems","responseCode":200},"input":{"type":"structure","required":["incidentRecordArn"],"members":{"incidentRecordArn":{},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["relatedItems"],"members":{"nextToken":{},"relatedItems":{"shape":"S2t"}}}},"ListReplicationSets":{"http":{"requestUri":"/listReplicationSets","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["replicationSetArns"],"members":{"nextToken":{},"replicationSetArns":{"type":"list","member":{}}}}},"ListResponsePlans":{"http":{"requestUri":"/listResponsePlans","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["responsePlanSummaries"],"members":{"nextToken":{},"responsePlanSummaries":{"type":"list","member":{"type":"structure","required":["arn","name"],"members":{"arn":{},"displayName":{},"name":{}}}}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","required":["tags"],"members":{"tags":{"shape":"S10"}}}},"ListTimelineEvents":{"http":{"requestUri":"/listTimelineEvents","responseCode":200},"input":{"type":"structure","required":["incidentRecordArn"],"members":{"filters":{"shape":"S2f"},"incidentRecordArn":{},"maxResults":{"type":"integer"},"nextToken":{},"sortBy":{},"sortOrder":{}}},"output":{"type":"structure","required":["eventSummaries"],"members":{"eventSummaries":{"type":"list","member":{"type":"structure","required":["eventId","eventTime","eventType","eventUpdatedTime","incidentRecordArn"],"members":{"eventId":{},"eventTime":{"type":"timestamp"},"eventType":{},"eventUpdatedTime":{"type":"timestamp"},"incidentRecordArn":{}}}},"nextToken":{}}}},"PutResourcePolicy":{"http":{"requestUri":"/putResourcePolicy","responseCode":200},"input":{"type":"structure","required":["policy","resourceArn"],"members":{"policy":{},"resourceArn":{}}},"output":{"type":"structure","required":["policyId"],"members":{"policyId":{}}}},"StartIncident":{"http":{"requestUri":"/startIncident","responseCode":200},"input":{"type":"structure","required":["responsePlanArn"],"members":{"clientToken":{"idempotencyToken":true},"impact":{"type":"integer"},"relatedItems":{"shape":"S2t"},"responsePlanArn":{},"title":{},"triggerDetails":{"type":"structure","required":["source","timestamp"],"members":{"rawData":{},"source":{},"timestamp":{"type":"timestamp"},"triggerArn":{}}}}},"output":{"type":"structure","required":["incidentRecordArn"],"members":{"incidentRecordArn":{}}},"idempotent":true},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":204},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"S10"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":204},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateDeletionProtection":{"http":{"requestUri":"/updateDeletionProtection","responseCode":204},"input":{"type":"structure","required":["arn","deletionProtected"],"members":{"arn":{},"clientToken":{"idempotencyToken":true},"deletionProtected":{"type":"boolean"}}},"output":{"type":"structure","members":{}}},"UpdateIncidentRecord":{"http":{"requestUri":"/updateIncidentRecord","responseCode":204},"input":{"type":"structure","required":["arn"],"members":{"arn":{},"chatChannel":{"shape":"Sl"},"clientToken":{"idempotencyToken":true},"impact":{"type":"integer"},"notificationTargets":{"shape":"Sv"},"status":{},"summary":{},"title":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateRelatedItems":{"http":{"requestUri":"/updateRelatedItems","responseCode":204},"input":{"type":"structure","required":["incidentRecordArn","relatedItemsUpdate"],"members":{"clientToken":{"idempotencyToken":true},"incidentRecordArn":{},"relatedItemsUpdate":{"type":"structure","members":{"itemToAdd":{"shape":"S2u"},"itemToRemove":{"shape":"S2v"}},"union":true}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateReplicationSet":{"http":{"requestUri":"/updateReplicationSet","responseCode":204},"input":{"type":"structure","required":["actions","arn"],"members":{"actions":{"type":"list","member":{"type":"structure","members":{"addRegionAction":{"type":"structure","required":["regionName"],"members":{"regionName":{},"sseKmsKeyId":{}}},"deleteRegionAction":{"type":"structure","required":["regionName"],"members":{"regionName":{}}}},"union":true}},"arn":{},"clientToken":{"idempotencyToken":true}}},"output":{"type":"structure","members":{}}},"UpdateResponsePlan":{"http":{"requestUri":"/updateResponsePlan","responseCode":204},"input":{"type":"structure","required":["arn"],"members":{"actions":{"shape":"Sa"},"arn":{},"chatChannel":{"shape":"Sl"},"clientToken":{"idempotencyToken":true},"displayName":{},"engagements":{"shape":"Sq"},"incidentTemplateDedupeString":{},"incidentTemplateImpact":{"type":"integer"},"incidentTemplateNotificationTargets":{"shape":"Sv"},"incidentTemplateSummary":{},"incidentTemplateTitle":{}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateTimelineEvent":{"http":{"requestUri":"/updateTimelineEvent","responseCode":204},"input":{"type":"structure","required":["eventId","incidentRecordArn"],"members":{"clientToken":{"idempotencyToken":true},"eventData":{},"eventId":{},"eventTime":{"type":"timestamp"},"eventType":{},"incidentRecordArn":{}}},"output":{"type":"structure","members":{}},"idempotent":true}},"shapes":{"Sa":{"type":"list","member":{"type":"structure","members":{"ssmAutomation":{"type":"structure","required":["documentName","roleArn"],"members":{"documentName":{},"documentVersion":{},"parameters":{"type":"map","key":{},"value":{"type":"list","member":{}}},"roleArn":{},"targetAccount":{}}}},"union":true}},"Sl":{"type":"structure","members":{"chatbotSns":{"type":"list","member":{}},"empty":{"type":"structure","members":{}}},"union":true},"Sq":{"type":"list","member":{}},"Ss":{"type":"structure","required":["impact","title"],"members":{"dedupeString":{},"impact":{"type":"integer"},"notificationTargets":{"shape":"Sv"},"summary":{},"title":{}}},"Sv":{"type":"list","member":{"type":"structure","members":{"snsTopicArn":{}},"union":true}},"S10":{"type":"map","key":{},"value":{}},"S1q":{"type":"structure","required":["createdBy","source"],"members":{"createdBy":{},"invokedBy":{},"resourceArn":{},"source":{}}},"S2f":{"type":"list","member":{"type":"structure","required":["condition","key"],"members":{"condition":{"type":"structure","members":{"after":{"type":"timestamp"},"before":{"type":"timestamp"},"equals":{"type":"structure","members":{"integerValues":{"type":"list","member":{"type":"integer"}},"stringValues":{"type":"list","member":{}}},"union":true}},"union":true},"key":{}}}},"S2t":{"type":"list","member":{"shape":"S2u"}},"S2u":{"type":"structure","required":["identifier"],"members":{"identifier":{"shape":"S2v"},"title":{}}},"S2v":{"type":"structure","required":["type","value"],"members":{"type":{},"value":{"type":"structure","members":{"arn":{},"metricDefinition":{},"url":{}},"union":true}}}}}
54496
54435
 
54497
54436
  /***/ }),
54498
- /* 1022 */
54437
+ /* 1018 */
54499
54438
  /***/ (function(module, exports) {
54500
54439
 
54501
54440
  module.exports = {"pagination":{"GetResourcePolicies":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"resourcePolicies"},"ListIncidentRecords":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"incidentRecordSummaries"},"ListRelatedItems":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"relatedItems"},"ListReplicationSets":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"replicationSetArns"},"ListResponsePlans":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"responsePlanSummaries"},"ListTimelineEvents":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"eventSummaries"}}}
54502
54441
 
54503
54442
  /***/ }),
54504
- /* 1023 */
54443
+ /* 1019 */
54505
54444
  /***/ (function(module, exports) {
54506
54445
 
54507
54446
  module.exports = {"version":2,"waiters":{"WaitForReplicationSetActive":{"description":"Wait for a replication set to become ACTIVE","delay":30,"maxAttempts":5,"operation":"GetReplicationSet","acceptors":[{"matcher":"path","argument":"replicationSet.status","state":"success","expected":"ACTIVE"},{"matcher":"path","argument":"replicationSet.status","state":"retry","expected":"CREATING"},{"matcher":"path","argument":"replicationSet.status","state":"retry","expected":"UPDATING"},{"matcher":"path","argument":"replicationSet.status","state":"failure","expected":"FAILED"}]},"WaitForReplicationSetDeleted":{"description":"Wait for a replication set to be deleted","delay":30,"maxAttempts":5,"operation":"GetReplicationSet","acceptors":[{"matcher":"error","state":"success","expected":"ResourceNotFoundException"},{"matcher":"path","argument":"replicationSet.status","state":"retry","expected":"DELETING"},{"matcher":"path","argument":"replicationSet.status","state":"failure","expected":"FAILED"}]}}}
54508
54447
 
54509
54448
  /***/ }),
54510
- /* 1024 */
54449
+ /* 1020 */
54511
54450
  /***/ (function(module, exports, __webpack_require__) {
54512
54451
 
54513
54452
  __webpack_require__(2);
@@ -54519,8 +54458,8 @@ return /******/ (function(modules) { // webpackBootstrap
54519
54458
  AWS.ApplicationCostProfiler = Service.defineService('applicationcostprofiler', ['2020-09-10']);
54520
54459
  Object.defineProperty(apiLoader.services['applicationcostprofiler'], '2020-09-10', {
54521
54460
  get: function get() {
54522
- var model = __webpack_require__(1025);
54523
- model.paginators = __webpack_require__(1026).pagination;
54461
+ var model = __webpack_require__(1021);
54462
+ model.paginators = __webpack_require__(1022).pagination;
54524
54463
  return model;
54525
54464
  },
54526
54465
  enumerable: true,
@@ -54531,19 +54470,19 @@ return /******/ (function(modules) { // webpackBootstrap
54531
54470
 
54532
54471
 
54533
54472
  /***/ }),
54534
- /* 1025 */
54473
+ /* 1021 */
54535
54474
  /***/ (function(module, exports) {
54536
54475
 
54537
54476
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-09-10","endpointPrefix":"application-cost-profiler","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"AWS Application Cost Profiler","serviceId":"ApplicationCostProfiler","signatureVersion":"v4","signingName":"application-cost-profiler","uid":"AWSApplicationCostProfiler-2020-09-10"},"operations":{"DeleteReportDefinition":{"http":{"method":"DELETE","requestUri":"/reportDefinition/{reportId}"},"input":{"type":"structure","required":["reportId"],"members":{"reportId":{"location":"uri","locationName":"reportId"}}},"output":{"type":"structure","members":{"reportId":{}}}},"GetReportDefinition":{"http":{"method":"GET","requestUri":"/reportDefinition/{reportId}"},"input":{"type":"structure","required":["reportId"],"members":{"reportId":{"location":"uri","locationName":"reportId"}}},"output":{"type":"structure","required":["reportId","reportDescription","reportFrequency","format","destinationS3Location","createdAt","lastUpdated"],"members":{"reportId":{},"reportDescription":{},"reportFrequency":{},"format":{},"destinationS3Location":{"shape":"S9"},"createdAt":{"type":"timestamp"},"lastUpdated":{"type":"timestamp"}}}},"ImportApplicationUsage":{"http":{"requestUri":"/importApplicationUsage"},"input":{"type":"structure","required":["sourceS3Location"],"members":{"sourceS3Location":{"type":"structure","required":["bucket","key"],"members":{"bucket":{},"key":{},"region":{}}}}},"output":{"type":"structure","required":["importId"],"members":{"importId":{}}}},"ListReportDefinitions":{"http":{"method":"GET","requestUri":"/reportDefinition"},"input":{"type":"structure","members":{"nextToken":{"location":"querystring","locationName":"nextToken"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","members":{"reportDefinitions":{"type":"list","member":{"type":"structure","members":{"reportId":{},"reportDescription":{},"reportFrequency":{},"format":{},"destinationS3Location":{"shape":"S9"},"createdAt":{"type":"timestamp"},"lastUpdatedAt":{"type":"timestamp"}}}},"nextToken":{}}}},"PutReportDefinition":{"http":{"requestUri":"/reportDefinition"},"input":{"type":"structure","required":["reportId","reportDescription","reportFrequency","format","destinationS3Location"],"members":{"reportId":{},"reportDescription":{},"reportFrequency":{},"format":{},"destinationS3Location":{"shape":"S9"}}},"output":{"type":"structure","members":{"reportId":{}}}},"UpdateReportDefinition":{"http":{"method":"PUT","requestUri":"/reportDefinition/{reportId}"},"input":{"type":"structure","required":["reportId","reportDescription","reportFrequency","format","destinationS3Location"],"members":{"reportId":{"location":"uri","locationName":"reportId"},"reportDescription":{},"reportFrequency":{},"format":{},"destinationS3Location":{"shape":"S9"}}},"output":{"type":"structure","members":{"reportId":{}}}}},"shapes":{"S9":{"type":"structure","required":["bucket","prefix"],"members":{"bucket":{},"prefix":{}}}}}
54538
54477
 
54539
54478
  /***/ }),
54540
- /* 1026 */
54479
+ /* 1022 */
54541
54480
  /***/ (function(module, exports) {
54542
54481
 
54543
54482
  module.exports = {"pagination":{"ListReportDefinitions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"reportDefinitions"}}}
54544
54483
 
54545
54484
  /***/ }),
54546
- /* 1027 */
54485
+ /* 1023 */
54547
54486
  /***/ (function(module, exports, __webpack_require__) {
54548
54487
 
54549
54488
  __webpack_require__(2);
@@ -54555,8 +54494,8 @@ return /******/ (function(modules) { // webpackBootstrap
54555
54494
  AWS.AppRunner = Service.defineService('apprunner', ['2020-05-15']);
54556
54495
  Object.defineProperty(apiLoader.services['apprunner'], '2020-05-15', {
54557
54496
  get: function get() {
54558
- var model = __webpack_require__(1028);
54559
- model.paginators = __webpack_require__(1029).pagination;
54497
+ var model = __webpack_require__(1024);
54498
+ model.paginators = __webpack_require__(1025).pagination;
54560
54499
  return model;
54561
54500
  },
54562
54501
  enumerable: true,
@@ -54567,19 +54506,19 @@ return /******/ (function(modules) { // webpackBootstrap
54567
54506
 
54568
54507
 
54569
54508
  /***/ }),
54570
- /* 1028 */
54509
+ /* 1024 */
54571
54510
  /***/ (function(module, exports) {
54572
54511
 
54573
54512
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-05-15","endpointPrefix":"apprunner","jsonVersion":"1.0","protocol":"json","serviceFullName":"AWS App Runner","serviceId":"AppRunner","signatureVersion":"v4","signingName":"apprunner","targetPrefix":"AppRunner","uid":"apprunner-2020-05-15"},"operations":{"AssociateCustomDomain":{"input":{"type":"structure","required":["ServiceArn","DomainName"],"members":{"ServiceArn":{},"DomainName":{},"EnableWWWSubdomain":{"type":"boolean"}}},"output":{"type":"structure","required":["DNSTarget","ServiceArn","CustomDomain"],"members":{"DNSTarget":{},"ServiceArn":{},"CustomDomain":{"shape":"S7"}}}},"CreateAutoScalingConfiguration":{"input":{"type":"structure","required":["AutoScalingConfigurationName"],"members":{"AutoScalingConfigurationName":{},"MaxConcurrency":{"type":"integer"},"MinSize":{"type":"integer"},"MaxSize":{"type":"integer"},"Tags":{"shape":"Sh"}}},"output":{"type":"structure","required":["AutoScalingConfiguration"],"members":{"AutoScalingConfiguration":{"shape":"Sm"}}}},"CreateConnection":{"input":{"type":"structure","required":["ConnectionName","ProviderType"],"members":{"ConnectionName":{},"ProviderType":{},"Tags":{"shape":"Sh"}}},"output":{"type":"structure","required":["Connection"],"members":{"Connection":{"shape":"Sv"}}}},"CreateService":{"input":{"type":"structure","required":["ServiceName","SourceConfiguration"],"members":{"ServiceName":{},"SourceConfiguration":{"shape":"Sz"},"InstanceConfiguration":{"shape":"S1i"},"Tags":{"shape":"Sh"},"EncryptionConfiguration":{"shape":"S1l"},"HealthCheckConfiguration":{"shape":"S1n"},"AutoScalingConfigurationArn":{}}},"output":{"type":"structure","required":["Service","OperationId"],"members":{"Service":{"shape":"S1v"},"OperationId":{}}}},"DeleteAutoScalingConfiguration":{"input":{"type":"structure","required":["AutoScalingConfigurationArn"],"members":{"AutoScalingConfigurationArn":{}}},"output":{"type":"structure","required":["AutoScalingConfiguration"],"members":{"AutoScalingConfiguration":{"shape":"Sm"}}}},"DeleteConnection":{"input":{"type":"structure","required":["ConnectionArn"],"members":{"ConnectionArn":{}}},"output":{"type":"structure","members":{"Connection":{"shape":"Sv"}}}},"DeleteService":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{}}},"output":{"type":"structure","required":["Service","OperationId"],"members":{"Service":{"shape":"S1v"},"OperationId":{}}}},"DescribeAutoScalingConfiguration":{"input":{"type":"structure","required":["AutoScalingConfigurationArn"],"members":{"AutoScalingConfigurationArn":{}}},"output":{"type":"structure","required":["AutoScalingConfiguration"],"members":{"AutoScalingConfiguration":{"shape":"Sm"}}}},"DescribeCustomDomains":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","required":["DNSTarget","ServiceArn","CustomDomains"],"members":{"DNSTarget":{},"ServiceArn":{},"CustomDomains":{"type":"list","member":{"shape":"S7"}},"NextToken":{}}}},"DescribeService":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{}}},"output":{"type":"structure","required":["Service"],"members":{"Service":{"shape":"S1v"}}}},"DisassociateCustomDomain":{"input":{"type":"structure","required":["ServiceArn","DomainName"],"members":{"ServiceArn":{},"DomainName":{}}},"output":{"type":"structure","required":["DNSTarget","ServiceArn","CustomDomain"],"members":{"DNSTarget":{},"ServiceArn":{},"CustomDomain":{"shape":"S7"}}}},"ListAutoScalingConfigurations":{"input":{"type":"structure","members":{"AutoScalingConfigurationName":{},"LatestOnly":{"type":"boolean"},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","required":["AutoScalingConfigurationSummaryList"],"members":{"AutoScalingConfigurationSummaryList":{"type":"list","member":{"shape":"S1y"}},"NextToken":{}}}},"ListConnections":{"input":{"type":"structure","members":{"ConnectionName":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","required":["ConnectionSummaryList"],"members":{"ConnectionSummaryList":{"type":"list","member":{"type":"structure","members":{"ConnectionName":{},"ConnectionArn":{},"ProviderType":{},"Status":{},"CreatedAt":{"type":"timestamp"}}}},"NextToken":{}}}},"ListOperations":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{},"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","members":{"OperationSummaryList":{"type":"list","member":{"type":"structure","members":{"Id":{},"Type":{},"Status":{},"TargetArn":{},"StartedAt":{"type":"timestamp"},"EndedAt":{"type":"timestamp"},"UpdatedAt":{"type":"timestamp"}}}},"NextToken":{}}}},"ListServices":{"input":{"type":"structure","members":{"NextToken":{},"MaxResults":{"type":"integer"}}},"output":{"type":"structure","required":["ServiceSummaryList"],"members":{"ServiceSummaryList":{"type":"list","member":{"type":"structure","members":{"ServiceName":{},"ServiceId":{},"ServiceArn":{},"ServiceUrl":{},"CreatedAt":{"type":"timestamp"},"UpdatedAt":{"type":"timestamp"},"Status":{}}}},"NextToken":{}}}},"ListTagsForResource":{"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{}}},"output":{"type":"structure","members":{"Tags":{"shape":"Sh"}}}},"PauseService":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{}}},"output":{"type":"structure","required":["Service"],"members":{"Service":{"shape":"S1v"},"OperationId":{}}}},"ResumeService":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{}}},"output":{"type":"structure","required":["Service"],"members":{"Service":{"shape":"S1v"},"OperationId":{}}}},"StartDeployment":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{}}},"output":{"type":"structure","required":["OperationId"],"members":{"OperationId":{}}}},"TagResource":{"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{},"Tags":{"shape":"Sh"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{},"TagKeys":{"type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateService":{"input":{"type":"structure","required":["ServiceArn"],"members":{"ServiceArn":{},"SourceConfiguration":{"shape":"Sz"},"InstanceConfiguration":{"shape":"S1i"},"AutoScalingConfigurationArn":{},"HealthCheckConfiguration":{"shape":"S1n"}}},"output":{"type":"structure","required":["Service","OperationId"],"members":{"Service":{"shape":"S1v"},"OperationId":{}}}}},"shapes":{"S7":{"type":"structure","required":["DomainName","EnableWWWSubdomain","Status"],"members":{"DomainName":{},"EnableWWWSubdomain":{"type":"boolean"},"CertificateValidationRecords":{"type":"list","member":{"type":"structure","members":{"Name":{},"Type":{},"Value":{},"Status":{}}}},"Status":{}}},"Sh":{"type":"list","member":{"type":"structure","members":{"Key":{},"Value":{}}}},"Sm":{"type":"structure","members":{"AutoScalingConfigurationArn":{},"AutoScalingConfigurationName":{},"AutoScalingConfigurationRevision":{"type":"integer"},"Latest":{"type":"boolean"},"Status":{},"MaxConcurrency":{"type":"integer"},"MinSize":{"type":"integer"},"MaxSize":{"type":"integer"},"CreatedAt":{"type":"timestamp"},"DeletedAt":{"type":"timestamp"}}},"Sv":{"type":"structure","members":{"ConnectionName":{},"ConnectionArn":{},"ProviderType":{},"Status":{},"CreatedAt":{"type":"timestamp"}}},"Sz":{"type":"structure","members":{"CodeRepository":{"type":"structure","required":["RepositoryUrl","SourceCodeVersion"],"members":{"RepositoryUrl":{},"SourceCodeVersion":{"type":"structure","required":["Type","Value"],"members":{"Type":{},"Value":{}}},"CodeConfiguration":{"type":"structure","required":["ConfigurationSource"],"members":{"ConfigurationSource":{},"CodeConfigurationValues":{"type":"structure","required":["Runtime"],"members":{"Runtime":{},"BuildCommand":{"type":"string","sensitive":true},"StartCommand":{"type":"string","sensitive":true},"Port":{},"RuntimeEnvironmentVariables":{"shape":"S19"}}}}}}},"ImageRepository":{"type":"structure","required":["ImageIdentifier","ImageRepositoryType"],"members":{"ImageIdentifier":{},"ImageConfiguration":{"type":"structure","members":{"RuntimeEnvironmentVariables":{"shape":"S19"},"StartCommand":{},"Port":{}}},"ImageRepositoryType":{}}},"AutoDeploymentsEnabled":{"type":"boolean"},"AuthenticationConfiguration":{"type":"structure","members":{"ConnectionArn":{},"AccessRoleArn":{}}}}},"S19":{"type":"map","key":{"type":"string","sensitive":true},"value":{"type":"string","sensitive":true}},"S1i":{"type":"structure","members":{"Cpu":{},"Memory":{},"InstanceRoleArn":{}}},"S1l":{"type":"structure","required":["KmsKey"],"members":{"KmsKey":{}}},"S1n":{"type":"structure","members":{"Protocol":{},"Path":{},"Interval":{"type":"integer"},"Timeout":{"type":"integer"},"HealthyThreshold":{"type":"integer"},"UnhealthyThreshold":{"type":"integer"}}},"S1v":{"type":"structure","required":["ServiceName","ServiceId","ServiceArn","ServiceUrl","CreatedAt","UpdatedAt","Status","SourceConfiguration","InstanceConfiguration","AutoScalingConfigurationSummary"],"members":{"ServiceName":{},"ServiceId":{},"ServiceArn":{},"ServiceUrl":{},"CreatedAt":{"type":"timestamp"},"UpdatedAt":{"type":"timestamp"},"DeletedAt":{"type":"timestamp"},"Status":{},"SourceConfiguration":{"shape":"Sz"},"InstanceConfiguration":{"shape":"S1i"},"EncryptionConfiguration":{"shape":"S1l"},"HealthCheckConfiguration":{"shape":"S1n"},"AutoScalingConfigurationSummary":{"shape":"S1y"}}},"S1y":{"type":"structure","members":{"AutoScalingConfigurationArn":{},"AutoScalingConfigurationName":{},"AutoScalingConfigurationRevision":{"type":"integer"}}}}}
54574
54513
 
54575
54514
  /***/ }),
54576
- /* 1029 */
54515
+ /* 1025 */
54577
54516
  /***/ (function(module, exports) {
54578
54517
 
54579
54518
  module.exports = {"pagination":{"DescribeCustomDomains":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListAutoScalingConfigurations":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListConnections":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListOperations":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListServices":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54580
54519
 
54581
54520
  /***/ }),
54582
- /* 1030 */
54521
+ /* 1026 */
54583
54522
  /***/ (function(module, exports, __webpack_require__) {
54584
54523
 
54585
54524
  __webpack_require__(2);
@@ -54591,9 +54530,9 @@ return /******/ (function(modules) { // webpackBootstrap
54591
54530
  AWS.Proton = Service.defineService('proton', ['2020-07-20']);
54592
54531
  Object.defineProperty(apiLoader.services['proton'], '2020-07-20', {
54593
54532
  get: function get() {
54594
- var model = __webpack_require__(1031);
54595
- model.paginators = __webpack_require__(1032).pagination;
54596
- model.waiters = __webpack_require__(1033).waiters;
54533
+ var model = __webpack_require__(1027);
54534
+ model.paginators = __webpack_require__(1028).pagination;
54535
+ model.waiters = __webpack_require__(1029).waiters;
54597
54536
  return model;
54598
54537
  },
54599
54538
  enumerable: true,
@@ -54604,25 +54543,25 @@ return /******/ (function(modules) { // webpackBootstrap
54604
54543
 
54605
54544
 
54606
54545
  /***/ }),
54607
- /* 1031 */
54546
+ /* 1027 */
54608
54547
  /***/ (function(module, exports) {
54609
54548
 
54610
54549
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-07-20","endpointPrefix":"proton","jsonVersion":"1.0","protocol":"json","serviceFullName":"AWS Proton","serviceId":"Proton","signatureVersion":"v4","signingName":"proton","targetPrefix":"AwsProton20200720","uid":"proton-2020-07-20"},"operations":{"AcceptEnvironmentAccountConnection":{"input":{"type":"structure","required":["id"],"members":{"id":{}}},"output":{"type":"structure","required":["environmentAccountConnection"],"members":{"environmentAccountConnection":{"shape":"S4"}}},"idempotent":true},"CancelEnvironmentDeployment":{"input":{"type":"structure","required":["environmentName"],"members":{"environmentName":{}}},"output":{"type":"structure","required":["environment"],"members":{"environment":{"shape":"Sd"}}}},"CancelServiceInstanceDeployment":{"input":{"type":"structure","required":["serviceInstanceName","serviceName"],"members":{"serviceInstanceName":{},"serviceName":{}}},"output":{"type":"structure","required":["serviceInstance"],"members":{"serviceInstance":{"shape":"Sn"}}}},"CancelServicePipelineDeployment":{"input":{"type":"structure","required":["serviceName"],"members":{"serviceName":{}}},"output":{"type":"structure","required":["pipeline"],"members":{"pipeline":{"shape":"Sr"}}}},"CreateEnvironment":{"input":{"type":"structure","required":["name","spec","templateMajorVersion","templateName"],"members":{"description":{"shape":"Sh"},"environmentAccountConnectionId":{},"name":{},"protonServiceRoleArn":{},"spec":{"shape":"Sj"},"tags":{"shape":"St"},"templateMajorVersion":{},"templateMinorVersion":{},"templateName":{}}},"output":{"type":"structure","required":["environment"],"members":{"environment":{"shape":"Sd"}}},"idempotent":true},"CreateEnvironmentAccountConnection":{"input":{"type":"structure","required":["environmentName","managementAccountId","roleArn"],"members":{"clientToken":{"idempotencyToken":true},"environmentName":{},"managementAccountId":{},"roleArn":{}}},"output":{"type":"structure","required":["environmentAccountConnection"],"members":{"environmentAccountConnection":{"shape":"S4"}}},"idempotent":true},"CreateEnvironmentTemplate":{"input":{"type":"structure","required":["name"],"members":{"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"encryptionKey":{},"name":{},"provisioning":{},"tags":{"shape":"St"}}},"output":{"type":"structure","required":["environmentTemplate"],"members":{"environmentTemplate":{"shape":"S14"}}},"idempotent":true},"CreateEnvironmentTemplateVersion":{"input":{"type":"structure","required":["source","templateName"],"members":{"clientToken":{"idempotencyToken":true},"description":{"shape":"Sh"},"majorVersion":{},"source":{"shape":"S18"},"tags":{"shape":"St"},"templateName":{}}},"output":{"type":"structure","required":["environmentTemplateVersion"],"members":{"environmentTemplateVersion":{"shape":"S1d"}}},"idempotent":true},"CreateService":{"input":{"type":"structure","required":["name","spec","templateMajorVersion","templateName"],"members":{"branchName":{},"description":{"shape":"Sh"},"name":{},"repositoryConnectionArn":{},"repositoryId":{},"spec":{"shape":"Sj"},"tags":{"shape":"St"},"templateMajorVersion":{},"templateMinorVersion":{},"templateName":{}}},"output":{"type":"structure","required":["service"],"members":{"service":{"shape":"S1l"}}},"idempotent":true},"CreateServiceTemplate":{"input":{"type":"structure","required":["name"],"members":{"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"encryptionKey":{},"name":{},"pipelineProvisioning":{},"tags":{"shape":"St"}}},"output":{"type":"structure","required":["serviceTemplate"],"members":{"serviceTemplate":{"shape":"S1q"}}},"idempotent":true},"CreateServiceTemplateVersion":{"input":{"type":"structure","required":["compatibleEnvironmentTemplates","source","templateName"],"members":{"clientToken":{"idempotencyToken":true},"compatibleEnvironmentTemplates":{"shape":"S1t"},"description":{"shape":"Sh"},"majorVersion":{},"source":{"shape":"S18"},"tags":{"shape":"St"},"templateName":{}}},"output":{"type":"structure","required":["serviceTemplateVersion"],"members":{"serviceTemplateVersion":{"shape":"S1w"}}},"idempotent":true},"DeleteEnvironment":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","members":{"environment":{"shape":"Sd"}}},"idempotent":true},"DeleteEnvironmentAccountConnection":{"input":{"type":"structure","required":["id"],"members":{"id":{}}},"output":{"type":"structure","members":{"environmentAccountConnection":{"shape":"S4"}}},"idempotent":true},"DeleteEnvironmentTemplate":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","members":{"environmentTemplate":{"shape":"S14"}}},"idempotent":true},"DeleteEnvironmentTemplateVersion":{"input":{"type":"structure","required":["majorVersion","minorVersion","templateName"],"members":{"majorVersion":{},"minorVersion":{},"templateName":{}}},"output":{"type":"structure","members":{"environmentTemplateVersion":{"shape":"S1d"}}},"idempotent":true},"DeleteService":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","members":{"service":{"shape":"S1l"}}},"idempotent":true},"DeleteServiceTemplate":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","members":{"serviceTemplate":{"shape":"S1q"}}},"idempotent":true},"DeleteServiceTemplateVersion":{"input":{"type":"structure","required":["majorVersion","minorVersion","templateName"],"members":{"majorVersion":{},"minorVersion":{},"templateName":{}}},"output":{"type":"structure","members":{"serviceTemplateVersion":{"shape":"S1w"}}},"idempotent":true},"GetAccountSettings":{"input":{"type":"structure","members":{}},"output":{"type":"structure","members":{"accountSettings":{"shape":"S2g"}}}},"GetEnvironment":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","required":["environment"],"members":{"environment":{"shape":"Sd"}}}},"GetEnvironmentAccountConnection":{"input":{"type":"structure","required":["id"],"members":{"id":{}}},"output":{"type":"structure","required":["environmentAccountConnection"],"members":{"environmentAccountConnection":{"shape":"S4"}}}},"GetEnvironmentTemplate":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","required":["environmentTemplate"],"members":{"environmentTemplate":{"shape":"S14"}}}},"GetEnvironmentTemplateVersion":{"input":{"type":"structure","required":["majorVersion","minorVersion","templateName"],"members":{"majorVersion":{},"minorVersion":{},"templateName":{}}},"output":{"type":"structure","required":["environmentTemplateVersion"],"members":{"environmentTemplateVersion":{"shape":"S1d"}}}},"GetService":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","members":{"service":{"shape":"S1l"}}}},"GetServiceInstance":{"input":{"type":"structure","required":["name","serviceName"],"members":{"name":{},"serviceName":{}}},"output":{"type":"structure","required":["serviceInstance"],"members":{"serviceInstance":{"shape":"Sn"}}}},"GetServiceTemplate":{"input":{"type":"structure","required":["name"],"members":{"name":{}}},"output":{"type":"structure","required":["serviceTemplate"],"members":{"serviceTemplate":{"shape":"S1q"}}}},"GetServiceTemplateVersion":{"input":{"type":"structure","required":["majorVersion","minorVersion","templateName"],"members":{"majorVersion":{},"minorVersion":{},"templateName":{}}},"output":{"type":"structure","required":["serviceTemplateVersion"],"members":{"serviceTemplateVersion":{"shape":"S1w"}}}},"ListEnvironmentAccountConnections":{"input":{"type":"structure","required":["requestedBy"],"members":{"environmentName":{},"maxResults":{"type":"integer"},"nextToken":{},"requestedBy":{},"statuses":{"type":"list","member":{}}}},"output":{"type":"structure","required":["environmentAccountConnections"],"members":{"environmentAccountConnections":{"type":"list","member":{"type":"structure","required":["arn","environmentAccountId","environmentName","id","lastModifiedAt","managementAccountId","requestedAt","roleArn","status"],"members":{"arn":{},"environmentAccountId":{},"environmentName":{},"id":{},"lastModifiedAt":{"type":"timestamp"},"managementAccountId":{},"requestedAt":{"type":"timestamp"},"roleArn":{},"status":{}}}},"nextToken":{}}}},"ListEnvironmentTemplateVersions":{"input":{"type":"structure","required":["templateName"],"members":{"majorVersion":{},"maxResults":{"type":"integer"},"nextToken":{},"templateName":{}}},"output":{"type":"structure","required":["templateVersions"],"members":{"nextToken":{},"templateVersions":{"type":"list","member":{"type":"structure","required":["arn","createdAt","lastModifiedAt","majorVersion","minorVersion","status","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"lastModifiedAt":{"type":"timestamp"},"majorVersion":{},"minorVersion":{},"recommendedMinorVersion":{},"status":{},"statusMessage":{"shape":"Sg"},"templateName":{}}}}}}},"ListEnvironmentTemplates":{"input":{"type":"structure","members":{"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["templates"],"members":{"nextToken":{},"templates":{"type":"list","member":{"type":"structure","required":["arn","createdAt","lastModifiedAt","name"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"lastModifiedAt":{"type":"timestamp"},"name":{},"provisioning":{},"recommendedVersion":{}}}}}}},"ListEnvironments":{"input":{"type":"structure","members":{"environmentTemplates":{"type":"list","member":{"type":"structure","required":["majorVersion","templateName"],"members":{"majorVersion":{},"templateName":{}}}},"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["environments"],"members":{"environments":{"type":"list","member":{"type":"structure","required":["arn","createdAt","deploymentStatus","lastDeploymentAttemptedAt","lastDeploymentSucceededAt","name","templateMajorVersion","templateMinorVersion","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"deploymentStatus":{},"deploymentStatusMessage":{"shape":"Sg"},"description":{"shape":"Sh"},"environmentAccountConnectionId":{},"environmentAccountId":{},"lastDeploymentAttemptedAt":{"type":"timestamp"},"lastDeploymentSucceededAt":{"type":"timestamp"},"name":{},"protonServiceRoleArn":{},"provisioning":{},"templateMajorVersion":{},"templateMinorVersion":{},"templateName":{}}}},"nextToken":{}}}},"ListServiceInstances":{"input":{"type":"structure","members":{"maxResults":{"type":"integer"},"nextToken":{},"serviceName":{}}},"output":{"type":"structure","required":["serviceInstances"],"members":{"nextToken":{},"serviceInstances":{"type":"list","member":{"type":"structure","required":["arn","createdAt","deploymentStatus","environmentName","lastDeploymentAttemptedAt","lastDeploymentSucceededAt","name","serviceName","templateMajorVersion","templateMinorVersion","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"deploymentStatus":{},"deploymentStatusMessage":{"shape":"Sg"},"environmentName":{},"lastDeploymentAttemptedAt":{"type":"timestamp"},"lastDeploymentSucceededAt":{"type":"timestamp"},"name":{},"serviceName":{},"templateMajorVersion":{},"templateMinorVersion":{},"templateName":{}}}}}}},"ListServiceTemplateVersions":{"input":{"type":"structure","required":["templateName"],"members":{"majorVersion":{},"maxResults":{"type":"integer"},"nextToken":{},"templateName":{}}},"output":{"type":"structure","required":["templateVersions"],"members":{"nextToken":{},"templateVersions":{"type":"list","member":{"type":"structure","required":["arn","createdAt","lastModifiedAt","majorVersion","minorVersion","status","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"lastModifiedAt":{"type":"timestamp"},"majorVersion":{},"minorVersion":{},"recommendedMinorVersion":{},"status":{},"statusMessage":{"shape":"Sg"},"templateName":{}}}}}}},"ListServiceTemplates":{"input":{"type":"structure","members":{"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["templates"],"members":{"nextToken":{},"templates":{"type":"list","member":{"type":"structure","required":["arn","createdAt","lastModifiedAt","name"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"lastModifiedAt":{"type":"timestamp"},"name":{},"pipelineProvisioning":{},"recommendedVersion":{}}}}}}},"ListServices":{"input":{"type":"structure","members":{"maxResults":{"type":"integer"},"nextToken":{}}},"output":{"type":"structure","required":["services"],"members":{"nextToken":{},"services":{"type":"list","member":{"type":"structure","required":["arn","createdAt","lastModifiedAt","name","status","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"lastModifiedAt":{"type":"timestamp"},"name":{},"status":{},"statusMessage":{"shape":"Sg"},"templateName":{}}}}}}},"ListTagsForResource":{"input":{"type":"structure","required":["resourceArn"],"members":{"maxResults":{"type":"integer"},"nextToken":{},"resourceArn":{}}},"output":{"type":"structure","required":["tags"],"members":{"nextToken":{},"tags":{"shape":"St"}}}},"RejectEnvironmentAccountConnection":{"input":{"type":"structure","required":["id"],"members":{"id":{}}},"output":{"type":"structure","required":["environmentAccountConnection"],"members":{"environmentAccountConnection":{"shape":"S4"}}},"idempotent":true},"TagResource":{"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{},"tags":{"shape":"St"}}},"output":{"type":"structure","members":{}},"idempotent":true},"UntagResource":{"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{},"tagKeys":{"type":"list","member":{}}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateAccountSettings":{"input":{"type":"structure","members":{"pipelineServiceRoleArn":{}}},"output":{"type":"structure","required":["accountSettings"],"members":{"accountSettings":{"shape":"S2g"}}}},"UpdateEnvironment":{"input":{"type":"structure","required":["deploymentType","name"],"members":{"deploymentType":{},"description":{"shape":"Sh"},"environmentAccountConnectionId":{},"name":{},"protonServiceRoleArn":{},"spec":{"shape":"Sj"},"templateMajorVersion":{},"templateMinorVersion":{}}},"output":{"type":"structure","required":["environment"],"members":{"environment":{"shape":"Sd"}}}},"UpdateEnvironmentAccountConnection":{"input":{"type":"structure","required":["id","roleArn"],"members":{"id":{},"roleArn":{}}},"output":{"type":"structure","required":["environmentAccountConnection"],"members":{"environmentAccountConnection":{"shape":"S4"}}},"idempotent":true},"UpdateEnvironmentTemplate":{"input":{"type":"structure","required":["name"],"members":{"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"name":{}}},"output":{"type":"structure","required":["environmentTemplate"],"members":{"environmentTemplate":{"shape":"S14"}}}},"UpdateEnvironmentTemplateVersion":{"input":{"type":"structure","required":["majorVersion","minorVersion","templateName"],"members":{"description":{"shape":"Sh"},"majorVersion":{},"minorVersion":{},"status":{},"templateName":{}}},"output":{"type":"structure","required":["environmentTemplateVersion"],"members":{"environmentTemplateVersion":{"shape":"S1d"}}}},"UpdateService":{"input":{"type":"structure","required":["name"],"members":{"description":{"shape":"Sh"},"name":{},"spec":{"shape":"Sj"}}},"output":{"type":"structure","required":["service"],"members":{"service":{"shape":"S1l"}}}},"UpdateServiceInstance":{"input":{"type":"structure","required":["deploymentType","name","serviceName"],"members":{"deploymentType":{},"name":{},"serviceName":{},"spec":{"shape":"Sj"},"templateMajorVersion":{},"templateMinorVersion":{}}},"output":{"type":"structure","required":["serviceInstance"],"members":{"serviceInstance":{"shape":"Sn"}}}},"UpdateServicePipeline":{"input":{"type":"structure","required":["deploymentType","serviceName","spec"],"members":{"deploymentType":{},"serviceName":{},"spec":{"shape":"Sj"},"templateMajorVersion":{},"templateMinorVersion":{}}},"output":{"type":"structure","required":["pipeline"],"members":{"pipeline":{"shape":"Sr"}}}},"UpdateServiceTemplate":{"input":{"type":"structure","required":["name"],"members":{"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"name":{}}},"output":{"type":"structure","required":["serviceTemplate"],"members":{"serviceTemplate":{"shape":"S1q"}}}},"UpdateServiceTemplateVersion":{"input":{"type":"structure","required":["majorVersion","minorVersion","templateName"],"members":{"compatibleEnvironmentTemplates":{"shape":"S1t"},"description":{"shape":"Sh"},"majorVersion":{},"minorVersion":{},"status":{},"templateName":{}}},"output":{"type":"structure","required":["serviceTemplateVersion"],"members":{"serviceTemplateVersion":{"shape":"S1w"}}}}},"shapes":{"S4":{"type":"structure","required":["arn","environmentAccountId","environmentName","id","lastModifiedAt","managementAccountId","requestedAt","roleArn","status"],"members":{"arn":{},"environmentAccountId":{},"environmentName":{},"id":{},"lastModifiedAt":{"type":"timestamp"},"managementAccountId":{},"requestedAt":{"type":"timestamp"},"roleArn":{},"status":{}}},"Sd":{"type":"structure","required":["arn","createdAt","deploymentStatus","lastDeploymentAttemptedAt","lastDeploymentSucceededAt","name","templateMajorVersion","templateMinorVersion","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"deploymentStatus":{},"deploymentStatusMessage":{"shape":"Sg"},"description":{"shape":"Sh"},"environmentAccountConnectionId":{},"environmentAccountId":{},"lastDeploymentAttemptedAt":{"type":"timestamp"},"lastDeploymentSucceededAt":{"type":"timestamp"},"name":{},"protonServiceRoleArn":{},"provisioning":{},"spec":{"shape":"Sj"},"templateMajorVersion":{},"templateMinorVersion":{},"templateName":{}}},"Sg":{"type":"string","sensitive":true},"Sh":{"type":"string","sensitive":true},"Sj":{"type":"string","sensitive":true},"Sn":{"type":"structure","required":["arn","createdAt","deploymentStatus","environmentName","lastDeploymentAttemptedAt","lastDeploymentSucceededAt","name","serviceName","templateMajorVersion","templateMinorVersion","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"deploymentStatus":{},"deploymentStatusMessage":{"shape":"Sg"},"environmentName":{},"lastDeploymentAttemptedAt":{"type":"timestamp"},"lastDeploymentSucceededAt":{"type":"timestamp"},"name":{},"serviceName":{},"spec":{"shape":"Sj"},"templateMajorVersion":{},"templateMinorVersion":{},"templateName":{}}},"Sr":{"type":"structure","required":["arn","createdAt","deploymentStatus","lastDeploymentAttemptedAt","lastDeploymentSucceededAt","templateMajorVersion","templateMinorVersion","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"deploymentStatus":{},"deploymentStatusMessage":{"shape":"Sg"},"lastDeploymentAttemptedAt":{"type":"timestamp"},"lastDeploymentSucceededAt":{"type":"timestamp"},"spec":{"shape":"Sj"},"templateMajorVersion":{},"templateMinorVersion":{},"templateName":{}}},"St":{"type":"list","member":{"type":"structure","required":["key","value"],"members":{"key":{},"value":{}}}},"S12":{"type":"string","sensitive":true},"S14":{"type":"structure","required":["arn","createdAt","lastModifiedAt","name"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"encryptionKey":{},"lastModifiedAt":{"type":"timestamp"},"name":{},"provisioning":{},"recommendedVersion":{}}},"S18":{"type":"structure","members":{"s3":{"type":"structure","required":["bucket","key"],"members":{"bucket":{},"key":{}}}},"union":true},"S1d":{"type":"structure","required":["arn","createdAt","lastModifiedAt","majorVersion","minorVersion","status","templateName"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"lastModifiedAt":{"type":"timestamp"},"majorVersion":{},"minorVersion":{},"recommendedMinorVersion":{},"schema":{"shape":"S1f"},"status":{},"statusMessage":{"shape":"Sg"},"templateName":{}}},"S1f":{"type":"string","sensitive":true},"S1l":{"type":"structure","required":["arn","createdAt","lastModifiedAt","name","spec","status","templateName"],"members":{"arn":{},"branchName":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"lastModifiedAt":{"type":"timestamp"},"name":{},"pipeline":{"shape":"Sr"},"repositoryConnectionArn":{},"repositoryId":{},"spec":{"shape":"Sj"},"status":{},"statusMessage":{"shape":"Sg"},"templateName":{}}},"S1q":{"type":"structure","required":["arn","createdAt","lastModifiedAt","name"],"members":{"arn":{},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"displayName":{"shape":"S12"},"encryptionKey":{},"lastModifiedAt":{"type":"timestamp"},"name":{},"pipelineProvisioning":{},"recommendedVersion":{}}},"S1t":{"type":"list","member":{"type":"structure","required":["majorVersion","templateName"],"members":{"majorVersion":{},"templateName":{}}}},"S1w":{"type":"structure","required":["arn","compatibleEnvironmentTemplates","createdAt","lastModifiedAt","majorVersion","minorVersion","status","templateName"],"members":{"arn":{},"compatibleEnvironmentTemplates":{"type":"list","member":{"type":"structure","required":["majorVersion","templateName"],"members":{"majorVersion":{},"templateName":{}}}},"createdAt":{"type":"timestamp"},"description":{"shape":"Sh"},"lastModifiedAt":{"type":"timestamp"},"majorVersion":{},"minorVersion":{},"recommendedMinorVersion":{},"schema":{"shape":"S1f"},"status":{},"statusMessage":{"shape":"Sg"},"templateName":{}}},"S2g":{"type":"structure","members":{"pipelineServiceRoleArn":{}}}}}
54611
54550
 
54612
54551
  /***/ }),
54613
- /* 1032 */
54552
+ /* 1028 */
54614
54553
  /***/ (function(module, exports) {
54615
54554
 
54616
54555
  module.exports = {"pagination":{"ListEnvironmentAccountConnections":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"environmentAccountConnections"},"ListEnvironmentTemplateVersions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"templateVersions"},"ListEnvironmentTemplates":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"templates"},"ListEnvironments":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"environments"},"ListServiceInstances":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"serviceInstances"},"ListServiceTemplateVersions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"templateVersions"},"ListServiceTemplates":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"templates"},"ListServices":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"services"},"ListTagsForResource":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"tags"}}}
54617
54556
 
54618
54557
  /***/ }),
54619
- /* 1033 */
54558
+ /* 1029 */
54620
54559
  /***/ (function(module, exports) {
54621
54560
 
54622
54561
  module.exports = {"version":2,"waiters":{"EnvironmentDeployed":{"description":"Wait until an Environment is deployed. Use this after invoking CreateEnvironment or UpdateEnvironment","delay":5,"maxAttempts":999,"operation":"GetEnvironment","acceptors":[{"matcher":"path","argument":"environment.deploymentStatus","state":"success","expected":"SUCCEEDED"},{"matcher":"path","argument":"environment.deploymentStatus","state":"failure","expected":"FAILED"}]},"EnvironmentTemplateVersionRegistered":{"description":"Wait until an EnvironmentTemplateVersion is registered. Use this after invoking CreateEnvironmentTemplateVersion","delay":2,"maxAttempts":150,"operation":"GetEnvironmentTemplateVersion","acceptors":[{"matcher":"path","argument":"environmentTemplateVersion.status","state":"success","expected":"DRAFT"},{"matcher":"path","argument":"environmentTemplateVersion.status","state":"success","expected":"PUBLISHED"},{"matcher":"path","argument":"environmentTemplateVersion.status","state":"failure","expected":"REGISTRATION_FAILED"}]},"ServiceCreated":{"description":"Wait until an Service has deployed its instances and possibly pipeline. Use this after invoking CreateService","delay":5,"maxAttempts":999,"operation":"GetService","acceptors":[{"matcher":"path","argument":"service.status","state":"success","expected":"ACTIVE"},{"matcher":"path","argument":"service.status","state":"failure","expected":"CREATE_FAILED_CLEANUP_COMPLETE"},{"matcher":"path","argument":"service.status","state":"failure","expected":"CREATE_FAILED_CLEANUP_FAILED"},{"matcher":"path","argument":"service.status","state":"failure","expected":"CREATE_FAILED"}]},"ServiceDeleted":{"description":"Wait until a Service, its instances, and possibly pipeline have been deleted after DeleteService is invoked","delay":5,"maxAttempts":999,"operation":"GetService","acceptors":[{"matcher":"error","state":"success","expected":"ResourceNotFoundException"},{"matcher":"path","argument":"service.status","state":"failure","expected":"DELETE_FAILED"}]},"ServiceInstanceDeployed":{"description":"Wait until a ServiceInstance is deployed. Use this after invoking CreateService or UpdateServiceInstance","delay":5,"maxAttempts":999,"operation":"GetServiceInstance","acceptors":[{"matcher":"path","argument":"serviceInstance.deploymentStatus","state":"success","expected":"SUCCEEDED"},{"matcher":"path","argument":"serviceInstance.deploymentStatus","state":"failure","expected":"FAILED"}]},"ServicePipelineDeployed":{"description":"Wait until an ServicePipeline is deployed. Use this after invoking CreateService or UpdateServicePipeline","delay":10,"maxAttempts":360,"operation":"GetService","acceptors":[{"matcher":"path","argument":"service.pipeline.deploymentStatus","state":"success","expected":"SUCCEEDED"},{"matcher":"path","argument":"service.pipeline.deploymentStatus","state":"failure","expected":"FAILED"}]},"ServiceTemplateVersionRegistered":{"description":"Wait until a ServiceTemplateVersion is registered. Use this after invoking CreateServiceTemplateVersion","delay":2,"maxAttempts":150,"operation":"GetServiceTemplateVersion","acceptors":[{"matcher":"path","argument":"serviceTemplateVersion.status","state":"success","expected":"DRAFT"},{"matcher":"path","argument":"serviceTemplateVersion.status","state":"success","expected":"PUBLISHED"},{"matcher":"path","argument":"serviceTemplateVersion.status","state":"failure","expected":"REGISTRATION_FAILED"}]},"ServiceUpdated":{"description":"Wait until a Service, its instances, and possibly pipeline have been deployed after UpdateService is invoked","delay":5,"maxAttempts":999,"operation":"GetService","acceptors":[{"matcher":"path","argument":"service.status","state":"success","expected":"ACTIVE"},{"matcher":"path","argument":"service.status","state":"failure","expected":"UPDATE_FAILED_CLEANUP_COMPLETE"},{"matcher":"path","argument":"service.status","state":"failure","expected":"UPDATE_FAILED_CLEANUP_FAILED"},{"matcher":"path","argument":"service.status","state":"failure","expected":"UPDATE_FAILED"},{"matcher":"path","argument":"service.status","state":"failure","expected":"UPDATE_COMPLETE_CLEANUP_FAILED"}]}}}
54623
54562
 
54624
54563
  /***/ }),
54625
- /* 1034 */
54564
+ /* 1030 */
54626
54565
  /***/ (function(module, exports, __webpack_require__) {
54627
54566
 
54628
54567
  __webpack_require__(2);
@@ -54634,8 +54573,8 @@ return /******/ (function(modules) { // webpackBootstrap
54634
54573
  AWS.Route53RecoveryCluster = Service.defineService('route53recoverycluster', ['2019-12-02']);
54635
54574
  Object.defineProperty(apiLoader.services['route53recoverycluster'], '2019-12-02', {
54636
54575
  get: function get() {
54637
- var model = __webpack_require__(1035);
54638
- model.paginators = __webpack_require__(1036).pagination;
54576
+ var model = __webpack_require__(1031);
54577
+ model.paginators = __webpack_require__(1032).pagination;
54639
54578
  return model;
54640
54579
  },
54641
54580
  enumerable: true,
@@ -54646,19 +54585,19 @@ return /******/ (function(modules) { // webpackBootstrap
54646
54585
 
54647
54586
 
54648
54587
  /***/ }),
54649
- /* 1035 */
54588
+ /* 1031 */
54650
54589
  /***/ (function(module, exports) {
54651
54590
 
54652
54591
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2019-12-02","endpointPrefix":"route53-recovery-cluster","jsonVersion":"1.0","protocol":"json","serviceFullName":"Route53 Recovery Cluster","serviceId":"Route53 Recovery Cluster","signatureVersion":"v4","signingName":"route53-recovery-cluster","targetPrefix":"ToggleCustomerAPI","uid":"route53-recovery-cluster-2019-12-02"},"operations":{"GetRoutingControlState":{"input":{"type":"structure","required":["RoutingControlArn"],"members":{"RoutingControlArn":{}}},"output":{"type":"structure","required":["RoutingControlArn","RoutingControlState"],"members":{"RoutingControlArn":{},"RoutingControlState":{}}}},"UpdateRoutingControlState":{"input":{"type":"structure","required":["RoutingControlArn","RoutingControlState"],"members":{"RoutingControlArn":{},"RoutingControlState":{}}},"output":{"type":"structure","members":{}}},"UpdateRoutingControlStates":{"input":{"type":"structure","required":["UpdateRoutingControlStateEntries"],"members":{"UpdateRoutingControlStateEntries":{"type":"list","member":{"type":"structure","required":["RoutingControlArn","RoutingControlState"],"members":{"RoutingControlArn":{},"RoutingControlState":{}}}}}},"output":{"type":"structure","members":{}}}},"shapes":{}}
54653
54592
 
54654
54593
  /***/ }),
54655
- /* 1036 */
54594
+ /* 1032 */
54656
54595
  /***/ (function(module, exports) {
54657
54596
 
54658
54597
  module.exports = {"pagination":{}}
54659
54598
 
54660
54599
  /***/ }),
54661
- /* 1037 */
54600
+ /* 1033 */
54662
54601
  /***/ (function(module, exports, __webpack_require__) {
54663
54602
 
54664
54603
  __webpack_require__(2);
@@ -54670,9 +54609,9 @@ return /******/ (function(modules) { // webpackBootstrap
54670
54609
  AWS.Route53RecoveryControlConfig = Service.defineService('route53recoverycontrolconfig', ['2020-11-02']);
54671
54610
  Object.defineProperty(apiLoader.services['route53recoverycontrolconfig'], '2020-11-02', {
54672
54611
  get: function get() {
54673
- var model = __webpack_require__(1038);
54674
- model.paginators = __webpack_require__(1039).pagination;
54675
- model.waiters = __webpack_require__(1040).waiters;
54612
+ var model = __webpack_require__(1034);
54613
+ model.paginators = __webpack_require__(1035).pagination;
54614
+ model.waiters = __webpack_require__(1036).waiters;
54676
54615
  return model;
54677
54616
  },
54678
54617
  enumerable: true,
@@ -54683,25 +54622,25 @@ return /******/ (function(modules) { // webpackBootstrap
54683
54622
 
54684
54623
 
54685
54624
  /***/ }),
54686
- /* 1038 */
54625
+ /* 1034 */
54687
54626
  /***/ (function(module, exports) {
54688
54627
 
54689
54628
  module.exports = {"metadata":{"apiVersion":"2020-11-02","endpointPrefix":"route53-recovery-control-config","signingName":"route53-recovery-control-config","serviceFullName":"AWS Route53 Recovery Control Config","serviceId":"Route53 Recovery Control Config","protocol":"rest-json","jsonVersion":"1.1","uid":"route53-recovery-control-config-2020-11-02","signatureVersion":"v4"},"operations":{"CreateCluster":{"http":{"requestUri":"/cluster","responseCode":200},"input":{"type":"structure","members":{"ClientToken":{"idempotencyToken":true},"ClusterName":{}},"required":["ClusterName"]},"output":{"type":"structure","members":{"Cluster":{"shape":"S5"}}}},"CreateControlPanel":{"http":{"requestUri":"/controlpanel","responseCode":200},"input":{"type":"structure","members":{"ClientToken":{"idempotencyToken":true},"ClusterArn":{},"ControlPanelName":{}},"required":["ClusterArn","ControlPanelName"]},"output":{"type":"structure","members":{"ControlPanel":{"shape":"Se"}}}},"CreateRoutingControl":{"http":{"requestUri":"/routingcontrol","responseCode":200},"input":{"type":"structure","members":{"ClientToken":{"idempotencyToken":true},"ClusterArn":{},"ControlPanelArn":{},"RoutingControlName":{}},"required":["ClusterArn","RoutingControlName"]},"output":{"type":"structure","members":{"RoutingControl":{"shape":"Sj"}}}},"CreateSafetyRule":{"http":{"requestUri":"/safetyrule","responseCode":200},"input":{"type":"structure","members":{"AssertionRule":{"type":"structure","members":{"AssertedControls":{"shape":"Sm"},"ControlPanelArn":{},"Name":{},"RuleConfig":{"shape":"Sn"},"WaitPeriodMs":{"type":"integer"}},"required":["ControlPanelArn","AssertedControls","RuleConfig","WaitPeriodMs","Name"]},"ClientToken":{"idempotencyToken":true},"GatingRule":{"type":"structure","members":{"ControlPanelArn":{},"GatingControls":{"shape":"Sm"},"Name":{},"RuleConfig":{"shape":"Sn"},"TargetControls":{"shape":"Sm"},"WaitPeriodMs":{"type":"integer"}},"required":["TargetControls","ControlPanelArn","GatingControls","RuleConfig","WaitPeriodMs","Name"]}}},"output":{"type":"structure","members":{"AssertionRule":{"shape":"Sr"},"GatingRule":{"shape":"Ss"}}}},"DeleteCluster":{"http":{"method":"DELETE","requestUri":"/cluster/{ClusterArn}","responseCode":200},"input":{"type":"structure","members":{"ClusterArn":{"location":"uri","locationName":"ClusterArn"}},"required":["ClusterArn"]},"output":{"type":"structure","members":{}}},"DeleteControlPanel":{"http":{"method":"DELETE","requestUri":"/controlpanel/{ControlPanelArn}","responseCode":200},"input":{"type":"structure","members":{"ControlPanelArn":{"location":"uri","locationName":"ControlPanelArn"}},"required":["ControlPanelArn"]},"output":{"type":"structure","members":{}}},"DeleteRoutingControl":{"http":{"method":"DELETE","requestUri":"/routingcontrol/{RoutingControlArn}","responseCode":200},"input":{"type":"structure","members":{"RoutingControlArn":{"location":"uri","locationName":"RoutingControlArn"}},"required":["RoutingControlArn"]},"output":{"type":"structure","members":{}}},"DeleteSafetyRule":{"http":{"method":"DELETE","requestUri":"/safetyrule/{SafetyRuleArn}","responseCode":200},"input":{"type":"structure","members":{"SafetyRuleArn":{"location":"uri","locationName":"SafetyRuleArn"}},"required":["SafetyRuleArn"]},"output":{"type":"structure","members":{}}},"DescribeCluster":{"http":{"method":"GET","requestUri":"/cluster/{ClusterArn}","responseCode":200},"input":{"type":"structure","members":{"ClusterArn":{"location":"uri","locationName":"ClusterArn"}},"required":["ClusterArn"]},"output":{"type":"structure","members":{"Cluster":{"shape":"S5"}}}},"DescribeControlPanel":{"http":{"method":"GET","requestUri":"/controlpanel/{ControlPanelArn}","responseCode":200},"input":{"type":"structure","members":{"ControlPanelArn":{"location":"uri","locationName":"ControlPanelArn"}},"required":["ControlPanelArn"]},"output":{"type":"structure","members":{"ControlPanel":{"shape":"Se"}}}},"DescribeRoutingControl":{"http":{"method":"GET","requestUri":"/routingcontrol/{RoutingControlArn}","responseCode":200},"input":{"type":"structure","members":{"RoutingControlArn":{"location":"uri","locationName":"RoutingControlArn"}},"required":["RoutingControlArn"]},"output":{"type":"structure","members":{"RoutingControl":{"shape":"Sj"}}}},"DescribeSafetyRule":{"http":{"method":"GET","requestUri":"/safetyrule/{SafetyRuleArn}","responseCode":200},"input":{"type":"structure","members":{"SafetyRuleArn":{"location":"uri","locationName":"SafetyRuleArn"}},"required":["SafetyRuleArn"]},"output":{"type":"structure","members":{"AssertionRule":{"shape":"Sr"},"GatingRule":{"shape":"Ss"}}}},"ListAssociatedRoute53HealthChecks":{"http":{"method":"GET","requestUri":"/routingcontrol/{RoutingControlArn}/associatedRoute53HealthChecks","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"NextToken"},"RoutingControlArn":{"location":"uri","locationName":"RoutingControlArn"}},"required":["RoutingControlArn"]},"output":{"type":"structure","members":{"HealthCheckIds":{"shape":"Sm"},"NextToken":{}}}},"ListClusters":{"http":{"method":"GET","requestUri":"/cluster","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"NextToken"}}},"output":{"type":"structure","members":{"Clusters":{"type":"list","member":{"shape":"S5"}},"NextToken":{}}}},"ListControlPanels":{"http":{"method":"GET","requestUri":"/controlpanels","responseCode":200},"input":{"type":"structure","members":{"ClusterArn":{"location":"querystring","locationName":"ClusterArn"},"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"NextToken"}}},"output":{"type":"structure","members":{"ControlPanels":{"type":"list","member":{"shape":"Se"}},"NextToken":{}}}},"ListRoutingControls":{"http":{"method":"GET","requestUri":"/controlpanel/{ControlPanelArn}/routingcontrols","responseCode":200},"input":{"type":"structure","members":{"ControlPanelArn":{"location":"uri","locationName":"ControlPanelArn"},"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"NextToken"}},"required":["ControlPanelArn"]},"output":{"type":"structure","members":{"NextToken":{},"RoutingControls":{"type":"list","member":{"shape":"Sj"}}}}},"ListSafetyRules":{"http":{"method":"GET","requestUri":"/controlpanel/{ControlPanelArn}/safetyrules","responseCode":200},"input":{"type":"structure","members":{"ControlPanelArn":{"location":"uri","locationName":"ControlPanelArn"},"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"NextToken"}},"required":["ControlPanelArn"]},"output":{"type":"structure","members":{"NextToken":{},"SafetyRules":{"type":"list","member":{"type":"structure","members":{"ASSERTION":{"shape":"Sr"},"GATING":{"shape":"Ss"}}}}}}},"UpdateControlPanel":{"http":{"method":"PUT","requestUri":"/controlpanel","responseCode":200},"input":{"type":"structure","members":{"ControlPanelArn":{},"ControlPanelName":{}},"required":["ControlPanelArn","ControlPanelName"]},"output":{"type":"structure","members":{"ControlPanel":{"shape":"Se"}}}},"UpdateRoutingControl":{"http":{"method":"PUT","requestUri":"/routingcontrol","responseCode":200},"input":{"type":"structure","members":{"RoutingControlArn":{},"RoutingControlName":{}},"required":["RoutingControlName","RoutingControlArn"]},"output":{"type":"structure","members":{"RoutingControl":{"shape":"Sj"}}}},"UpdateSafetyRule":{"http":{"method":"PUT","requestUri":"/safetyrule","responseCode":200},"input":{"type":"structure","members":{"AssertionRuleUpdate":{"type":"structure","members":{"Name":{},"SafetyRuleArn":{},"WaitPeriodMs":{"type":"integer"}},"required":["SafetyRuleArn","WaitPeriodMs","Name"]},"GatingRuleUpdate":{"type":"structure","members":{"Name":{},"SafetyRuleArn":{},"WaitPeriodMs":{"type":"integer"}},"required":["SafetyRuleArn","WaitPeriodMs","Name"]}}},"output":{"type":"structure","members":{"AssertionRule":{"shape":"Sr"},"GatingRule":{"shape":"Ss"}}}}},"shapes":{"S5":{"type":"structure","members":{"ClusterArn":{},"ClusterEndpoints":{"type":"list","member":{"type":"structure","members":{"Endpoint":{},"Region":{}}}},"Name":{},"Status":{}}},"Se":{"type":"structure","members":{"ClusterArn":{},"ControlPanelArn":{},"DefaultControlPanel":{"type":"boolean"},"Name":{},"RoutingControlCount":{"type":"integer"},"Status":{}}},"Sj":{"type":"structure","members":{"ControlPanelArn":{},"Name":{},"RoutingControlArn":{},"Status":{}}},"Sm":{"type":"list","member":{}},"Sn":{"type":"structure","members":{"Inverted":{"type":"boolean"},"Threshold":{"type":"integer"},"Type":{}},"required":["Type","Inverted","Threshold"]},"Sr":{"type":"structure","members":{"AssertedControls":{"shape":"Sm"},"ControlPanelArn":{},"Name":{},"RuleConfig":{"shape":"Sn"},"SafetyRuleArn":{},"Status":{},"WaitPeriodMs":{"type":"integer"}},"required":["Status","ControlPanelArn","SafetyRuleArn","AssertedControls","RuleConfig","WaitPeriodMs","Name"]},"Ss":{"type":"structure","members":{"ControlPanelArn":{},"GatingControls":{"shape":"Sm"},"Name":{},"RuleConfig":{"shape":"Sn"},"SafetyRuleArn":{},"Status":{},"TargetControls":{"shape":"Sm"},"WaitPeriodMs":{"type":"integer"}},"required":["Status","TargetControls","ControlPanelArn","SafetyRuleArn","GatingControls","RuleConfig","WaitPeriodMs","Name"]}}}
54690
54629
 
54691
54630
  /***/ }),
54692
- /* 1039 */
54631
+ /* 1035 */
54693
54632
  /***/ (function(module, exports) {
54694
54633
 
54695
54634
  module.exports = {"pagination":{"ListAssociatedRoute53HealthChecks":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListClusters":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListControlPanels":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListRoutingControls":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListSafetyRules":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54696
54635
 
54697
54636
  /***/ }),
54698
- /* 1040 */
54637
+ /* 1036 */
54699
54638
  /***/ (function(module, exports) {
54700
54639
 
54701
54640
  module.exports = {"version":2,"waiters":{"ClusterCreated":{"description":"Wait until a cluster is created","operation":"DescribeCluster","delay":5,"maxAttempts":26,"acceptors":[{"state":"success","matcher":"path","argument":"Cluster.Status","expected":"DEPLOYED"},{"state":"retry","matcher":"path","argument":"Cluster.Status","expected":"PENDING"},{"state":"retry","matcher":"status","expected":500}]},"ClusterDeleted":{"description":"Wait for a cluster to be deleted","operation":"DescribeCluster","delay":5,"maxAttempts":26,"acceptors":[{"state":"success","matcher":"status","expected":404},{"state":"retry","matcher":"path","argument":"Cluster.Status","expected":"PENDING_DELETION"},{"state":"retry","matcher":"status","expected":500}]},"ControlPanelCreated":{"description":"Wait until a control panel is created","operation":"DescribeControlPanel","delay":5,"maxAttempts":26,"acceptors":[{"state":"success","matcher":"path","argument":"ControlPanel.Status","expected":"DEPLOYED"},{"state":"retry","matcher":"path","argument":"ControlPanel.Status","expected":"PENDING"},{"state":"retry","matcher":"status","expected":500}]},"ControlPanelDeleted":{"description":"Wait until a control panel is deleted","operation":"DescribeControlPanel","delay":5,"maxAttempts":26,"acceptors":[{"state":"success","matcher":"status","expected":404},{"state":"retry","matcher":"path","argument":"ControlPanel.Status","expected":"PENDING_DELETION"},{"state":"retry","matcher":"status","expected":500}]},"RoutingControlCreated":{"description":"Wait until a routing control is created","operation":"DescribeRoutingControl","delay":5,"maxAttempts":26,"acceptors":[{"state":"success","matcher":"path","argument":"RoutingControl.Status","expected":"DEPLOYED"},{"state":"retry","matcher":"path","argument":"RoutingControl.Status","expected":"PENDING"},{"state":"retry","matcher":"status","expected":500}]},"RoutingControlDeleted":{"description":"Wait for a routing control to be deleted","operation":"DescribeRoutingControl","delay":5,"maxAttempts":26,"acceptors":[{"state":"success","matcher":"status","expected":404},{"state":"retry","matcher":"path","argument":"RoutingControl.Status","expected":"PENDING_DELETION"},{"state":"retry","matcher":"status","expected":500}]}}}
54702
54641
 
54703
54642
  /***/ }),
54704
- /* 1041 */
54643
+ /* 1037 */
54705
54644
  /***/ (function(module, exports, __webpack_require__) {
54706
54645
 
54707
54646
  __webpack_require__(2);
@@ -54713,8 +54652,8 @@ return /******/ (function(modules) { // webpackBootstrap
54713
54652
  AWS.Route53RecoveryReadiness = Service.defineService('route53recoveryreadiness', ['2019-12-02']);
54714
54653
  Object.defineProperty(apiLoader.services['route53recoveryreadiness'], '2019-12-02', {
54715
54654
  get: function get() {
54716
- var model = __webpack_require__(1042);
54717
- model.paginators = __webpack_require__(1043).pagination;
54655
+ var model = __webpack_require__(1038);
54656
+ model.paginators = __webpack_require__(1039).pagination;
54718
54657
  return model;
54719
54658
  },
54720
54659
  enumerable: true,
@@ -54725,19 +54664,19 @@ return /******/ (function(modules) { // webpackBootstrap
54725
54664
 
54726
54665
 
54727
54666
  /***/ }),
54728
- /* 1042 */
54667
+ /* 1038 */
54729
54668
  /***/ (function(module, exports) {
54730
54669
 
54731
54670
  module.exports = {"metadata":{"apiVersion":"2019-12-02","endpointPrefix":"route53-recovery-readiness","signingName":"route53-recovery-readiness","serviceFullName":"AWS Route53 Recovery Readiness","serviceId":"Route53 Recovery Readiness","protocol":"rest-json","jsonVersion":"1.1","uid":"route53-recovery-readiness-2019-12-02","signatureVersion":"v4"},"operations":{"CreateCell":{"http":{"requestUri":"/cells","responseCode":200},"input":{"type":"structure","members":{"CellName":{"locationName":"cellName"},"Cells":{"shape":"S3","locationName":"cells"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["CellName"]},"output":{"type":"structure","members":{"CellArn":{"locationName":"cellArn"},"CellName":{"locationName":"cellName"},"Cells":{"shape":"S3","locationName":"cells"},"ParentReadinessScopes":{"shape":"S3","locationName":"parentReadinessScopes"},"Tags":{"shape":"S4","locationName":"tags"}}}},"CreateCrossAccountAuthorization":{"http":{"requestUri":"/crossaccountauthorizations","responseCode":200},"input":{"type":"structure","members":{"CrossAccountAuthorization":{"locationName":"crossAccountAuthorization"}},"required":["CrossAccountAuthorization"]},"output":{"type":"structure","members":{"CrossAccountAuthorization":{"locationName":"crossAccountAuthorization"}}}},"CreateReadinessCheck":{"http":{"requestUri":"/readinesschecks","responseCode":200},"input":{"type":"structure","members":{"ReadinessCheckName":{"locationName":"readinessCheckName"},"ResourceSetName":{"locationName":"resourceSetName"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["ResourceSetName","ReadinessCheckName"]},"output":{"type":"structure","members":{"ReadinessCheckArn":{"locationName":"readinessCheckArn"},"ReadinessCheckName":{"locationName":"readinessCheckName"},"ResourceSet":{"locationName":"resourceSet"},"Tags":{"shape":"S4","locationName":"tags"}}}},"CreateRecoveryGroup":{"http":{"requestUri":"/recoverygroups","responseCode":200},"input":{"type":"structure","members":{"Cells":{"shape":"S3","locationName":"cells"},"RecoveryGroupName":{"locationName":"recoveryGroupName"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["RecoveryGroupName"]},"output":{"type":"structure","members":{"Cells":{"shape":"S3","locationName":"cells"},"RecoveryGroupArn":{"locationName":"recoveryGroupArn"},"RecoveryGroupName":{"locationName":"recoveryGroupName"},"Tags":{"shape":"S4","locationName":"tags"}}}},"CreateResourceSet":{"http":{"requestUri":"/resourcesets","responseCode":200},"input":{"type":"structure","members":{"ResourceSetName":{"locationName":"resourceSetName"},"ResourceSetType":{"locationName":"resourceSetType"},"Resources":{"shape":"Sh","locationName":"resources"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["ResourceSetType","ResourceSetName","Resources"]},"output":{"type":"structure","members":{"ResourceSetArn":{"locationName":"resourceSetArn"},"ResourceSetName":{"locationName":"resourceSetName"},"ResourceSetType":{"locationName":"resourceSetType"},"Resources":{"shape":"Sh","locationName":"resources"},"Tags":{"shape":"S4","locationName":"tags"}}}},"DeleteCell":{"http":{"method":"DELETE","requestUri":"/cells/{cellName}","responseCode":204},"input":{"type":"structure","members":{"CellName":{"location":"uri","locationName":"cellName"}},"required":["CellName"]}},"DeleteCrossAccountAuthorization":{"http":{"method":"DELETE","requestUri":"/crossaccountauthorizations/{crossAccountAuthorization}","responseCode":200},"input":{"type":"structure","members":{"CrossAccountAuthorization":{"location":"uri","locationName":"crossAccountAuthorization"}},"required":["CrossAccountAuthorization"]},"output":{"type":"structure","members":{}}},"DeleteReadinessCheck":{"http":{"method":"DELETE","requestUri":"/readinesschecks/{readinessCheckName}","responseCode":204},"input":{"type":"structure","members":{"ReadinessCheckName":{"location":"uri","locationName":"readinessCheckName"}},"required":["ReadinessCheckName"]}},"DeleteRecoveryGroup":{"http":{"method":"DELETE","requestUri":"/recoverygroups/{recoveryGroupName}","responseCode":204},"input":{"type":"structure","members":{"RecoveryGroupName":{"location":"uri","locationName":"recoveryGroupName"}},"required":["RecoveryGroupName"]}},"DeleteResourceSet":{"http":{"method":"DELETE","requestUri":"/resourcesets/{resourceSetName}","responseCode":204},"input":{"type":"structure","members":{"ResourceSetName":{"location":"uri","locationName":"resourceSetName"}},"required":["ResourceSetName"]}},"GetArchitectureRecommendations":{"http":{"method":"GET","requestUri":"/recoverygroups/{recoveryGroupName}/architectureRecommendations","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"},"RecoveryGroupName":{"location":"uri","locationName":"recoveryGroupName"}},"required":["RecoveryGroupName"]},"output":{"type":"structure","members":{"LastAuditTimestamp":{"locationName":"lastAuditTimestamp","type":"timestamp","timestampFormat":"iso8601"},"NextToken":{"locationName":"nextToken"},"Recommendations":{"locationName":"recommendations","type":"list","member":{"type":"structure","members":{"RecommendationText":{"locationName":"recommendationText"}},"required":["RecommendationText"]}}}}},"GetCell":{"http":{"method":"GET","requestUri":"/cells/{cellName}","responseCode":200},"input":{"type":"structure","members":{"CellName":{"location":"uri","locationName":"cellName"}},"required":["CellName"]},"output":{"type":"structure","members":{"CellArn":{"locationName":"cellArn"},"CellName":{"locationName":"cellName"},"Cells":{"shape":"S3","locationName":"cells"},"ParentReadinessScopes":{"shape":"S3","locationName":"parentReadinessScopes"},"Tags":{"shape":"S4","locationName":"tags"}}}},"GetCellReadinessSummary":{"http":{"method":"GET","requestUri":"/cellreadiness/{cellName}","responseCode":200},"input":{"type":"structure","members":{"CellName":{"location":"uri","locationName":"cellName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}},"required":["CellName"]},"output":{"type":"structure","members":{"NextToken":{"locationName":"nextToken"},"Readiness":{"locationName":"readiness"},"ReadinessChecks":{"shape":"S15","locationName":"readinessChecks"}}}},"GetReadinessCheck":{"http":{"method":"GET","requestUri":"/readinesschecks/{readinessCheckName}","responseCode":200},"input":{"type":"structure","members":{"ReadinessCheckName":{"location":"uri","locationName":"readinessCheckName"}},"required":["ReadinessCheckName"]},"output":{"type":"structure","members":{"ReadinessCheckArn":{"locationName":"readinessCheckArn"},"ReadinessCheckName":{"locationName":"readinessCheckName"},"ResourceSet":{"locationName":"resourceSet"},"Tags":{"shape":"S4","locationName":"tags"}}}},"GetReadinessCheckResourceStatus":{"http":{"method":"GET","requestUri":"/readinesschecks/{readinessCheckName}/resource/{resourceIdentifier}/status","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"},"ReadinessCheckName":{"location":"uri","locationName":"readinessCheckName"},"ResourceIdentifier":{"location":"uri","locationName":"resourceIdentifier"}},"required":["ReadinessCheckName","ResourceIdentifier"]},"output":{"type":"structure","members":{"NextToken":{"locationName":"nextToken"},"Readiness":{"locationName":"readiness"},"Rules":{"locationName":"rules","type":"list","member":{"type":"structure","members":{"LastCheckedTimestamp":{"shape":"S1d","locationName":"lastCheckedTimestamp"},"Messages":{"shape":"S1e","locationName":"messages"},"Readiness":{"locationName":"readiness"},"RuleId":{"locationName":"ruleId"}},"required":["Messages","Readiness","RuleId","LastCheckedTimestamp"]}}}}},"GetReadinessCheckStatus":{"http":{"method":"GET","requestUri":"/readinesschecks/{readinessCheckName}/status","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"},"ReadinessCheckName":{"location":"uri","locationName":"readinessCheckName"}},"required":["ReadinessCheckName"]},"output":{"type":"structure","members":{"Messages":{"shape":"S1e","locationName":"messages"},"NextToken":{"locationName":"nextToken"},"Readiness":{"locationName":"readiness"},"Resources":{"locationName":"resources","type":"list","member":{"type":"structure","members":{"ComponentId":{"locationName":"componentId"},"LastCheckedTimestamp":{"shape":"S1d","locationName":"lastCheckedTimestamp"},"Readiness":{"locationName":"readiness"},"ResourceArn":{"locationName":"resourceArn"}},"required":["Readiness","LastCheckedTimestamp"]}}}}},"GetRecoveryGroup":{"http":{"method":"GET","requestUri":"/recoverygroups/{recoveryGroupName}","responseCode":200},"input":{"type":"structure","members":{"RecoveryGroupName":{"location":"uri","locationName":"recoveryGroupName"}},"required":["RecoveryGroupName"]},"output":{"type":"structure","members":{"Cells":{"shape":"S3","locationName":"cells"},"RecoveryGroupArn":{"locationName":"recoveryGroupArn"},"RecoveryGroupName":{"locationName":"recoveryGroupName"},"Tags":{"shape":"S4","locationName":"tags"}}}},"GetRecoveryGroupReadinessSummary":{"http":{"method":"GET","requestUri":"/recoverygroupreadiness/{recoveryGroupName}","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"},"RecoveryGroupName":{"location":"uri","locationName":"recoveryGroupName"}},"required":["RecoveryGroupName"]},"output":{"type":"structure","members":{"NextToken":{"locationName":"nextToken"},"Readiness":{"locationName":"readiness"},"ReadinessChecks":{"shape":"S15","locationName":"readinessChecks"}}}},"GetResourceSet":{"http":{"method":"GET","requestUri":"/resourcesets/{resourceSetName}","responseCode":200},"input":{"type":"structure","members":{"ResourceSetName":{"location":"uri","locationName":"resourceSetName"}},"required":["ResourceSetName"]},"output":{"type":"structure","members":{"ResourceSetArn":{"locationName":"resourceSetArn"},"ResourceSetName":{"locationName":"resourceSetName"},"ResourceSetType":{"locationName":"resourceSetType"},"Resources":{"shape":"Sh","locationName":"resources"},"Tags":{"shape":"S4","locationName":"tags"}}}},"ListCells":{"http":{"method":"GET","requestUri":"/cells","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Cells":{"locationName":"cells","type":"list","member":{"type":"structure","members":{"CellArn":{"locationName":"cellArn"},"CellName":{"locationName":"cellName"},"Cells":{"shape":"S3","locationName":"cells"},"ParentReadinessScopes":{"shape":"S3","locationName":"parentReadinessScopes"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["ParentReadinessScopes","CellArn","CellName","Cells"]}},"NextToken":{"locationName":"nextToken"}}}},"ListCrossAccountAuthorizations":{"http":{"method":"GET","requestUri":"/crossaccountauthorizations","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"CrossAccountAuthorizations":{"locationName":"crossAccountAuthorizations","type":"list","member":{}},"NextToken":{"locationName":"nextToken"}}}},"ListReadinessChecks":{"http":{"method":"GET","requestUri":"/readinesschecks","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"NextToken":{"locationName":"nextToken"},"ReadinessChecks":{"locationName":"readinessChecks","type":"list","member":{"type":"structure","members":{"ReadinessCheckArn":{"locationName":"readinessCheckArn"},"ReadinessCheckName":{"locationName":"readinessCheckName"},"ResourceSet":{"locationName":"resourceSet"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["ReadinessCheckArn","ResourceSet"]}}}}},"ListRecoveryGroups":{"http":{"method":"GET","requestUri":"/recoverygroups","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"NextToken":{"locationName":"nextToken"},"RecoveryGroups":{"locationName":"recoveryGroups","type":"list","member":{"type":"structure","members":{"Cells":{"shape":"S3","locationName":"cells"},"RecoveryGroupArn":{"locationName":"recoveryGroupArn"},"RecoveryGroupName":{"locationName":"recoveryGroupName"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["RecoveryGroupArn","RecoveryGroupName","Cells"]}}}}},"ListResourceSets":{"http":{"method":"GET","requestUri":"/resourcesets","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"NextToken":{"locationName":"nextToken"},"ResourceSets":{"locationName":"resourceSets","type":"list","member":{"type":"structure","members":{"ResourceSetArn":{"locationName":"resourceSetArn"},"ResourceSetName":{"locationName":"resourceSetName"},"ResourceSetType":{"locationName":"resourceSetType"},"Resources":{"shape":"Sh","locationName":"resources"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["ResourceSetType","ResourceSetName","ResourceSetArn","Resources"]}}}}},"ListRules":{"http":{"method":"GET","requestUri":"/rules","responseCode":200},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"},"ResourceType":{"location":"querystring","locationName":"resourceType"}}},"output":{"type":"structure","members":{"NextToken":{"locationName":"nextToken"},"Rules":{"locationName":"rules","type":"list","member":{"type":"structure","members":{"ResourceType":{"locationName":"resourceType"},"RuleDescription":{"locationName":"ruleDescription"},"RuleId":{"locationName":"ruleId"}},"required":["RuleDescription","RuleId","ResourceType"]}}}}},"ListTagsForResources":{"http":{"method":"GET","requestUri":"/tags/{resource-arn}","responseCode":200},"input":{"type":"structure","members":{"ResourceArn":{"location":"uri","locationName":"resource-arn"}},"required":["ResourceArn"]},"output":{"type":"structure","members":{"Tags":{"shape":"S4","locationName":"tags"}}}},"TagResource":{"http":{"requestUri":"/tags/{resource-arn}","responseCode":200},"input":{"type":"structure","members":{"ResourceArn":{"location":"uri","locationName":"resource-arn"},"Tags":{"shape":"S4","locationName":"tags"}},"required":["ResourceArn","Tags"]},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resource-arn}","responseCode":204},"input":{"type":"structure","members":{"ResourceArn":{"location":"uri","locationName":"resource-arn"},"TagKeys":{"shape":"S3","location":"querystring","locationName":"tagKeys"}},"required":["TagKeys","ResourceArn"]}},"UpdateCell":{"http":{"method":"PUT","requestUri":"/cells/{cellName}","responseCode":200},"input":{"type":"structure","members":{"CellName":{"location":"uri","locationName":"cellName"},"Cells":{"shape":"S3","locationName":"cells"}},"required":["CellName","Cells"]},"output":{"type":"structure","members":{"CellArn":{"locationName":"cellArn"},"CellName":{"locationName":"cellName"},"Cells":{"shape":"S3","locationName":"cells"},"ParentReadinessScopes":{"shape":"S3","locationName":"parentReadinessScopes"},"Tags":{"shape":"S4","locationName":"tags"}}}},"UpdateReadinessCheck":{"http":{"method":"PUT","requestUri":"/readinesschecks/{readinessCheckName}","responseCode":200},"input":{"type":"structure","members":{"ReadinessCheckName":{"location":"uri","locationName":"readinessCheckName"},"ResourceSetName":{"locationName":"resourceSetName"}},"required":["ReadinessCheckName","ResourceSetName"]},"output":{"type":"structure","members":{"ReadinessCheckArn":{"locationName":"readinessCheckArn"},"ReadinessCheckName":{"locationName":"readinessCheckName"},"ResourceSet":{"locationName":"resourceSet"},"Tags":{"shape":"S4","locationName":"tags"}}}},"UpdateRecoveryGroup":{"http":{"method":"PUT","requestUri":"/recoverygroups/{recoveryGroupName}","responseCode":200},"input":{"type":"structure","members":{"Cells":{"shape":"S3","locationName":"cells"},"RecoveryGroupName":{"location":"uri","locationName":"recoveryGroupName"}},"required":["RecoveryGroupName","Cells"]},"output":{"type":"structure","members":{"Cells":{"shape":"S3","locationName":"cells"},"RecoveryGroupArn":{"locationName":"recoveryGroupArn"},"RecoveryGroupName":{"locationName":"recoveryGroupName"},"Tags":{"shape":"S4","locationName":"tags"}}}},"UpdateResourceSet":{"http":{"method":"PUT","requestUri":"/resourcesets/{resourceSetName}","responseCode":200},"input":{"type":"structure","members":{"ResourceSetName":{"location":"uri","locationName":"resourceSetName"},"ResourceSetType":{"locationName":"resourceSetType"},"Resources":{"shape":"Sh","locationName":"resources"}},"required":["ResourceSetName","ResourceSetType","Resources"]},"output":{"type":"structure","members":{"ResourceSetArn":{"locationName":"resourceSetArn"},"ResourceSetName":{"locationName":"resourceSetName"},"ResourceSetType":{"locationName":"resourceSetType"},"Resources":{"shape":"Sh","locationName":"resources"},"Tags":{"shape":"S4","locationName":"tags"}}}}},"shapes":{"S3":{"type":"list","member":{}},"S4":{"type":"map","key":{},"value":{}},"Sh":{"type":"list","member":{"type":"structure","members":{"ComponentId":{"locationName":"componentId"},"DnsTargetResource":{"locationName":"dnsTargetResource","type":"structure","members":{"DomainName":{"locationName":"domainName"},"HostedZoneArn":{"locationName":"hostedZoneArn"},"RecordSetId":{"locationName":"recordSetId"},"RecordType":{"locationName":"recordType"},"TargetResource":{"locationName":"targetResource","type":"structure","members":{"NLBResource":{"locationName":"nLBResource","type":"structure","members":{"Arn":{"locationName":"arn"}}},"R53Resource":{"locationName":"r53Resource","type":"structure","members":{"DomainName":{"locationName":"domainName"},"RecordSetId":{"locationName":"recordSetId"}}}}}}},"ReadinessScopes":{"shape":"S3","locationName":"readinessScopes"},"ResourceArn":{"locationName":"resourceArn"}}}},"S15":{"type":"list","member":{"type":"structure","members":{"Readiness":{"locationName":"readiness"},"ReadinessCheckName":{"locationName":"readinessCheckName"}}}},"S1d":{"type":"timestamp","timestampFormat":"iso8601"},"S1e":{"type":"list","member":{"type":"structure","members":{"MessageText":{"locationName":"messageText"}}}}}}
54732
54671
 
54733
54672
  /***/ }),
54734
- /* 1043 */
54673
+ /* 1039 */
54735
54674
  /***/ (function(module, exports) {
54736
54675
 
54737
54676
  module.exports = {"pagination":{"ListReadinessChecks":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"ReadinessChecks"},"ListResourceSets":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"ResourceSets"},"ListCells":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"Cells"},"ListRecoveryGroups":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"RecoveryGroups"},"ListRules":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"Rules"},"ListCrossAccountAuthorizations":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"CrossAccountAuthorizations"},"GetCellReadinessSummary":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"ReadinessChecks","non_aggregate_keys":["Readiness"]},"GetRecoveryGroupReadinessSummary":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"ReadinessChecks","non_aggregate_keys":["Readiness"]},"GetReadinessCheckStatus":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"Resources","non_aggregate_keys":["Readiness","Messages"]},"GetReadinessCheckResourceStatus":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults","result_key":"Rules","non_aggregate_keys":["Readiness"]}}}
54738
54677
 
54739
54678
  /***/ }),
54740
- /* 1044 */
54679
+ /* 1040 */
54741
54680
  /***/ (function(module, exports, __webpack_require__) {
54742
54681
 
54743
54682
  __webpack_require__(2);
@@ -54749,8 +54688,8 @@ return /******/ (function(modules) { // webpackBootstrap
54749
54688
  AWS.ChimeSDKIdentity = Service.defineService('chimesdkidentity', ['2021-04-20']);
54750
54689
  Object.defineProperty(apiLoader.services['chimesdkidentity'], '2021-04-20', {
54751
54690
  get: function get() {
54752
- var model = __webpack_require__(1045);
54753
- model.paginators = __webpack_require__(1046).pagination;
54691
+ var model = __webpack_require__(1041);
54692
+ model.paginators = __webpack_require__(1042).pagination;
54754
54693
  return model;
54755
54694
  },
54756
54695
  enumerable: true,
@@ -54761,19 +54700,19 @@ return /******/ (function(modules) { // webpackBootstrap
54761
54700
 
54762
54701
 
54763
54702
  /***/ }),
54764
- /* 1045 */
54703
+ /* 1041 */
54765
54704
  /***/ (function(module, exports) {
54766
54705
 
54767
54706
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-04-20","endpointPrefix":"identity-chime","protocol":"rest-json","serviceFullName":"Amazon Chime SDK Identity","serviceId":"Chime SDK Identity","signatureVersion":"v4","signingName":"chime","uid":"chime-sdk-identity-2021-04-20"},"operations":{"CreateAppInstance":{"http":{"requestUri":"/app-instances","responseCode":201},"input":{"type":"structure","required":["Name","ClientRequestToken"],"members":{"Name":{"shape":"S2"},"Metadata":{"shape":"S3"},"ClientRequestToken":{"shape":"S4","idempotencyToken":true},"Tags":{"shape":"S5"}}},"output":{"type":"structure","members":{"AppInstanceArn":{}}}},"CreateAppInstanceAdmin":{"http":{"requestUri":"/app-instances/{appInstanceArn}/admins","responseCode":201},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceAdmin":{"shape":"Sd"},"AppInstanceArn":{}}}},"CreateAppInstanceUser":{"http":{"requestUri":"/app-instance-users","responseCode":201},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceUserId","Name","ClientRequestToken"],"members":{"AppInstanceArn":{},"AppInstanceUserId":{"type":"string","sensitive":true},"Name":{"shape":"Sh"},"Metadata":{"shape":"S3"},"ClientRequestToken":{"shape":"S4","idempotencyToken":true},"Tags":{"shape":"S5"}}},"output":{"type":"structure","members":{"AppInstanceUserArn":{}}}},"DeleteAppInstance":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}}},"DeleteAppInstanceAdmin":{"http":{"method":"DELETE","requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{"location":"uri","locationName":"appInstanceAdminArn"},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}}},"DeleteAppInstanceUser":{"http":{"method":"DELETE","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":204},"input":{"type":"structure","required":["AppInstanceUserArn"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"}}}},"DescribeAppInstance":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}"},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstance":{"type":"structure","members":{"AppInstanceArn":{},"Name":{"shape":"S2"},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"Metadata":{"shape":"S3"}}}}}},"DescribeAppInstanceAdmin":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/admins/{appInstanceAdminArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceAdminArn","AppInstanceArn"],"members":{"AppInstanceAdminArn":{"location":"uri","locationName":"appInstanceAdminArn"},"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceAdmin":{"type":"structure","members":{"Admin":{"shape":"Sd"},"AppInstanceArn":{},"CreatedTimestamp":{"type":"timestamp"}}}}}},"DescribeAppInstanceUser":{"http":{"method":"GET","requestUri":"/app-instance-users/{appInstanceUserArn}"},"input":{"type":"structure","required":["AppInstanceUserArn"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"}}},"output":{"type":"structure","members":{"AppInstanceUser":{"type":"structure","members":{"AppInstanceUserArn":{},"Name":{"shape":"Sh"},"Metadata":{"shape":"S3"},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}}},"GetAppInstanceRetentionSettings":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/retention-settings","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"}}},"output":{"type":"structure","members":{"AppInstanceRetentionSettings":{"shape":"Sy"},"InitiateDeletionTimestamp":{"type":"timestamp"}}}},"ListAppInstanceAdmins":{"http":{"method":"GET","requestUri":"/app-instances/{appInstanceArn}/admins","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S13","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstanceArn":{},"AppInstanceAdmins":{"type":"list","member":{"type":"structure","members":{"Admin":{"shape":"Sd"}}}},"NextToken":{"shape":"S13"}}}},"ListAppInstanceUsers":{"http":{"method":"GET","requestUri":"/app-instance-users"},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"querystring","locationName":"app-instance-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S13","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstanceArn":{},"AppInstanceUsers":{"type":"list","member":{"type":"structure","members":{"AppInstanceUserArn":{},"Name":{"shape":"Sh"},"Metadata":{"shape":"S3"}}}},"NextToken":{"shape":"S13"}}}},"ListAppInstances":{"http":{"method":"GET","requestUri":"/app-instances"},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S13","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"AppInstances":{"type":"list","member":{"type":"structure","members":{"AppInstanceArn":{},"Name":{"shape":"S2"},"Metadata":{"shape":"S3"}}}},"NextToken":{"shape":"S13"}}}},"PutAppInstanceRetentionSettings":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}/retention-settings","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","AppInstanceRetentionSettings"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"AppInstanceRetentionSettings":{"shape":"Sy"}}},"output":{"type":"structure","members":{"AppInstanceRetentionSettings":{"shape":"Sy"},"InitiateDeletionTimestamp":{"type":"timestamp"}}}},"UpdateAppInstance":{"http":{"method":"PUT","requestUri":"/app-instances/{appInstanceArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","Name","Metadata"],"members":{"AppInstanceArn":{"location":"uri","locationName":"appInstanceArn"},"Name":{"shape":"S2"},"Metadata":{"shape":"S3"}}},"output":{"type":"structure","members":{"AppInstanceArn":{}}}},"UpdateAppInstanceUser":{"http":{"method":"PUT","requestUri":"/app-instance-users/{appInstanceUserArn}","responseCode":200},"input":{"type":"structure","required":["AppInstanceUserArn","Name","Metadata"],"members":{"AppInstanceUserArn":{"location":"uri","locationName":"appInstanceUserArn"},"Name":{"shape":"Sh"},"Metadata":{"shape":"S3"}}},"output":{"type":"structure","members":{"AppInstanceUserArn":{}}}}},"shapes":{"S2":{"type":"string","sensitive":true},"S3":{"type":"string","sensitive":true},"S4":{"type":"string","sensitive":true},"S5":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{"type":"string","sensitive":true},"Value":{"type":"string","sensitive":true}}}},"Sd":{"type":"structure","members":{"Arn":{},"Name":{"type":"string","sensitive":true}}},"Sh":{"type":"string","sensitive":true},"Sy":{"type":"structure","members":{"ChannelRetentionSettings":{"type":"structure","members":{"RetentionDays":{"type":"integer"}}}}},"S13":{"type":"string","sensitive":true}}}
54768
54707
 
54769
54708
  /***/ }),
54770
- /* 1046 */
54709
+ /* 1042 */
54771
54710
  /***/ (function(module, exports) {
54772
54711
 
54773
54712
  module.exports = {"pagination":{"ListAppInstanceAdmins":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListAppInstanceUsers":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListAppInstances":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54774
54713
 
54775
54714
  /***/ }),
54776
- /* 1047 */
54715
+ /* 1043 */
54777
54716
  /***/ (function(module, exports, __webpack_require__) {
54778
54717
 
54779
54718
  __webpack_require__(2);
@@ -54785,8 +54724,8 @@ return /******/ (function(modules) { // webpackBootstrap
54785
54724
  AWS.ChimeSDKMessaging = Service.defineService('chimesdkmessaging', ['2021-05-15']);
54786
54725
  Object.defineProperty(apiLoader.services['chimesdkmessaging'], '2021-05-15', {
54787
54726
  get: function get() {
54788
- var model = __webpack_require__(1048);
54789
- model.paginators = __webpack_require__(1049).pagination;
54727
+ var model = __webpack_require__(1044);
54728
+ model.paginators = __webpack_require__(1045).pagination;
54790
54729
  return model;
54791
54730
  },
54792
54731
  enumerable: true,
@@ -54797,19 +54736,19 @@ return /******/ (function(modules) { // webpackBootstrap
54797
54736
 
54798
54737
 
54799
54738
  /***/ }),
54800
- /* 1048 */
54739
+ /* 1044 */
54801
54740
  /***/ (function(module, exports) {
54802
54741
 
54803
54742
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-05-15","endpointPrefix":"messaging-chime","protocol":"rest-json","serviceFullName":"Amazon Chime SDK Messaging","serviceId":"Chime SDK Messaging","signatureVersion":"v4","signingName":"chime","uid":"chime-sdk-messaging-2021-05-15"},"operations":{"AssociateChannelFlow":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}/channel-flow","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChannelFlowArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelFlowArn":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}}},"BatchCreateChannelMembership":{"http":{"requestUri":"/channels/{channelArn}/memberships?operation=batch-create","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArns","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Type":{},"MemberArns":{"type":"list","member":{}},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"BatchChannelMemberships":{"type":"structure","members":{"InvitedBy":{"shape":"S8"},"Type":{},"Members":{"type":"list","member":{"shape":"S8"}},"ChannelArn":{}}},"Errors":{"type":"list","member":{"type":"structure","members":{"MemberArn":{},"ErrorCode":{},"ErrorMessage":{}}}}}}},"ChannelFlowCallback":{"http":{"requestUri":"/channels/{channelArn}?operation=channel-flow-callback","responseCode":200},"input":{"type":"structure","required":["CallbackId","ChannelArn","ChannelMessage"],"members":{"CallbackId":{"idempotencyToken":true},"ChannelArn":{"location":"uri","locationName":"channelArn"},"DeleteResource":{"type":"boolean"},"ChannelMessage":{"type":"structure","required":["MessageId"],"members":{"MessageId":{},"Content":{"shape":"Sk"},"Metadata":{"shape":"Sl"}}}}},"output":{"type":"structure","members":{"ChannelArn":{},"CallbackId":{}}}},"CreateChannel":{"http":{"requestUri":"/channels","responseCode":201},"input":{"type":"structure","required":["AppInstanceArn","Name","ClientRequestToken","ChimeBearer"],"members":{"AppInstanceArn":{},"Name":{"shape":"So"},"Mode":{},"Privacy":{},"Metadata":{"shape":"Sl"},"ClientRequestToken":{"shape":"Sr","idempotencyToken":true},"Tags":{"shape":"Ss"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}}},"CreateChannelBan":{"http":{"requestUri":"/channels/{channelArn}/bans","responseCode":201},"input":{"type":"structure","required":["ChannelArn","MemberArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"Member":{"shape":"S8"}}}},"CreateChannelFlow":{"http":{"requestUri":"/channel-flows","responseCode":201},"input":{"type":"structure","required":["AppInstanceArn","Processors","Name","ClientRequestToken"],"members":{"AppInstanceArn":{},"Processors":{"shape":"S10"},"Name":{"shape":"So"},"Tags":{"shape":"Ss"},"ClientRequestToken":{"shape":"Sr"}}},"output":{"type":"structure","members":{"ChannelFlowArn":{}}}},"CreateChannelMembership":{"http":{"requestUri":"/channels/{channelArn}/memberships","responseCode":201},"input":{"type":"structure","required":["ChannelArn","MemberArn","Type","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{},"Type":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"Member":{"shape":"S8"}}}},"CreateChannelModerator":{"http":{"requestUri":"/channels/{channelArn}/moderators","responseCode":201},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"ChannelModerator":{"shape":"S8"}}}},"DeleteChannel":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}}},"DeleteChannelBan":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/bans/{memberArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MemberArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}}},"DeleteChannelFlow":{"http":{"method":"DELETE","requestUri":"/channel-flows/{channelFlowArn}","responseCode":204},"input":{"type":"structure","required":["ChannelFlowArn"],"members":{"ChannelFlowArn":{"location":"uri","locationName":"channelFlowArn"}}}},"DeleteChannelMembership":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/memberships/{memberArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MemberArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}}},"DeleteChannelMessage":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","MessageId","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}}},"DeleteChannelModerator":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{"location":"uri","locationName":"channelModeratorArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}}},"DescribeChannel":{"http":{"method":"GET","requestUri":"/channels/{channelArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channel":{"type":"structure","members":{"Name":{"shape":"So"},"ChannelArn":{},"Mode":{},"Privacy":{},"Metadata":{"shape":"Sl"},"CreatedBy":{"shape":"S8"},"CreatedTimestamp":{"type":"timestamp"},"LastMessageTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"ChannelFlowArn":{}}}}}},"DescribeChannelBan":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/bans/{memberArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelBan":{"type":"structure","members":{"Member":{"shape":"S8"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"CreatedBy":{"shape":"S8"}}}}}},"DescribeChannelFlow":{"http":{"method":"GET","requestUri":"/channel-flows/{channelFlowArn}","responseCode":200},"input":{"type":"structure","required":["ChannelFlowArn"],"members":{"ChannelFlowArn":{"location":"uri","locationName":"channelFlowArn"}}},"output":{"type":"structure","members":{"ChannelFlow":{"type":"structure","members":{"ChannelFlowArn":{},"Processors":{"shape":"S10"},"Name":{"shape":"So"},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}}},"DescribeChannelMembership":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/memberships/{memberArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MemberArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MemberArn":{"location":"uri","locationName":"memberArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMembership":{"type":"structure","members":{"InvitedBy":{"shape":"S8"},"Type":{},"Member":{"shape":"S8"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"}}}}}},"DescribeChannelMembershipForAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels/{channelArn}?scope=app-instance-user-membership","responseCode":200},"input":{"type":"structure","required":["ChannelArn","AppInstanceUserArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMembership":{"shape":"S1y"}}}},"DescribeChannelModeratedByAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels/{channelArn}?scope=app-instance-user-moderated-channel","responseCode":200},"input":{"type":"structure","required":["ChannelArn","AppInstanceUserArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channel":{"shape":"S23"}}}},"DescribeChannelModerator":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/moderators/{channelModeratorArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChannelModeratorArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelModeratorArn":{"location":"uri","locationName":"channelModeratorArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelModerator":{"type":"structure","members":{"Moderator":{"shape":"S8"},"ChannelArn":{},"CreatedTimestamp":{"type":"timestamp"},"CreatedBy":{"shape":"S8"}}}}}},"DisassociateChannelFlow":{"http":{"method":"DELETE","requestUri":"/channels/{channelArn}/channel-flow/{channelFlowArn}","responseCode":204},"input":{"type":"structure","required":["ChannelArn","ChannelFlowArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChannelFlowArn":{"location":"uri","locationName":"channelFlowArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}}},"GetChannelMessage":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMessage":{"type":"structure","members":{"ChannelArn":{},"MessageId":{},"Content":{"shape":"S2b"},"Metadata":{"shape":"Sl"},"Type":{},"CreatedTimestamp":{"type":"timestamp"},"LastEditedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"Sender":{"shape":"S8"},"Redacted":{"type":"boolean"},"Persistence":{},"Status":{"shape":"S2e"}}}}}},"GetChannelMessageStatus":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/messages/{messageId}?scope=message-status","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Status":{"shape":"S2e"}}}},"GetMessagingSessionEndpoint":{"http":{"method":"GET","requestUri":"/endpoints/messaging-session","responseCode":200},"input":{"type":"structure","members":{}},"output":{"type":"structure","members":{"Endpoint":{"type":"structure","members":{"Url":{}}}}}},"ListChannelBans":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/bans","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"S2p"},"ChannelBans":{"type":"list","member":{"type":"structure","members":{"Member":{"shape":"S8"}}}}}}},"ListChannelFlows":{"http":{"method":"GET","requestUri":"/channel-flows","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn"],"members":{"AppInstanceArn":{"location":"querystring","locationName":"app-instance-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"ChannelFlows":{"type":"list","member":{"type":"structure","members":{"ChannelFlowArn":{},"Name":{"shape":"So"},"Processors":{"shape":"S10"}}}},"NextToken":{"shape":"S2p"}}}},"ListChannelMemberships":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/memberships","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Type":{"location":"querystring","locationName":"type"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"ChannelMemberships":{"type":"list","member":{"type":"structure","members":{"Member":{"shape":"S8"}}}},"NextToken":{"shape":"S2p"}}}},"ListChannelMembershipsForAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels?scope=app-instance-user-memberships","responseCode":200},"input":{"type":"structure","required":["ChimeBearer"],"members":{"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelMemberships":{"type":"list","member":{"shape":"S1y"}},"NextToken":{"shape":"S2p"}}}},"ListChannelMessages":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/messages","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"SortOrder":{"location":"querystring","locationName":"sort-order"},"NotBefore":{"location":"querystring","locationName":"not-before","type":"timestamp"},"NotAfter":{"location":"querystring","locationName":"not-after","type":"timestamp"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"S2p"},"ChannelMessages":{"type":"list","member":{"type":"structure","members":{"MessageId":{},"Content":{"shape":"S2b"},"Metadata":{"shape":"Sl"},"Type":{},"CreatedTimestamp":{"type":"timestamp"},"LastUpdatedTimestamp":{"type":"timestamp"},"LastEditedTimestamp":{"type":"timestamp"},"Sender":{"shape":"S8"},"Redacted":{"type":"boolean"},"Status":{"shape":"S2e"}}}}}}},"ListChannelModerators":{"http":{"method":"GET","requestUri":"/channels/{channelArn}/moderators","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"NextToken":{"shape":"S2p"},"ChannelModerators":{"type":"list","member":{"type":"structure","members":{"Moderator":{"shape":"S8"}}}}}}},"ListChannels":{"http":{"method":"GET","requestUri":"/channels","responseCode":200},"input":{"type":"structure","required":["AppInstanceArn","ChimeBearer"],"members":{"AppInstanceArn":{"location":"querystring","locationName":"app-instance-arn"},"Privacy":{"location":"querystring","locationName":"privacy"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channels":{"type":"list","member":{"shape":"S1z"}},"NextToken":{"shape":"S2p"}}}},"ListChannelsAssociatedWithChannelFlow":{"http":{"method":"GET","requestUri":"/channels?scope=channel-flow-associations","responseCode":200},"input":{"type":"structure","required":["ChannelFlowArn"],"members":{"ChannelFlowArn":{"location":"querystring","locationName":"channel-flow-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"}}},"output":{"type":"structure","members":{"Channels":{"type":"list","member":{"type":"structure","members":{"Name":{"shape":"So"},"ChannelArn":{},"Mode":{},"Privacy":{},"Metadata":{"shape":"Sl"}}}},"NextToken":{"shape":"S2p"}}}},"ListChannelsModeratedByAppInstanceUser":{"http":{"method":"GET","requestUri":"/channels?scope=app-instance-user-moderated-channels","responseCode":200},"input":{"type":"structure","required":["ChimeBearer"],"members":{"AppInstanceUserArn":{"location":"querystring","locationName":"app-instance-user-arn"},"MaxResults":{"location":"querystring","locationName":"max-results","type":"integer"},"NextToken":{"shape":"S2p","location":"querystring","locationName":"next-token"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"Channels":{"type":"list","member":{"shape":"S23"}},"NextToken":{"shape":"S2p"}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags","responseCode":200},"input":{"type":"structure","required":["ResourceARN"],"members":{"ResourceARN":{"location":"querystring","locationName":"arn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"Ss"}}}},"RedactChannelMessage":{"http":{"requestUri":"/channels/{channelArn}/messages/{messageId}?operation=redact","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{}}}},"SendChannelMessage":{"http":{"requestUri":"/channels/{channelArn}/messages","responseCode":201},"input":{"type":"structure","required":["ChannelArn","Content","Type","Persistence","ClientRequestToken","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Content":{"shape":"Sk"},"Type":{},"Persistence":{},"Metadata":{"shape":"Sl"},"ClientRequestToken":{"shape":"Sr","idempotencyToken":true},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{},"Status":{"shape":"S2e"}}}},"TagResource":{"http":{"requestUri":"/tags?operation=tag-resource","responseCode":204},"input":{"type":"structure","required":["ResourceARN","Tags"],"members":{"ResourceARN":{},"Tags":{"shape":"Ss"}}}},"UntagResource":{"http":{"requestUri":"/tags?operation=untag-resource","responseCode":204},"input":{"type":"structure","required":["ResourceARN","TagKeys"],"members":{"ResourceARN":{},"TagKeys":{"type":"list","member":{"shape":"Su"}}}}},"UpdateChannel":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","Name","Mode","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"Name":{"shape":"So"},"Mode":{},"Metadata":{"shape":"Sl"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}}},"UpdateChannelFlow":{"http":{"method":"PUT","requestUri":"/channel-flows/{channelFlowArn}","responseCode":200},"input":{"type":"structure","required":["ChannelFlowArn","Processors","Name"],"members":{"ChannelFlowArn":{"location":"uri","locationName":"channelFlowArn"},"Processors":{"shape":"S10"},"Name":{"shape":"So"}}},"output":{"type":"structure","members":{"ChannelFlowArn":{}}}},"UpdateChannelMessage":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}/messages/{messageId}","responseCode":200},"input":{"type":"structure","required":["ChannelArn","MessageId","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"MessageId":{"location":"uri","locationName":"messageId"},"Content":{"shape":"S2b"},"Metadata":{"shape":"Sl"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{},"MessageId":{},"Status":{"shape":"S2e"}}}},"UpdateChannelReadMarker":{"http":{"method":"PUT","requestUri":"/channels/{channelArn}/readMarker","responseCode":200},"input":{"type":"structure","required":["ChannelArn","ChimeBearer"],"members":{"ChannelArn":{"location":"uri","locationName":"channelArn"},"ChimeBearer":{"location":"header","locationName":"x-amz-chime-bearer"}}},"output":{"type":"structure","members":{"ChannelArn":{}}}}},"shapes":{"S8":{"type":"structure","members":{"Arn":{},"Name":{"type":"string","sensitive":true}}},"Sk":{"type":"string","sensitive":true},"Sl":{"type":"string","sensitive":true},"So":{"type":"string","sensitive":true},"Sr":{"type":"string","sensitive":true},"Ss":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{"shape":"Su"},"Value":{"type":"string","sensitive":true}}}},"Su":{"type":"string","sensitive":true},"S10":{"type":"list","member":{"type":"structure","required":["Name","Configuration","ExecutionOrder","FallbackAction"],"members":{"Name":{"shape":"So"},"Configuration":{"type":"structure","required":["Lambda"],"members":{"Lambda":{"type":"structure","required":["ResourceArn","InvocationType"],"members":{"ResourceArn":{},"InvocationType":{}}}}},"ExecutionOrder":{"type":"integer"},"FallbackAction":{}}}},"S1y":{"type":"structure","members":{"ChannelSummary":{"shape":"S1z"},"AppInstanceUserMembershipSummary":{"type":"structure","members":{"Type":{},"ReadMarkerTimestamp":{"type":"timestamp"}}}}},"S1z":{"type":"structure","members":{"Name":{"shape":"So"},"ChannelArn":{},"Mode":{},"Privacy":{},"Metadata":{"shape":"Sl"},"LastMessageTimestamp":{"type":"timestamp"}}},"S23":{"type":"structure","members":{"ChannelSummary":{"shape":"S1z"}}},"S2b":{"type":"string","sensitive":true},"S2e":{"type":"structure","members":{"Value":{},"Detail":{}}},"S2p":{"type":"string","sensitive":true}}}
54804
54743
 
54805
54744
  /***/ }),
54806
- /* 1049 */
54745
+ /* 1045 */
54807
54746
  /***/ (function(module, exports) {
54808
54747
 
54809
54748
  module.exports = {"pagination":{"ListChannelBans":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannelFlows":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannelMemberships":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannelMembershipsForAppInstanceUser":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannelMessages":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannelModerators":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannels":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannelsAssociatedWithChannelFlow":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListChannelsModeratedByAppInstanceUser":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54810
54749
 
54811
54750
  /***/ }),
54812
- /* 1050 */
54751
+ /* 1046 */
54813
54752
  /***/ (function(module, exports, __webpack_require__) {
54814
54753
 
54815
54754
  __webpack_require__(2);
@@ -54821,8 +54760,8 @@ return /******/ (function(modules) { // webpackBootstrap
54821
54760
  AWS.SnowDeviceManagement = Service.defineService('snowdevicemanagement', ['2021-08-04']);
54822
54761
  Object.defineProperty(apiLoader.services['snowdevicemanagement'], '2021-08-04', {
54823
54762
  get: function get() {
54824
- var model = __webpack_require__(1051);
54825
- model.paginators = __webpack_require__(1052).pagination;
54763
+ var model = __webpack_require__(1047);
54764
+ model.paginators = __webpack_require__(1048).pagination;
54826
54765
  return model;
54827
54766
  },
54828
54767
  enumerable: true,
@@ -54833,19 +54772,19 @@ return /******/ (function(modules) { // webpackBootstrap
54833
54772
 
54834
54773
 
54835
54774
  /***/ }),
54836
- /* 1051 */
54775
+ /* 1047 */
54837
54776
  /***/ (function(module, exports) {
54838
54777
 
54839
54778
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-08-04","endpointPrefix":"snow-device-management","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"AWS Snow Device Management","serviceId":"Snow Device Management","signatureVersion":"v4","signingName":"snow-device-management","uid":"snow-device-management-2021-08-04"},"operations":{"CancelTask":{"http":{"requestUri":"/task/{taskId}/cancel","responseCode":200},"input":{"type":"structure","required":["taskId"],"members":{"taskId":{"location":"uri","locationName":"taskId"}}},"output":{"type":"structure","members":{"taskId":{}}}},"CreateTask":{"http":{"requestUri":"/task","responseCode":200},"input":{"type":"structure","required":["command","targets"],"members":{"clientToken":{"idempotencyToken":true},"command":{"type":"structure","members":{"reboot":{"type":"structure","members":{}},"unlock":{"type":"structure","members":{}}},"union":true},"description":{},"tags":{"shape":"Sb"},"targets":{"shape":"Sc"}}},"output":{"type":"structure","members":{"taskArn":{},"taskId":{}}}},"DescribeDevice":{"http":{"requestUri":"/managed-device/{managedDeviceId}/describe","responseCode":200},"input":{"type":"structure","required":["managedDeviceId"],"members":{"managedDeviceId":{"location":"uri","locationName":"managedDeviceId"}}},"output":{"type":"structure","members":{"associatedWithJob":{},"deviceCapacities":{"type":"list","member":{"type":"structure","members":{"available":{"type":"long"},"name":{},"total":{"type":"long"},"unit":{},"used":{"type":"long"}}}},"deviceState":{},"deviceType":{},"lastReachedOutAt":{"type":"timestamp"},"lastUpdatedAt":{"type":"timestamp"},"managedDeviceArn":{},"managedDeviceId":{},"physicalNetworkInterfaces":{"type":"list","member":{"type":"structure","members":{"defaultGateway":{},"ipAddress":{},"ipAddressAssignment":{},"macAddress":{},"netmask":{},"physicalConnectorType":{},"physicalNetworkInterfaceId":{}}}},"software":{"type":"structure","members":{"installState":{},"installedVersion":{},"installingVersion":{}}},"tags":{"shape":"Sb"}}}},"DescribeDeviceEc2Instances":{"http":{"requestUri":"/managed-device/{managedDeviceId}/resources/ec2/describe","responseCode":200},"input":{"type":"structure","required":["instanceIds","managedDeviceId"],"members":{"instanceIds":{"type":"list","member":{}},"managedDeviceId":{"location":"uri","locationName":"managedDeviceId"}}},"output":{"type":"structure","members":{"instances":{"type":"list","member":{"type":"structure","members":{"instance":{"type":"structure","members":{"amiLaunchIndex":{"type":"integer"},"blockDeviceMappings":{"type":"list","member":{"type":"structure","members":{"deviceName":{},"ebs":{"type":"structure","members":{"attachTime":{"type":"timestamp"},"deleteOnTermination":{"type":"boolean"},"status":{},"volumeId":{}}}}}},"cpuOptions":{"type":"structure","members":{"coreCount":{"type":"integer"},"threadsPerCore":{"type":"integer"}}},"createdAt":{"type":"timestamp"},"imageId":{},"instanceId":{},"instanceType":{},"privateIpAddress":{},"publicIpAddress":{},"rootDeviceName":{},"securityGroups":{"type":"list","member":{"type":"structure","members":{"groupId":{},"groupName":{}}}},"state":{"type":"structure","members":{"code":{"type":"integer"},"name":{}}},"updatedAt":{"type":"timestamp"}}},"lastUpdatedAt":{"type":"timestamp"}}}}}}},"DescribeExecution":{"http":{"requestUri":"/task/{taskId}/execution/{managedDeviceId}","responseCode":200},"input":{"type":"structure","required":["managedDeviceId","taskId"],"members":{"managedDeviceId":{"location":"uri","locationName":"managedDeviceId"},"taskId":{"location":"uri","locationName":"taskId"}}},"output":{"type":"structure","members":{"executionId":{},"lastUpdatedAt":{"type":"timestamp"},"managedDeviceId":{},"startedAt":{"type":"timestamp"},"state":{},"taskId":{}}}},"DescribeTask":{"http":{"requestUri":"/task/{taskId}","responseCode":200},"input":{"type":"structure","required":["taskId"],"members":{"taskId":{"location":"uri","locationName":"taskId"}}},"output":{"type":"structure","members":{"completedAt":{"type":"timestamp"},"createdAt":{"type":"timestamp"},"description":{},"lastUpdatedAt":{"type":"timestamp"},"state":{},"tags":{"shape":"Sb"},"targets":{"shape":"Sc"},"taskArn":{},"taskId":{}}}},"ListDeviceResources":{"http":{"method":"GET","requestUri":"/managed-device/{managedDeviceId}/resources","responseCode":200},"input":{"type":"structure","required":["managedDeviceId"],"members":{"managedDeviceId":{"location":"uri","locationName":"managedDeviceId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"type":{"location":"querystring","locationName":"type"}}},"output":{"type":"structure","members":{"nextToken":{},"resources":{"type":"list","member":{"type":"structure","required":["resourceType"],"members":{"arn":{},"id":{},"resourceType":{}}}}}}},"ListDevices":{"http":{"method":"GET","requestUri":"/managed-devices","responseCode":200},"input":{"type":"structure","members":{"jobId":{"location":"querystring","locationName":"jobId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"devices":{"type":"list","member":{"type":"structure","members":{"associatedWithJob":{},"managedDeviceArn":{},"managedDeviceId":{},"tags":{"shape":"Sb"}}}},"nextToken":{}}}},"ListExecutions":{"http":{"method":"GET","requestUri":"/executions","responseCode":200},"input":{"type":"structure","required":["taskId"],"members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"state":{"location":"querystring","locationName":"state"},"taskId":{"location":"querystring","locationName":"taskId"}}},"output":{"type":"structure","members":{"executions":{"type":"list","member":{"type":"structure","members":{"executionId":{},"managedDeviceId":{},"state":{},"taskId":{}}}},"nextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"tags":{"shape":"Sb"}}}},"ListTasks":{"http":{"method":"GET","requestUri":"/tasks","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"state":{"location":"querystring","locationName":"state"}}},"output":{"type":"structure","members":{"nextToken":{},"tasks":{"type":"list","member":{"type":"structure","required":["taskId"],"members":{"state":{},"tags":{"shape":"Sb"},"taskArn":{},"taskId":{}}}}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"Sb"}}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"idempotent":true}},"shapes":{"Sb":{"type":"map","key":{},"value":{}},"Sc":{"type":"list","member":{}}}}
54840
54779
 
54841
54780
  /***/ }),
54842
- /* 1052 */
54781
+ /* 1048 */
54843
54782
  /***/ (function(module, exports) {
54844
54783
 
54845
54784
  module.exports = {"pagination":{"ListDeviceResources":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"resources"},"ListDevices":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"devices"},"ListExecutions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"executions"},"ListTasks":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"tasks"}}}
54846
54785
 
54847
54786
  /***/ }),
54848
- /* 1053 */
54787
+ /* 1049 */
54849
54788
  /***/ (function(module, exports, __webpack_require__) {
54850
54789
 
54851
54790
  __webpack_require__(2);
@@ -54857,8 +54796,8 @@ return /******/ (function(modules) { // webpackBootstrap
54857
54796
  AWS.MemoryDB = Service.defineService('memorydb', ['2021-01-01']);
54858
54797
  Object.defineProperty(apiLoader.services['memorydb'], '2021-01-01', {
54859
54798
  get: function get() {
54860
- var model = __webpack_require__(1054);
54861
- model.paginators = __webpack_require__(1055).pagination;
54799
+ var model = __webpack_require__(1050);
54800
+ model.paginators = __webpack_require__(1051).pagination;
54862
54801
  return model;
54863
54802
  },
54864
54803
  enumerable: true,
@@ -54869,19 +54808,19 @@ return /******/ (function(modules) { // webpackBootstrap
54869
54808
 
54870
54809
 
54871
54810
  /***/ }),
54872
- /* 1054 */
54811
+ /* 1050 */
54873
54812
  /***/ (function(module, exports) {
54874
54813
 
54875
54814
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-01-01","endpointPrefix":"memory-db","jsonVersion":"1.1","protocol":"json","serviceAbbreviation":"Amazon MemoryDB","serviceFullName":"Amazon MemoryDB","serviceId":"MemoryDB","signatureVersion":"v4","signingName":"memorydb","targetPrefix":"AmazonMemoryDB","uid":"memorydb-2021-01-01"},"operations":{"BatchUpdateCluster":{"input":{"type":"structure","required":["ClusterNames"],"members":{"ClusterNames":{"shape":"S2"},"ServiceUpdate":{"type":"structure","members":{"ServiceUpdateNameToApply":{}}}}},"output":{"type":"structure","members":{"ProcessedClusters":{"shape":"S6"},"UnprocessedClusters":{"type":"list","member":{"type":"structure","members":{"ClusterName":{},"ErrorType":{},"ErrorMessage":{}}}}}}},"CopySnapshot":{"input":{"type":"structure","required":["SourceSnapshotName","TargetSnapshotName"],"members":{"SourceSnapshotName":{},"TargetSnapshotName":{},"TargetBucket":{},"KmsKeyId":{},"Tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{"Snapshot":{"shape":"S11"}}}},"CreateACL":{"input":{"type":"structure","required":["ACLName"],"members":{"ACLName":{},"UserNames":{"shape":"S17"},"Tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{"ACL":{"shape":"S1a"}}}},"CreateCluster":{"input":{"type":"structure","required":["ClusterName","NodeType","ACLName"],"members":{"ClusterName":{},"NodeType":{},"ParameterGroupName":{},"Description":{},"NumShards":{"type":"integer"},"NumReplicasPerShard":{"type":"integer"},"SubnetGroupName":{},"SecurityGroupIds":{"shape":"S1f"},"MaintenanceWindow":{},"Port":{"type":"integer"},"SnsTopicArn":{},"TLSEnabled":{"type":"boolean"},"KmsKeyId":{},"SnapshotArns":{"type":"list","member":{}},"SnapshotName":{},"SnapshotRetentionLimit":{"type":"integer"},"Tags":{"shape":"Sy"},"SnapshotWindow":{},"ACLName":{},"EngineVersion":{},"AutoMinorVersionUpgrade":{"type":"boolean"}}},"output":{"type":"structure","members":{"Cluster":{"shape":"S7"}}}},"CreateParameterGroup":{"input":{"type":"structure","required":["ParameterGroupName","Family"],"members":{"ParameterGroupName":{},"Family":{},"Description":{},"Tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{"ParameterGroup":{"shape":"S1k"}}}},"CreateSnapshot":{"input":{"type":"structure","required":["ClusterName","SnapshotName"],"members":{"ClusterName":{},"SnapshotName":{},"KmsKeyId":{},"Tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{"Snapshot":{"shape":"S11"}}}},"CreateSubnetGroup":{"input":{"type":"structure","required":["SubnetGroupName","SubnetIds"],"members":{"SubnetGroupName":{},"Description":{},"SubnetIds":{"shape":"S1o"},"Tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{"SubnetGroup":{"shape":"S1q"}}}},"CreateUser":{"input":{"type":"structure","required":["UserName","AuthenticationMode","AccessString"],"members":{"UserName":{},"AuthenticationMode":{"shape":"S1v"},"AccessString":{},"Tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{"User":{"shape":"S20"}}}},"DeleteACL":{"input":{"type":"structure","required":["ACLName"],"members":{"ACLName":{}}},"output":{"type":"structure","members":{"ACL":{"shape":"S1a"}}}},"DeleteCluster":{"input":{"type":"structure","required":["ClusterName"],"members":{"ClusterName":{},"FinalSnapshotName":{}}},"output":{"type":"structure","members":{"Cluster":{"shape":"S7"}}}},"DeleteParameterGroup":{"input":{"type":"structure","required":["ParameterGroupName"],"members":{"ParameterGroupName":{}}},"output":{"type":"structure","members":{"ParameterGroup":{"shape":"S1k"}}}},"DeleteSnapshot":{"input":{"type":"structure","required":["SnapshotName"],"members":{"SnapshotName":{}}},"output":{"type":"structure","members":{"Snapshot":{"shape":"S11"}}}},"DeleteSubnetGroup":{"input":{"type":"structure","required":["SubnetGroupName"],"members":{"SubnetGroupName":{}}},"output":{"type":"structure","members":{"SubnetGroup":{"shape":"S1q"}}}},"DeleteUser":{"input":{"type":"structure","required":["UserName"],"members":{"UserName":{}}},"output":{"type":"structure","members":{"User":{"shape":"S20"}}}},"DescribeACLs":{"input":{"type":"structure","members":{"ACLName":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"ACLs":{"type":"list","member":{"shape":"S1a"}},"NextToken":{}}}},"DescribeClusters":{"input":{"type":"structure","members":{"ClusterName":{},"MaxResults":{"type":"integer"},"NextToken":{},"ShowShardDetails":{"type":"boolean"}}},"output":{"type":"structure","members":{"NextToken":{},"Clusters":{"shape":"S6"}}}},"DescribeEngineVersions":{"input":{"type":"structure","members":{"EngineVersion":{},"ParameterGroupFamily":{},"MaxResults":{"type":"integer"},"NextToken":{},"DefaultOnly":{"type":"boolean"}}},"output":{"type":"structure","members":{"NextToken":{},"EngineVersions":{"type":"list","member":{"type":"structure","members":{"EngineVersion":{},"EnginePatchVersion":{},"ParameterGroupFamily":{}}}}}}},"DescribeEvents":{"input":{"type":"structure","members":{"SourceName":{},"SourceType":{},"StartTime":{"type":"timestamp"},"EndTime":{"type":"timestamp"},"Duration":{"type":"integer"},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"NextToken":{},"Events":{"type":"list","member":{"type":"structure","members":{"SourceName":{},"SourceType":{},"Message":{},"Date":{"type":"timestamp"}}}}}}},"DescribeParameterGroups":{"input":{"type":"structure","members":{"ParameterGroupName":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"NextToken":{},"ParameterGroups":{"type":"list","member":{"shape":"S1k"}}}}},"DescribeParameters":{"input":{"type":"structure","required":["ParameterGroupName"],"members":{"ParameterGroupName":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"NextToken":{},"Parameters":{"type":"list","member":{"type":"structure","members":{"Name":{},"Value":{},"Description":{},"DataType":{},"AllowedValues":{},"MinimumEngineVersion":{}}}}}}},"DescribeServiceUpdates":{"input":{"type":"structure","members":{"ServiceUpdateName":{},"ClusterNames":{"shape":"S2"},"Status":{"type":"list","member":{}},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"NextToken":{},"ServiceUpdates":{"type":"list","member":{"type":"structure","members":{"ClusterName":{},"ServiceUpdateName":{},"ReleaseDate":{"type":"timestamp"},"Description":{},"Status":{},"Type":{},"NodesUpdated":{},"AutoUpdateStartDate":{"type":"timestamp"}}}}}}},"DescribeSnapshots":{"input":{"type":"structure","members":{"ClusterName":{},"SnapshotName":{},"Source":{},"NextToken":{},"MaxResults":{"type":"integer"},"ShowDetail":{"type":"boolean"}}},"output":{"type":"structure","members":{"NextToken":{},"Snapshots":{"type":"list","member":{"shape":"S11"}}}}},"DescribeSubnetGroups":{"input":{"type":"structure","members":{"SubnetGroupName":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"NextToken":{},"SubnetGroups":{"type":"list","member":{"shape":"S1q"}}}}},"DescribeUsers":{"input":{"type":"structure","members":{"UserName":{},"Filters":{"type":"list","member":{"type":"structure","required":["Name","Values"],"members":{"Name":{},"Values":{"type":"list","member":{}}}}},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"Users":{"type":"list","member":{"shape":"S20"}},"NextToken":{}}}},"FailoverShard":{"input":{"type":"structure","required":["ClusterName","ShardName"],"members":{"ClusterName":{},"ShardName":{}}},"output":{"type":"structure","members":{"Cluster":{"shape":"S7"}}}},"ListAllowedNodeTypeUpdates":{"input":{"type":"structure","required":["ClusterName"],"members":{"ClusterName":{}}},"output":{"type":"structure","members":{"ScaleUpNodeTypes":{"shape":"S3q"},"ScaleDownNodeTypes":{"shape":"S3q"}}}},"ListTags":{"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{}}},"output":{"type":"structure","members":{"TagList":{"shape":"Sy"}}}},"ResetParameterGroup":{"input":{"type":"structure","required":["ParameterGroupName"],"members":{"ParameterGroupName":{},"AllParameters":{"type":"boolean"},"ParameterNames":{"type":"list","member":{}}}},"output":{"type":"structure","members":{"ParameterGroup":{"shape":"S1k"}}}},"TagResource":{"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{},"Tags":{"shape":"Sy"}}},"output":{"type":"structure","members":{"TagList":{"shape":"Sy"}}}},"UntagResource":{"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{},"TagKeys":{"type":"list","member":{}}}},"output":{"type":"structure","members":{"TagList":{"shape":"Sy"}}}},"UpdateACL":{"input":{"type":"structure","required":["ACLName"],"members":{"ACLName":{},"UserNamesToAdd":{"shape":"S17"},"UserNamesToRemove":{"shape":"S17"}}},"output":{"type":"structure","members":{"ACL":{"shape":"S1a"}}}},"UpdateCluster":{"input":{"type":"structure","required":["ClusterName"],"members":{"ClusterName":{},"Description":{},"SecurityGroupIds":{"shape":"S1f"},"MaintenanceWindow":{},"SnsTopicArn":{},"SnsTopicStatus":{},"ParameterGroupName":{},"SnapshotWindow":{},"SnapshotRetentionLimit":{"type":"integer"},"NodeType":{},"EngineVersion":{},"ReplicaConfiguration":{"type":"structure","members":{"ReplicaCount":{"type":"integer"}}},"ShardConfiguration":{"type":"structure","members":{"ShardCount":{"type":"integer"}}},"ACLName":{}}},"output":{"type":"structure","members":{"Cluster":{"shape":"S7"}}}},"UpdateParameterGroup":{"input":{"type":"structure","required":["ParameterGroupName","ParameterNameValues"],"members":{"ParameterGroupName":{},"ParameterNameValues":{"type":"list","member":{"type":"structure","members":{"ParameterName":{},"ParameterValue":{}}}}}},"output":{"type":"structure","members":{"ParameterGroup":{"shape":"S1k"}}}},"UpdateSubnetGroup":{"input":{"type":"structure","required":["SubnetGroupName"],"members":{"SubnetGroupName":{},"Description":{},"SubnetIds":{"shape":"S1o"}}},"output":{"type":"structure","members":{"SubnetGroup":{"shape":"S1q"}}}},"UpdateUser":{"input":{"type":"structure","required":["UserName"],"members":{"UserName":{},"AuthenticationMode":{"shape":"S1v"},"AccessString":{}}},"output":{"type":"structure","members":{"User":{"shape":"S20"}}}}},"shapes":{"S2":{"type":"list","member":{}},"S6":{"type":"list","member":{"shape":"S7"}},"S7":{"type":"structure","members":{"Name":{},"Description":{},"Status":{},"PendingUpdates":{"type":"structure","members":{"Resharding":{"type":"structure","members":{"SlotMigration":{"type":"structure","members":{"ProgressPercentage":{"type":"double"}}}}},"ACLs":{"type":"structure","members":{"ACLToApply":{}}},"ServiceUpdates":{"type":"list","member":{"type":"structure","members":{"ServiceUpdateName":{},"Status":{}}}}}},"NumberOfShards":{"type":"integer"},"Shards":{"type":"list","member":{"type":"structure","members":{"Name":{},"Status":{},"Slots":{},"Nodes":{"type":"list","member":{"type":"structure","members":{"Name":{},"Status":{},"AvailabilityZone":{},"CreateTime":{"type":"timestamp"},"Endpoint":{"shape":"Sn"}}}},"NumberOfNodes":{"type":"integer"}}}},"AvailabilityMode":{},"ClusterEndpoint":{"shape":"Sn"},"NodeType":{},"EngineVersion":{},"EnginePatchVersion":{},"ParameterGroupName":{},"ParameterGroupStatus":{},"SecurityGroups":{"type":"list","member":{"type":"structure","members":{"SecurityGroupId":{},"Status":{}}}},"SubnetGroupName":{},"TLSEnabled":{"type":"boolean"},"KmsKeyId":{},"ARN":{},"SnsTopicArn":{},"SnsTopicStatus":{},"SnapshotRetentionLimit":{"type":"integer"},"MaintenanceWindow":{},"SnapshotWindow":{},"ACLName":{},"AutoMinorVersionUpgrade":{"type":"boolean"}}},"Sn":{"type":"structure","members":{"Address":{},"Port":{"type":"integer"}}},"Sy":{"type":"list","member":{"type":"structure","members":{"Key":{},"Value":{}}}},"S11":{"type":"structure","members":{"Name":{},"Status":{},"Source":{},"KmsKeyId":{},"ARN":{},"ClusterConfiguration":{"type":"structure","members":{"Name":{},"Description":{},"NodeType":{},"EngineVersion":{},"MaintenanceWindow":{},"TopicArn":{},"Port":{"type":"integer"},"ParameterGroupName":{},"SubnetGroupName":{},"VpcId":{},"SnapshotRetentionLimit":{"type":"integer"},"SnapshotWindow":{},"NumShards":{"type":"integer"},"Shards":{"type":"list","member":{"type":"structure","members":{"Name":{},"Configuration":{"type":"structure","members":{"Slots":{},"ReplicaCount":{"type":"integer"}}},"Size":{},"SnapshotCreationTime":{"type":"timestamp"}}}}}}}},"S17":{"type":"list","member":{}},"S1a":{"type":"structure","members":{"Name":{},"Status":{},"UserNames":{"shape":"S1b"},"MinimumEngineVersion":{},"PendingChanges":{"type":"structure","members":{"UserNamesToRemove":{"shape":"S1b"},"UserNamesToAdd":{"shape":"S1b"}}},"Clusters":{"type":"list","member":{}},"ARN":{}}},"S1b":{"type":"list","member":{}},"S1f":{"type":"list","member":{}},"S1k":{"type":"structure","members":{"Name":{},"Family":{},"Description":{},"ARN":{}}},"S1o":{"type":"list","member":{}},"S1q":{"type":"structure","members":{"Name":{},"Description":{},"VpcId":{},"Subnets":{"type":"list","member":{"type":"structure","members":{"Identifier":{},"AvailabilityZone":{"type":"structure","members":{"Name":{}}}}}},"ARN":{}}},"S1v":{"type":"structure","members":{"Type":{},"Passwords":{"type":"list","member":{}}}},"S20":{"type":"structure","members":{"Name":{},"Status":{},"AccessString":{},"ACLNames":{"type":"list","member":{}},"MinimumEngineVersion":{},"Authentication":{"type":"structure","members":{"Type":{},"PasswordCount":{"type":"integer"}}},"ARN":{}}},"S3q":{"type":"list","member":{}}}}
54876
54815
 
54877
54816
  /***/ }),
54878
- /* 1055 */
54817
+ /* 1051 */
54879
54818
  /***/ (function(module, exports) {
54880
54819
 
54881
54820
  module.exports = {"pagination":{}}
54882
54821
 
54883
54822
  /***/ }),
54884
- /* 1056 */
54823
+ /* 1052 */
54885
54824
  /***/ (function(module, exports, __webpack_require__) {
54886
54825
 
54887
54826
  __webpack_require__(2);
@@ -54893,8 +54832,8 @@ return /******/ (function(modules) { // webpackBootstrap
54893
54832
  AWS.OpenSearch = Service.defineService('opensearch', ['2021-01-01']);
54894
54833
  Object.defineProperty(apiLoader.services['opensearch'], '2021-01-01', {
54895
54834
  get: function get() {
54896
- var model = __webpack_require__(1057);
54897
- model.paginators = __webpack_require__(1058).pagination;
54835
+ var model = __webpack_require__(1053);
54836
+ model.paginators = __webpack_require__(1054).pagination;
54898
54837
  return model;
54899
54838
  },
54900
54839
  enumerable: true,
@@ -54905,19 +54844,19 @@ return /******/ (function(modules) { // webpackBootstrap
54905
54844
 
54906
54845
 
54907
54846
  /***/ }),
54908
- /* 1057 */
54847
+ /* 1053 */
54909
54848
  /***/ (function(module, exports) {
54910
54849
 
54911
54850
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-01-01","endpointPrefix":"es","protocol":"rest-json","serviceFullName":"Amazon OpenSearch Service","serviceId":"OpenSearch","signatureVersion":"v4","uid":"opensearch-2021-01-01"},"operations":{"AcceptInboundConnection":{"http":{"method":"PUT","requestUri":"/2021-01-01/opensearch/cc/inboundConnection/{ConnectionId}/accept"},"input":{"type":"structure","required":["ConnectionId"],"members":{"ConnectionId":{"location":"uri","locationName":"ConnectionId"}}},"output":{"type":"structure","members":{"Connection":{"shape":"S4"}}}},"AddTags":{"http":{"requestUri":"/2021-01-01/tags"},"input":{"type":"structure","required":["ARN","TagList"],"members":{"ARN":{},"TagList":{"shape":"Sf"}}}},"AssociatePackage":{"http":{"requestUri":"/2021-01-01/packages/associate/{PackageID}/{DomainName}"},"input":{"type":"structure","required":["PackageID","DomainName"],"members":{"PackageID":{"location":"uri","locationName":"PackageID"},"DomainName":{"location":"uri","locationName":"DomainName"}}},"output":{"type":"structure","members":{"DomainPackageDetails":{"shape":"Sm"}}}},"CancelServiceSoftwareUpdate":{"http":{"requestUri":"/2021-01-01/opensearch/serviceSoftwareUpdate/cancel"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{}}},"output":{"type":"structure","members":{"ServiceSoftwareOptions":{"shape":"Sy"}}}},"CreateDomain":{"http":{"requestUri":"/2021-01-01/opensearch/domain"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{},"EngineVersion":{},"ClusterConfig":{"shape":"S15"},"EBSOptions":{"shape":"S1b"},"AccessPolicies":{},"SnapshotOptions":{"shape":"S1e"},"VPCOptions":{"shape":"S1f"},"CognitoOptions":{"shape":"S1h"},"EncryptionAtRestOptions":{"shape":"S1l"},"NodeToNodeEncryptionOptions":{"shape":"S1n"},"AdvancedOptions":{"shape":"S1o"},"LogPublishingOptions":{"shape":"S1p"},"DomainEndpointOptions":{"shape":"S1t"},"AdvancedSecurityOptions":{"shape":"S1w"},"TagList":{"shape":"Sf"},"AutoTuneOptions":{"type":"structure","members":{"DesiredState":{},"MaintenanceSchedules":{"shape":"S27"}}}}},"output":{"type":"structure","members":{"DomainStatus":{"shape":"S2e"}}}},"CreateOutboundConnection":{"http":{"requestUri":"/2021-01-01/opensearch/cc/outboundConnection"},"input":{"type":"structure","required":["LocalDomainInfo","RemoteDomainInfo","ConnectionAlias"],"members":{"LocalDomainInfo":{"shape":"S5"},"RemoteDomainInfo":{"shape":"S5"},"ConnectionAlias":{}}},"output":{"type":"structure","members":{"LocalDomainInfo":{"shape":"S5"},"RemoteDomainInfo":{"shape":"S5"},"ConnectionAlias":{},"ConnectionStatus":{"shape":"S2q"},"ConnectionId":{}}}},"CreatePackage":{"http":{"requestUri":"/2021-01-01/packages"},"input":{"type":"structure","required":["PackageName","PackageType","PackageSource"],"members":{"PackageName":{},"PackageType":{},"PackageDescription":{},"PackageSource":{"shape":"S2u"}}},"output":{"type":"structure","members":{"PackageDetails":{"shape":"S2y"}}}},"DeleteDomain":{"http":{"method":"DELETE","requestUri":"/2021-01-01/opensearch/domain/{DomainName}"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"}}},"output":{"type":"structure","members":{"DomainStatus":{"shape":"S2e"}}}},"DeleteInboundConnection":{"http":{"method":"DELETE","requestUri":"/2021-01-01/opensearch/cc/inboundConnection/{ConnectionId}"},"input":{"type":"structure","required":["ConnectionId"],"members":{"ConnectionId":{"location":"uri","locationName":"ConnectionId"}}},"output":{"type":"structure","members":{"Connection":{"shape":"S4"}}}},"DeleteOutboundConnection":{"http":{"method":"DELETE","requestUri":"/2021-01-01/opensearch/cc/outboundConnection/{ConnectionId}"},"input":{"type":"structure","required":["ConnectionId"],"members":{"ConnectionId":{"location":"uri","locationName":"ConnectionId"}}},"output":{"type":"structure","members":{"Connection":{"shape":"S37"}}}},"DeletePackage":{"http":{"method":"DELETE","requestUri":"/2021-01-01/packages/{PackageID}"},"input":{"type":"structure","required":["PackageID"],"members":{"PackageID":{"location":"uri","locationName":"PackageID"}}},"output":{"type":"structure","members":{"PackageDetails":{"shape":"S2y"}}}},"DescribeDomain":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/domain/{DomainName}"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"}}},"output":{"type":"structure","required":["DomainStatus"],"members":{"DomainStatus":{"shape":"S2e"}}}},"DescribeDomainAutoTunes":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/domain/{DomainName}/autoTunes"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"AutoTunes":{"type":"list","member":{"type":"structure","members":{"AutoTuneType":{},"AutoTuneDetails":{"type":"structure","members":{"ScheduledAutoTuneDetails":{"type":"structure","members":{"Date":{"type":"timestamp"},"ActionType":{},"Action":{},"Severity":{}}}}}}}},"NextToken":{}}}},"DescribeDomainConfig":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/domain/{DomainName}/config"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"}}},"output":{"type":"structure","required":["DomainConfig"],"members":{"DomainConfig":{"shape":"S3r"}}}},"DescribeDomains":{"http":{"requestUri":"/2021-01-01/opensearch/domain-info"},"input":{"type":"structure","required":["DomainNames"],"members":{"DomainNames":{"type":"list","member":{}}}},"output":{"type":"structure","required":["DomainStatusList"],"members":{"DomainStatusList":{"type":"list","member":{"shape":"S2e"}}}}},"DescribeInboundConnections":{"http":{"requestUri":"/2021-01-01/opensearch/cc/inboundConnection/search"},"input":{"type":"structure","members":{"Filters":{"shape":"S4i"},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"Connections":{"type":"list","member":{"shape":"S4"}},"NextToken":{}}}},"DescribeInstanceTypeLimits":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/instanceTypeLimits/{EngineVersion}/{InstanceType}"},"input":{"type":"structure","required":["InstanceType","EngineVersion"],"members":{"DomainName":{"location":"querystring","locationName":"domainName"},"InstanceType":{"location":"uri","locationName":"InstanceType"},"EngineVersion":{"location":"uri","locationName":"EngineVersion"}}},"output":{"type":"structure","members":{"LimitsByRole":{"type":"map","key":{},"value":{"type":"structure","members":{"StorageTypes":{"type":"list","member":{"type":"structure","members":{"StorageTypeName":{},"StorageSubTypeName":{},"StorageTypeLimits":{"type":"list","member":{"type":"structure","members":{"LimitName":{},"LimitValues":{"shape":"S50"}}}}}}},"InstanceLimits":{"type":"structure","members":{"InstanceCountLimits":{"type":"structure","members":{"MinimumInstanceCount":{"type":"integer"},"MaximumInstanceCount":{"type":"integer"}}}}},"AdditionalLimits":{"type":"list","member":{"type":"structure","members":{"LimitName":{},"LimitValues":{"shape":"S50"}}}}}}}}}},"DescribeOutboundConnections":{"http":{"requestUri":"/2021-01-01/opensearch/cc/outboundConnection/search"},"input":{"type":"structure","members":{"Filters":{"shape":"S4i"},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"Connections":{"type":"list","member":{"shape":"S37"}},"NextToken":{}}}},"DescribePackages":{"http":{"requestUri":"/2021-01-01/packages/describe"},"input":{"type":"structure","members":{"Filters":{"type":"list","member":{"type":"structure","members":{"Name":{},"Value":{"type":"list","member":{}}}}},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"PackageDetailsList":{"type":"list","member":{"shape":"S2y"}},"NextToken":{}}}},"DescribeReservedInstanceOfferings":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/reservedInstanceOfferings"},"input":{"type":"structure","members":{"ReservedInstanceOfferingId":{"location":"querystring","locationName":"offeringId"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"NextToken":{},"ReservedInstanceOfferings":{"type":"list","member":{"type":"structure","members":{"ReservedInstanceOfferingId":{},"InstanceType":{},"Duration":{"type":"integer"},"FixedPrice":{"type":"double"},"UsagePrice":{"type":"double"},"CurrencyCode":{},"PaymentOption":{},"RecurringCharges":{"shape":"S5r"}}}}}}},"DescribeReservedInstances":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/reservedInstances"},"input":{"type":"structure","members":{"ReservedInstanceId":{"location":"querystring","locationName":"reservationId"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"NextToken":{},"ReservedInstances":{"type":"list","member":{"type":"structure","members":{"ReservationName":{},"ReservedInstanceId":{},"BillingSubscriptionId":{"type":"long"},"ReservedInstanceOfferingId":{},"InstanceType":{},"StartTime":{"type":"timestamp"},"Duration":{"type":"integer"},"FixedPrice":{"type":"double"},"UsagePrice":{"type":"double"},"CurrencyCode":{},"InstanceCount":{"type":"integer"},"State":{},"PaymentOption":{},"RecurringCharges":{"shape":"S5r"}}}}}}},"DissociatePackage":{"http":{"requestUri":"/2021-01-01/packages/dissociate/{PackageID}/{DomainName}"},"input":{"type":"structure","required":["PackageID","DomainName"],"members":{"PackageID":{"location":"uri","locationName":"PackageID"},"DomainName":{"location":"uri","locationName":"DomainName"}}},"output":{"type":"structure","members":{"DomainPackageDetails":{"shape":"Sm"}}}},"GetCompatibleVersions":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/compatibleVersions"},"input":{"type":"structure","members":{"DomainName":{"location":"querystring","locationName":"domainName"}}},"output":{"type":"structure","members":{"CompatibleVersions":{"type":"list","member":{"type":"structure","members":{"SourceVersion":{},"TargetVersions":{"shape":"S65"}}}}}}},"GetPackageVersionHistory":{"http":{"method":"GET","requestUri":"/2021-01-01/packages/{PackageID}/history"},"input":{"type":"structure","required":["PackageID"],"members":{"PackageID":{"location":"uri","locationName":"PackageID"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"PackageID":{},"PackageVersionHistoryList":{"type":"list","member":{"type":"structure","members":{"PackageVersion":{},"CommitMessage":{},"CreatedAt":{"type":"timestamp"}}}},"NextToken":{}}}},"GetUpgradeHistory":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/upgradeDomain/{DomainName}/history"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"UpgradeHistories":{"type":"list","member":{"type":"structure","members":{"UpgradeName":{},"StartTimestamp":{"type":"timestamp"},"UpgradeStatus":{},"StepsList":{"type":"list","member":{"type":"structure","members":{"UpgradeStep":{},"UpgradeStepStatus":{},"Issues":{"type":"list","member":{}},"ProgressPercent":{"type":"double"}}}}}}},"NextToken":{}}}},"GetUpgradeStatus":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/upgradeDomain/{DomainName}/status"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"}}},"output":{"type":"structure","members":{"UpgradeStep":{},"StepStatus":{},"UpgradeName":{}}}},"ListDomainNames":{"http":{"method":"GET","requestUri":"/2021-01-01/domain"},"input":{"type":"structure","members":{"EngineType":{"location":"querystring","locationName":"engineType"}}},"output":{"type":"structure","members":{"DomainNames":{"type":"list","member":{"type":"structure","members":{"DomainName":{},"EngineType":{}}}}}}},"ListDomainsForPackage":{"http":{"method":"GET","requestUri":"/2021-01-01/packages/{PackageID}/domains"},"input":{"type":"structure","required":["PackageID"],"members":{"PackageID":{"location":"uri","locationName":"PackageID"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"DomainPackageDetailsList":{"shape":"S6w"},"NextToken":{}}}},"ListInstanceTypeDetails":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/instanceTypeDetails/{EngineVersion}"},"input":{"type":"structure","required":["EngineVersion"],"members":{"EngineVersion":{"location":"uri","locationName":"EngineVersion"},"DomainName":{"location":"querystring","locationName":"domainName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"InstanceTypeDetails":{"type":"list","member":{"type":"structure","members":{"InstanceType":{},"EncryptionEnabled":{"type":"boolean"},"CognitoEnabled":{"type":"boolean"},"AppLogsEnabled":{"type":"boolean"},"AdvancedSecurityEnabled":{"type":"boolean"},"WarmEnabled":{"type":"boolean"},"InstanceRole":{"type":"list","member":{}}}}},"NextToken":{}}}},"ListPackagesForDomain":{"http":{"method":"GET","requestUri":"/2021-01-01/domain/{DomainName}/packages"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"DomainPackageDetailsList":{"shape":"S6w"},"NextToken":{}}}},"ListTags":{"http":{"method":"GET","requestUri":"/2021-01-01/tags/"},"input":{"type":"structure","required":["ARN"],"members":{"ARN":{"location":"querystring","locationName":"arn"}}},"output":{"type":"structure","members":{"TagList":{"shape":"Sf"}}}},"ListVersions":{"http":{"method":"GET","requestUri":"/2021-01-01/opensearch/versions"},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Versions":{"shape":"S65"},"NextToken":{}}}},"PurchaseReservedInstanceOffering":{"http":{"requestUri":"/2021-01-01/opensearch/purchaseReservedInstanceOffering"},"input":{"type":"structure","required":["ReservedInstanceOfferingId","ReservationName"],"members":{"ReservedInstanceOfferingId":{},"ReservationName":{},"InstanceCount":{"type":"integer"}}},"output":{"type":"structure","members":{"ReservedInstanceId":{},"ReservationName":{}}}},"RejectInboundConnection":{"http":{"method":"PUT","requestUri":"/2021-01-01/opensearch/cc/inboundConnection/{ConnectionId}/reject"},"input":{"type":"structure","required":["ConnectionId"],"members":{"ConnectionId":{"location":"uri","locationName":"ConnectionId"}}},"output":{"type":"structure","members":{"Connection":{"shape":"S4"}}}},"RemoveTags":{"http":{"requestUri":"/2021-01-01/tags-removal"},"input":{"type":"structure","required":["ARN","TagKeys"],"members":{"ARN":{},"TagKeys":{"shape":"S1g"}}}},"StartServiceSoftwareUpdate":{"http":{"requestUri":"/2021-01-01/opensearch/serviceSoftwareUpdate/start"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{}}},"output":{"type":"structure","members":{"ServiceSoftwareOptions":{"shape":"Sy"}}}},"UpdateDomainConfig":{"http":{"requestUri":"/2021-01-01/opensearch/domain/{DomainName}/config"},"input":{"type":"structure","required":["DomainName"],"members":{"DomainName":{"location":"uri","locationName":"DomainName"},"ClusterConfig":{"shape":"S15"},"EBSOptions":{"shape":"S1b"},"SnapshotOptions":{"shape":"S1e"},"VPCOptions":{"shape":"S1f"},"CognitoOptions":{"shape":"S1h"},"AdvancedOptions":{"shape":"S1o"},"AccessPolicies":{},"LogPublishingOptions":{"shape":"S1p"},"EncryptionAtRestOptions":{"shape":"S1l"},"DomainEndpointOptions":{"shape":"S1t"},"NodeToNodeEncryptionOptions":{"shape":"S1n"},"AdvancedSecurityOptions":{"shape":"S1w"},"AutoTuneOptions":{"shape":"S4a"}}},"output":{"type":"structure","required":["DomainConfig"],"members":{"DomainConfig":{"shape":"S3r"}}}},"UpdatePackage":{"http":{"requestUri":"/2021-01-01/packages/update"},"input":{"type":"structure","required":["PackageID","PackageSource"],"members":{"PackageID":{},"PackageSource":{"shape":"S2u"},"PackageDescription":{},"CommitMessage":{}}},"output":{"type":"structure","members":{"PackageDetails":{"shape":"S2y"}}}},"UpgradeDomain":{"http":{"requestUri":"/2021-01-01/opensearch/upgradeDomain"},"input":{"type":"structure","required":["DomainName","TargetVersion"],"members":{"DomainName":{},"TargetVersion":{},"PerformCheckOnly":{"type":"boolean"},"AdvancedOptions":{"shape":"S1o"}}},"output":{"type":"structure","members":{"UpgradeId":{},"DomainName":{},"TargetVersion":{},"PerformCheckOnly":{"type":"boolean"},"AdvancedOptions":{"shape":"S1o"}}}}},"shapes":{"S4":{"type":"structure","members":{"LocalDomainInfo":{"shape":"S5"},"RemoteDomainInfo":{"shape":"S5"},"ConnectionId":{},"ConnectionStatus":{"type":"structure","members":{"StatusCode":{},"Message":{}}}}},"S5":{"type":"structure","members":{"AWSDomainInformation":{"type":"structure","required":["DomainName"],"members":{"OwnerId":{},"DomainName":{},"Region":{}}}}},"Sf":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{},"Value":{}}}},"Sm":{"type":"structure","members":{"PackageID":{},"PackageName":{},"PackageType":{},"LastUpdated":{"type":"timestamp"},"DomainName":{},"DomainPackageStatus":{},"PackageVersion":{},"ReferencePath":{},"ErrorDetails":{"shape":"St"}}},"St":{"type":"structure","members":{"ErrorType":{},"ErrorMessage":{}}},"Sy":{"type":"structure","members":{"CurrentVersion":{},"NewVersion":{},"UpdateAvailable":{"type":"boolean"},"Cancellable":{"type":"boolean"},"UpdateStatus":{},"Description":{},"AutomatedUpdateDate":{"type":"timestamp"},"OptionalDeployment":{"type":"boolean"}}},"S15":{"type":"structure","members":{"InstanceType":{},"InstanceCount":{"type":"integer"},"DedicatedMasterEnabled":{"type":"boolean"},"ZoneAwarenessEnabled":{"type":"boolean"},"ZoneAwarenessConfig":{"type":"structure","members":{"AvailabilityZoneCount":{"type":"integer"}}},"DedicatedMasterType":{},"DedicatedMasterCount":{"type":"integer"},"WarmEnabled":{"type":"boolean"},"WarmType":{},"WarmCount":{"type":"integer"},"ColdStorageOptions":{"type":"structure","required":["Enabled"],"members":{"Enabled":{"type":"boolean"}}}}},"S1b":{"type":"structure","members":{"EBSEnabled":{"type":"boolean"},"VolumeType":{},"VolumeSize":{"type":"integer"},"Iops":{"type":"integer"}}},"S1e":{"type":"structure","members":{"AutomatedSnapshotStartHour":{"type":"integer"}}},"S1f":{"type":"structure","members":{"SubnetIds":{"shape":"S1g"},"SecurityGroupIds":{"shape":"S1g"}}},"S1g":{"type":"list","member":{}},"S1h":{"type":"structure","members":{"Enabled":{"type":"boolean"},"UserPoolId":{},"IdentityPoolId":{},"RoleArn":{}}},"S1l":{"type":"structure","members":{"Enabled":{"type":"boolean"},"KmsKeyId":{}}},"S1n":{"type":"structure","members":{"Enabled":{"type":"boolean"}}},"S1o":{"type":"map","key":{},"value":{}},"S1p":{"type":"map","key":{},"value":{"type":"structure","members":{"CloudWatchLogsLogGroupArn":{},"Enabled":{"type":"boolean"}}}},"S1t":{"type":"structure","members":{"EnforceHTTPS":{"type":"boolean"},"TLSSecurityPolicy":{},"CustomEndpointEnabled":{"type":"boolean"},"CustomEndpoint":{},"CustomEndpointCertificateArn":{}}},"S1w":{"type":"structure","members":{"Enabled":{"type":"boolean"},"InternalUserDatabaseEnabled":{"type":"boolean"},"MasterUserOptions":{"type":"structure","members":{"MasterUserARN":{},"MasterUserName":{"shape":"S1y"},"MasterUserPassword":{"type":"string","sensitive":true}}},"SAMLOptions":{"type":"structure","members":{"Enabled":{"type":"boolean"},"Idp":{"shape":"S21"},"MasterUserName":{"shape":"S1y"},"MasterBackendRole":{},"SubjectKey":{},"RolesKey":{},"SessionTimeoutMinutes":{"type":"integer"}}}}},"S1y":{"type":"string","sensitive":true},"S21":{"type":"structure","required":["MetadataContent","EntityId"],"members":{"MetadataContent":{},"EntityId":{}}},"S27":{"type":"list","member":{"type":"structure","members":{"StartAt":{"type":"timestamp"},"Duration":{"type":"structure","members":{"Value":{"type":"long"},"Unit":{}}},"CronExpressionForRecurrence":{}}}},"S2e":{"type":"structure","required":["DomainId","DomainName","ARN","ClusterConfig"],"members":{"DomainId":{},"DomainName":{},"ARN":{},"Created":{"type":"boolean"},"Deleted":{"type":"boolean"},"Endpoint":{},"Endpoints":{"type":"map","key":{},"value":{}},"Processing":{"type":"boolean"},"UpgradeProcessing":{"type":"boolean"},"EngineVersion":{},"ClusterConfig":{"shape":"S15"},"EBSOptions":{"shape":"S1b"},"AccessPolicies":{},"SnapshotOptions":{"shape":"S1e"},"VPCOptions":{"shape":"S2i"},"CognitoOptions":{"shape":"S1h"},"EncryptionAtRestOptions":{"shape":"S1l"},"NodeToNodeEncryptionOptions":{"shape":"S1n"},"AdvancedOptions":{"shape":"S1o"},"LogPublishingOptions":{"shape":"S1p"},"ServiceSoftwareOptions":{"shape":"Sy"},"DomainEndpointOptions":{"shape":"S1t"},"AdvancedSecurityOptions":{"shape":"S2j"},"AutoTuneOptions":{"type":"structure","members":{"State":{},"ErrorMessage":{}}}}},"S2i":{"type":"structure","members":{"VPCId":{},"SubnetIds":{"shape":"S1g"},"AvailabilityZones":{"shape":"S1g"},"SecurityGroupIds":{"shape":"S1g"}}},"S2j":{"type":"structure","members":{"Enabled":{"type":"boolean"},"InternalUserDatabaseEnabled":{"type":"boolean"},"SAMLOptions":{"type":"structure","members":{"Enabled":{"type":"boolean"},"Idp":{"shape":"S21"},"SubjectKey":{},"RolesKey":{},"SessionTimeoutMinutes":{"type":"integer"}}}}},"S2q":{"type":"structure","members":{"StatusCode":{},"Message":{}}},"S2u":{"type":"structure","members":{"S3BucketName":{},"S3Key":{}}},"S2y":{"type":"structure","members":{"PackageID":{},"PackageName":{},"PackageType":{},"PackageDescription":{},"PackageStatus":{},"CreatedAt":{"type":"timestamp"},"LastUpdatedAt":{"type":"timestamp"},"AvailablePackageVersion":{},"ErrorDetails":{"shape":"St"}}},"S37":{"type":"structure","members":{"LocalDomainInfo":{"shape":"S5"},"RemoteDomainInfo":{"shape":"S5"},"ConnectionId":{},"ConnectionAlias":{},"ConnectionStatus":{"shape":"S2q"}}},"S3r":{"type":"structure","members":{"EngineVersion":{"type":"structure","required":["Options","Status"],"members":{"Options":{},"Status":{"shape":"S3t"}}},"ClusterConfig":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S15"},"Status":{"shape":"S3t"}}},"EBSOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S1b"},"Status":{"shape":"S3t"}}},"AccessPolicies":{"type":"structure","required":["Options","Status"],"members":{"Options":{},"Status":{"shape":"S3t"}}},"SnapshotOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S1e"},"Status":{"shape":"S3t"}}},"VPCOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S2i"},"Status":{"shape":"S3t"}}},"CognitoOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S1h"},"Status":{"shape":"S3t"}}},"EncryptionAtRestOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S1l"},"Status":{"shape":"S3t"}}},"NodeToNodeEncryptionOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S1n"},"Status":{"shape":"S3t"}}},"AdvancedOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S1o"},"Status":{"shape":"S3t"}}},"LogPublishingOptions":{"type":"structure","members":{"Options":{"shape":"S1p"},"Status":{"shape":"S3t"}}},"DomainEndpointOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S1t"},"Status":{"shape":"S3t"}}},"AdvancedSecurityOptions":{"type":"structure","required":["Options","Status"],"members":{"Options":{"shape":"S2j"},"Status":{"shape":"S3t"}}},"AutoTuneOptions":{"type":"structure","members":{"Options":{"shape":"S4a"},"Status":{"type":"structure","required":["CreationDate","UpdateDate","State"],"members":{"CreationDate":{"type":"timestamp"},"UpdateDate":{"type":"timestamp"},"UpdateVersion":{"type":"integer"},"State":{},"ErrorMessage":{},"PendingDeletion":{"type":"boolean"}}}}}}},"S3t":{"type":"structure","required":["CreationDate","UpdateDate","State"],"members":{"CreationDate":{"type":"timestamp"},"UpdateDate":{"type":"timestamp"},"UpdateVersion":{"type":"integer"},"State":{},"PendingDeletion":{"type":"boolean"}}},"S4a":{"type":"structure","members":{"DesiredState":{},"RollbackOnDisable":{},"MaintenanceSchedules":{"shape":"S27"}}},"S4i":{"type":"list","member":{"type":"structure","members":{"Name":{},"Values":{"type":"list","member":{}}}}},"S50":{"type":"list","member":{}},"S5r":{"type":"list","member":{"type":"structure","members":{"RecurringChargeAmount":{"type":"double"},"RecurringChargeFrequency":{}}}},"S65":{"type":"list","member":{}},"S6w":{"type":"list","member":{"shape":"Sm"}}}}
54912
54851
 
54913
54852
  /***/ }),
54914
- /* 1058 */
54853
+ /* 1054 */
54915
54854
  /***/ (function(module, exports) {
54916
54855
 
54917
54856
  module.exports = {"pagination":{"DescribeDomainAutoTunes":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"DescribeInboundConnections":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"DescribeOutboundConnections":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"DescribePackages":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"DescribeReservedInstanceOfferings":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"DescribeReservedInstances":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"GetPackageVersionHistory":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"GetUpgradeHistory":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListDomainsForPackage":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListInstanceTypeDetails":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListPackagesForDomain":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListVersions":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54918
54857
 
54919
54858
  /***/ }),
54920
- /* 1059 */
54859
+ /* 1055 */
54921
54860
  /***/ (function(module, exports, __webpack_require__) {
54922
54861
 
54923
54862
  __webpack_require__(2);
@@ -54929,8 +54868,8 @@ return /******/ (function(modules) { // webpackBootstrap
54929
54868
  AWS.KafkaConnect = Service.defineService('kafkaconnect', ['2021-09-14']);
54930
54869
  Object.defineProperty(apiLoader.services['kafkaconnect'], '2021-09-14', {
54931
54870
  get: function get() {
54932
- var model = __webpack_require__(1060);
54933
- model.paginators = __webpack_require__(1061).pagination;
54871
+ var model = __webpack_require__(1056);
54872
+ model.paginators = __webpack_require__(1057).pagination;
54934
54873
  return model;
54935
54874
  },
54936
54875
  enumerable: true,
@@ -54941,19 +54880,19 @@ return /******/ (function(modules) { // webpackBootstrap
54941
54880
 
54942
54881
 
54943
54882
  /***/ }),
54944
- /* 1060 */
54883
+ /* 1056 */
54945
54884
  /***/ (function(module, exports) {
54946
54885
 
54947
54886
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-09-14","endpointPrefix":"kafkaconnect","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"Kafka Connect","serviceFullName":"Managed Streaming for Kafka Connect","serviceId":"KafkaConnect","signatureVersion":"v4","signingName":"kafkaconnect","uid":"kafkaconnect-2021-09-14"},"operations":{"CreateConnector":{"http":{"requestUri":"/v1/connectors","responseCode":200},"input":{"type":"structure","required":["capacity","connectorConfiguration","connectorName","kafkaCluster","kafkaClusterClientAuthentication","kafkaClusterEncryptionInTransit","kafkaConnectVersion","plugins","serviceExecutionRoleArn"],"members":{"capacity":{"type":"structure","members":{"autoScaling":{"type":"structure","required":["maxWorkerCount","mcuCount","minWorkerCount"],"members":{"maxWorkerCount":{"type":"integer"},"mcuCount":{"type":"integer"},"minWorkerCount":{"type":"integer"},"scaleInPolicy":{"type":"structure","required":["cpuUtilizationPercentage"],"members":{"cpuUtilizationPercentage":{"type":"integer"}}},"scaleOutPolicy":{"type":"structure","required":["cpuUtilizationPercentage"],"members":{"cpuUtilizationPercentage":{"type":"integer"}}}}},"provisionedCapacity":{"type":"structure","required":["mcuCount","workerCount"],"members":{"mcuCount":{"type":"integer"},"workerCount":{"type":"integer"}}}}},"connectorConfiguration":{"shape":"Sa"},"connectorDescription":{},"connectorName":{},"kafkaCluster":{"type":"structure","required":["apacheKafkaCluster"],"members":{"apacheKafkaCluster":{"type":"structure","required":["bootstrapServers","vpc"],"members":{"bootstrapServers":{},"vpc":{"type":"structure","required":["subnets"],"members":{"securityGroups":{"shape":"Sh"},"subnets":{"shape":"Sh"}}}}}}},"kafkaClusterClientAuthentication":{"type":"structure","required":["authenticationType"],"members":{"authenticationType":{}}},"kafkaClusterEncryptionInTransit":{"type":"structure","required":["encryptionType"],"members":{"encryptionType":{}}},"kafkaConnectVersion":{},"logDelivery":{"type":"structure","required":["workerLogDelivery"],"members":{"workerLogDelivery":{"type":"structure","members":{"cloudWatchLogs":{"type":"structure","required":["enabled"],"members":{"enabled":{"type":"boolean"},"logGroup":{}}},"firehose":{"type":"structure","required":["enabled"],"members":{"deliveryStream":{},"enabled":{"type":"boolean"}}},"s3":{"type":"structure","required":["enabled"],"members":{"bucket":{},"enabled":{"type":"boolean"},"prefix":{}}}}}}},"plugins":{"type":"list","member":{"type":"structure","required":["customPlugin"],"members":{"customPlugin":{"type":"structure","required":["customPluginArn","revision"],"members":{"customPluginArn":{},"revision":{"type":"long"}}}}}},"serviceExecutionRoleArn":{},"workerConfiguration":{"type":"structure","required":["revision","workerConfigurationArn"],"members":{"revision":{"type":"long"},"workerConfigurationArn":{}}}}},"output":{"type":"structure","members":{"connectorArn":{},"connectorName":{},"connectorState":{}}}},"CreateCustomPlugin":{"http":{"requestUri":"/v1/custom-plugins","responseCode":200},"input":{"type":"structure","required":["contentType","location","name"],"members":{"contentType":{},"description":{},"location":{"type":"structure","required":["s3Location"],"members":{"s3Location":{"type":"structure","required":["bucketArn","fileKey"],"members":{"bucketArn":{},"fileKey":{},"objectVersion":{}}}}},"name":{}}},"output":{"type":"structure","members":{"customPluginArn":{},"customPluginState":{},"name":{},"revision":{"type":"long"}}}},"CreateWorkerConfiguration":{"http":{"requestUri":"/v1/worker-configurations","responseCode":200},"input":{"type":"structure","required":["name","propertiesFileContent"],"members":{"description":{},"name":{},"propertiesFileContent":{}}},"output":{"type":"structure","members":{"creationTime":{"shape":"S18"},"latestRevision":{"shape":"S19"},"name":{},"workerConfigurationArn":{}}}},"DeleteConnector":{"http":{"method":"DELETE","requestUri":"/v1/connectors/{connectorArn}","responseCode":200},"input":{"type":"structure","required":["connectorArn"],"members":{"connectorArn":{"location":"uri","locationName":"connectorArn"},"currentVersion":{"location":"querystring","locationName":"currentVersion"}}},"output":{"type":"structure","members":{"connectorArn":{},"connectorState":{}}},"idempotent":true},"DescribeConnector":{"http":{"method":"GET","requestUri":"/v1/connectors/{connectorArn}","responseCode":200},"input":{"type":"structure","required":["connectorArn"],"members":{"connectorArn":{"location":"uri","locationName":"connectorArn"}}},"output":{"type":"structure","members":{"capacity":{"shape":"S1e"},"connectorArn":{},"connectorConfiguration":{"shape":"Sa"},"connectorDescription":{},"connectorName":{},"connectorState":{},"creationTime":{"shape":"S18"},"currentVersion":{},"kafkaCluster":{"shape":"S1k"},"kafkaClusterClientAuthentication":{"shape":"S1n"},"kafkaClusterEncryptionInTransit":{"shape":"S1o"},"kafkaConnectVersion":{},"logDelivery":{"shape":"S1p"},"plugins":{"shape":"S1u"},"serviceExecutionRoleArn":{},"workerConfiguration":{"shape":"S1x"}}}},"DescribeCustomPlugin":{"http":{"method":"GET","requestUri":"/v1/custom-plugins/{customPluginArn}","responseCode":200},"input":{"type":"structure","required":["customPluginArn"],"members":{"customPluginArn":{"location":"uri","locationName":"customPluginArn"}}},"output":{"type":"structure","members":{"creationTime":{"shape":"S18"},"customPluginArn":{},"customPluginState":{},"description":{},"latestRevision":{"shape":"S20"},"name":{}}}},"DescribeWorkerConfiguration":{"http":{"method":"GET","requestUri":"/v1/worker-configurations/{workerConfigurationArn}","responseCode":200},"input":{"type":"structure","required":["workerConfigurationArn"],"members":{"workerConfigurationArn":{"location":"uri","locationName":"workerConfigurationArn"}}},"output":{"type":"structure","members":{"creationTime":{"shape":"S18"},"description":{},"latestRevision":{"type":"structure","members":{"creationTime":{"shape":"S18"},"description":{},"propertiesFileContent":{},"revision":{"type":"long"}}},"name":{},"workerConfigurationArn":{}}}},"ListConnectors":{"http":{"method":"GET","requestUri":"/v1/connectors","responseCode":200},"input":{"type":"structure","members":{"connectorNamePrefix":{"location":"querystring","locationName":"connectorNamePrefix"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"connectors":{"type":"list","member":{"type":"structure","members":{"capacity":{"shape":"S1e"},"connectorArn":{},"connectorDescription":{},"connectorName":{},"connectorState":{},"creationTime":{"shape":"S18"},"currentVersion":{},"kafkaCluster":{"shape":"S1k"},"kafkaClusterClientAuthentication":{"shape":"S1n"},"kafkaClusterEncryptionInTransit":{"shape":"S1o"},"kafkaConnectVersion":{},"logDelivery":{"shape":"S1p"},"plugins":{"shape":"S1u"},"serviceExecutionRoleArn":{},"workerConfiguration":{"shape":"S1x"}}}},"nextToken":{}}}},"ListCustomPlugins":{"http":{"method":"GET","requestUri":"/v1/custom-plugins","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"customPlugins":{"type":"list","member":{"type":"structure","members":{"creationTime":{"shape":"S18"},"customPluginArn":{},"customPluginState":{},"description":{},"latestRevision":{"shape":"S20"},"name":{}}}},"nextToken":{}}}},"ListWorkerConfigurations":{"http":{"method":"GET","requestUri":"/v1/worker-configurations","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"nextToken":{},"workerConfigurations":{"type":"list","member":{"type":"structure","members":{"creationTime":{"shape":"S18"},"description":{},"latestRevision":{"shape":"S19"},"name":{},"workerConfigurationArn":{}}}}}}},"UpdateConnector":{"http":{"method":"PUT","requestUri":"/v1/connectors/{connectorArn}","responseCode":200},"input":{"type":"structure","required":["capacity","connectorArn","currentVersion"],"members":{"capacity":{"type":"structure","members":{"autoScaling":{"type":"structure","required":["maxWorkerCount","mcuCount","minWorkerCount","scaleInPolicy","scaleOutPolicy"],"members":{"maxWorkerCount":{"type":"integer"},"mcuCount":{"type":"integer"},"minWorkerCount":{"type":"integer"},"scaleInPolicy":{"type":"structure","required":["cpuUtilizationPercentage"],"members":{"cpuUtilizationPercentage":{"type":"integer"}}},"scaleOutPolicy":{"type":"structure","required":["cpuUtilizationPercentage"],"members":{"cpuUtilizationPercentage":{"type":"integer"}}}}},"provisionedCapacity":{"type":"structure","required":["mcuCount","workerCount"],"members":{"mcuCount":{"type":"integer"},"workerCount":{"type":"integer"}}}}},"connectorArn":{"location":"uri","locationName":"connectorArn"},"currentVersion":{"location":"querystring","locationName":"currentVersion"}}},"output":{"type":"structure","members":{"connectorArn":{},"connectorState":{}}},"idempotent":true}},"shapes":{"Sa":{"type":"map","key":{},"value":{}},"Sh":{"type":"list","member":{}},"S18":{"type":"timestamp","timestampFormat":"iso8601"},"S19":{"type":"structure","members":{"creationTime":{"shape":"S18"},"description":{},"revision":{"type":"long"}}},"S1e":{"type":"structure","members":{"autoScaling":{"type":"structure","members":{"maxWorkerCount":{"type":"integer"},"mcuCount":{"type":"integer"},"minWorkerCount":{"type":"integer"},"scaleInPolicy":{"type":"structure","members":{"cpuUtilizationPercentage":{"type":"integer"}}},"scaleOutPolicy":{"type":"structure","members":{"cpuUtilizationPercentage":{"type":"integer"}}}}},"provisionedCapacity":{"type":"structure","members":{"mcuCount":{"type":"integer"},"workerCount":{"type":"integer"}}}}},"S1k":{"type":"structure","members":{"apacheKafkaCluster":{"type":"structure","members":{"bootstrapServers":{},"vpc":{"type":"structure","members":{"securityGroups":{"shape":"Sh"},"subnets":{"shape":"Sh"}}}}}}},"S1n":{"type":"structure","members":{"authenticationType":{}}},"S1o":{"type":"structure","members":{"encryptionType":{}}},"S1p":{"type":"structure","members":{"workerLogDelivery":{"type":"structure","members":{"cloudWatchLogs":{"type":"structure","members":{"enabled":{"type":"boolean"},"logGroup":{}}},"firehose":{"type":"structure","members":{"deliveryStream":{},"enabled":{"type":"boolean"}}},"s3":{"type":"structure","members":{"bucket":{},"enabled":{"type":"boolean"},"prefix":{}}}}}}},"S1u":{"type":"list","member":{"type":"structure","members":{"customPlugin":{"type":"structure","members":{"customPluginArn":{},"revision":{"type":"long"}}}}}},"S1x":{"type":"structure","members":{"revision":{"type":"long"},"workerConfigurationArn":{}}},"S20":{"type":"structure","members":{"contentType":{},"creationTime":{"shape":"S18"},"description":{},"fileDescription":{"type":"structure","members":{"fileMd5":{},"fileSize":{"type":"long"}}},"location":{"type":"structure","members":{"s3Location":{"type":"structure","members":{"bucketArn":{},"fileKey":{},"objectVersion":{}}}}},"revision":{"type":"long"}}}}}
54948
54887
 
54949
54888
  /***/ }),
54950
- /* 1061 */
54889
+ /* 1057 */
54951
54890
  /***/ (function(module, exports) {
54952
54891
 
54953
54892
  module.exports = {"pagination":{"ListConnectors":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"connectors"},"ListCustomPlugins":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"customPlugins"},"ListWorkerConfigurations":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"workerConfigurations"}}}
54954
54893
 
54955
54894
  /***/ }),
54956
- /* 1062 */
54895
+ /* 1058 */
54957
54896
  /***/ (function(module, exports, __webpack_require__) {
54958
54897
 
54959
54898
  __webpack_require__(2);
@@ -54965,8 +54904,8 @@ return /******/ (function(modules) { // webpackBootstrap
54965
54904
  AWS.VoiceID = Service.defineService('voiceid', ['2021-09-27']);
54966
54905
  Object.defineProperty(apiLoader.services['voiceid'], '2021-09-27', {
54967
54906
  get: function get() {
54968
- var model = __webpack_require__(1063);
54969
- model.paginators = __webpack_require__(1064).pagination;
54907
+ var model = __webpack_require__(1059);
54908
+ model.paginators = __webpack_require__(1060).pagination;
54970
54909
  return model;
54971
54910
  },
54972
54911
  enumerable: true,
@@ -54977,19 +54916,19 @@ return /******/ (function(modules) { // webpackBootstrap
54977
54916
 
54978
54917
 
54979
54918
  /***/ }),
54980
- /* 1063 */
54919
+ /* 1059 */
54981
54920
  /***/ (function(module, exports) {
54982
54921
 
54983
54922
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-09-27","endpointPrefix":"voiceid","jsonVersion":"1.0","protocol":"json","serviceFullName":"Amazon Voice ID","serviceId":"Voice ID","signatureVersion":"v4","signingName":"voiceid","targetPrefix":"VoiceID","uid":"voice-id-2021-09-27"},"operations":{"CreateDomain":{"input":{"type":"structure","required":["Name","ServerSideEncryptionConfiguration"],"members":{"ClientToken":{"idempotencyToken":true},"Description":{"shape":"S3"},"Name":{"shape":"S4"},"ServerSideEncryptionConfiguration":{"shape":"S5"},"Tags":{"shape":"S7"}}},"output":{"type":"structure","members":{"Domain":{"shape":"Sc"}}},"idempotent":true},"DeleteDomain":{"input":{"type":"structure","required":["DomainId"],"members":{"DomainId":{}}}},"DeleteFraudster":{"input":{"type":"structure","required":["DomainId","FraudsterId"],"members":{"DomainId":{},"FraudsterId":{"shape":"Sj"}}}},"DeleteSpeaker":{"input":{"type":"structure","required":["DomainId","SpeakerId"],"members":{"DomainId":{},"SpeakerId":{"shape":"Sl"}}}},"DescribeDomain":{"input":{"type":"structure","required":["DomainId"],"members":{"DomainId":{}}},"output":{"type":"structure","members":{"Domain":{"shape":"Sc"}}}},"DescribeFraudster":{"input":{"type":"structure","required":["DomainId","FraudsterId"],"members":{"DomainId":{},"FraudsterId":{"shape":"Sj"}}},"output":{"type":"structure","members":{"Fraudster":{"type":"structure","members":{"CreatedAt":{"type":"timestamp"},"DomainId":{},"GeneratedFraudsterId":{}}}}}},"DescribeFraudsterRegistrationJob":{"input":{"type":"structure","required":["DomainId","JobId"],"members":{"DomainId":{},"JobId":{}}},"output":{"type":"structure","members":{"Job":{"shape":"Sv"}}}},"DescribeSpeaker":{"input":{"type":"structure","required":["DomainId","SpeakerId"],"members":{"DomainId":{},"SpeakerId":{"shape":"Sl"}}},"output":{"type":"structure","members":{"Speaker":{"shape":"S1b"}}}},"DescribeSpeakerEnrollmentJob":{"input":{"type":"structure","required":["DomainId","JobId"],"members":{"DomainId":{},"JobId":{}}},"output":{"type":"structure","members":{"Job":{"shape":"S1h"}}}},"EvaluateSession":{"input":{"type":"structure","required":["DomainId","SessionNameOrId"],"members":{"DomainId":{},"SessionNameOrId":{}}},"output":{"type":"structure","members":{"AuthenticationResult":{"type":"structure","members":{"AudioAggregationEndedAt":{"type":"timestamp"},"AudioAggregationStartedAt":{"type":"timestamp"},"AuthenticationResultId":{},"Configuration":{"type":"structure","required":["AcceptanceThreshold"],"members":{"AcceptanceThreshold":{"type":"integer"}}},"CustomerSpeakerId":{"shape":"S1c"},"Decision":{},"GeneratedSpeakerId":{},"Score":{"type":"integer"}}},"DomainId":{},"FraudDetectionResult":{"type":"structure","members":{"AudioAggregationEndedAt":{"type":"timestamp"},"AudioAggregationStartedAt":{"type":"timestamp"},"Configuration":{"type":"structure","required":["RiskThreshold"],"members":{"RiskThreshold":{"type":"integer"}}},"Decision":{},"FraudDetectionResultId":{},"Reasons":{"type":"list","member":{}},"RiskDetails":{"type":"structure","required":["KnownFraudsterRisk"],"members":{"KnownFraudsterRisk":{"type":"structure","required":["RiskScore"],"members":{"GeneratedFraudsterId":{},"RiskScore":{"type":"integer"}}}}}}},"SessionId":{},"SessionName":{},"StreamingStatus":{}}}},"ListDomains":{"input":{"type":"structure","members":{"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"DomainSummaries":{"type":"list","member":{"type":"structure","members":{"Arn":{},"CreatedAt":{"type":"timestamp"},"Description":{"shape":"S3"},"DomainId":{},"DomainStatus":{},"Name":{"shape":"S4"},"ServerSideEncryptionConfiguration":{"shape":"S5"},"UpdatedAt":{"type":"timestamp"}}}},"NextToken":{}}}},"ListFraudsterRegistrationJobs":{"input":{"type":"structure","required":["DomainId"],"members":{"DomainId":{},"JobStatus":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"JobSummaries":{"type":"list","member":{"type":"structure","members":{"CreatedAt":{"type":"timestamp"},"DomainId":{},"EndedAt":{"type":"timestamp"},"FailureDetails":{"shape":"Sx"},"JobId":{},"JobName":{"shape":"S12"},"JobProgress":{"shape":"S13"},"JobStatus":{}}}},"NextToken":{}}}},"ListSpeakerEnrollmentJobs":{"input":{"type":"structure","required":["DomainId"],"members":{"DomainId":{},"JobStatus":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"JobSummaries":{"type":"list","member":{"type":"structure","members":{"CreatedAt":{"type":"timestamp"},"DomainId":{},"EndedAt":{"type":"timestamp"},"FailureDetails":{"shape":"Sx"},"JobId":{},"JobName":{"shape":"S12"},"JobProgress":{"shape":"S13"},"JobStatus":{}}}},"NextToken":{}}}},"ListSpeakers":{"input":{"type":"structure","required":["DomainId"],"members":{"DomainId":{},"MaxResults":{"type":"integer"},"NextToken":{}}},"output":{"type":"structure","members":{"NextToken":{},"SpeakerSummaries":{"type":"list","member":{"type":"structure","members":{"CreatedAt":{"type":"timestamp"},"CustomerSpeakerId":{"shape":"S1c"},"DomainId":{},"GeneratedSpeakerId":{},"Status":{},"UpdatedAt":{"type":"timestamp"}}}}}}},"ListTagsForResource":{"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{}}},"output":{"type":"structure","members":{"Tags":{"shape":"S7"}}}},"OptOutSpeaker":{"input":{"type":"structure","required":["DomainId","SpeakerId"],"members":{"DomainId":{},"SpeakerId":{"shape":"Sl"}}},"output":{"type":"structure","members":{"Speaker":{"shape":"S1b"}}}},"StartFraudsterRegistrationJob":{"input":{"type":"structure","required":["DataAccessRoleArn","DomainId","InputDataConfig","OutputDataConfig"],"members":{"ClientToken":{"idempotencyToken":true},"DataAccessRoleArn":{},"DomainId":{},"InputDataConfig":{"shape":"S10"},"JobName":{"shape":"S12"},"OutputDataConfig":{"shape":"S16"},"RegistrationConfig":{"shape":"S17"}}},"output":{"type":"structure","members":{"Job":{"shape":"Sv"}}},"idempotent":true},"StartSpeakerEnrollmentJob":{"input":{"type":"structure","required":["DataAccessRoleArn","DomainId","InputDataConfig","OutputDataConfig"],"members":{"ClientToken":{"idempotencyToken":true},"DataAccessRoleArn":{},"DomainId":{},"EnrollmentConfig":{"shape":"S1i"},"InputDataConfig":{"shape":"S10"},"JobName":{"shape":"S12"},"OutputDataConfig":{"shape":"S16"}}},"output":{"type":"structure","members":{"Job":{"shape":"S1h"}}},"idempotent":true},"TagResource":{"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{},"Tags":{"shape":"S7"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{},"TagKeys":{"type":"list","member":{"shape":"S9"}}}},"output":{"type":"structure","members":{}}},"UpdateDomain":{"input":{"type":"structure","required":["DomainId","Name","ServerSideEncryptionConfiguration"],"members":{"Description":{"shape":"S3"},"DomainId":{},"Name":{"shape":"S4"},"ServerSideEncryptionConfiguration":{"shape":"S5"}}},"output":{"type":"structure","members":{"Domain":{"shape":"Sc"}}}}},"shapes":{"S3":{"type":"string","sensitive":true},"S4":{"type":"string","sensitive":true},"S5":{"type":"structure","required":["KmsKeyId"],"members":{"KmsKeyId":{}}},"S7":{"type":"list","member":{"type":"structure","required":["Key","Value"],"members":{"Key":{"shape":"S9"},"Value":{"type":"string","sensitive":true}}}},"S9":{"type":"string","sensitive":true},"Sc":{"type":"structure","members":{"Arn":{},"CreatedAt":{"type":"timestamp"},"Description":{"shape":"S3"},"DomainId":{},"DomainStatus":{},"Name":{"shape":"S4"},"ServerSideEncryptionConfiguration":{"shape":"S5"},"UpdatedAt":{"type":"timestamp"}}},"Sj":{"type":"string","sensitive":true},"Sl":{"type":"string","sensitive":true},"Sv":{"type":"structure","members":{"CreatedAt":{"type":"timestamp"},"DataAccessRoleArn":{},"DomainId":{},"EndedAt":{"type":"timestamp"},"FailureDetails":{"shape":"Sx"},"InputDataConfig":{"shape":"S10"},"JobId":{},"JobName":{"shape":"S12"},"JobProgress":{"shape":"S13"},"JobStatus":{},"OutputDataConfig":{"shape":"S16"},"RegistrationConfig":{"shape":"S17"}}},"Sx":{"type":"structure","members":{"Message":{},"StatusCode":{"type":"integer"}}},"S10":{"type":"structure","required":["S3Uri"],"members":{"S3Uri":{}}},"S12":{"type":"string","sensitive":true},"S13":{"type":"structure","members":{"PercentComplete":{"type":"integer"}}},"S16":{"type":"structure","required":["S3Uri"],"members":{"KmsKeyId":{},"S3Uri":{}}},"S17":{"type":"structure","members":{"DuplicateRegistrationAction":{},"FraudsterSimilarityThreshold":{"type":"integer"}}},"S1b":{"type":"structure","members":{"CreatedAt":{"type":"timestamp"},"CustomerSpeakerId":{"shape":"S1c"},"DomainId":{},"GeneratedSpeakerId":{},"Status":{},"UpdatedAt":{"type":"timestamp"}}},"S1c":{"type":"string","sensitive":true},"S1h":{"type":"structure","members":{"CreatedAt":{"type":"timestamp"},"DataAccessRoleArn":{},"DomainId":{},"EndedAt":{"type":"timestamp"},"EnrollmentConfig":{"shape":"S1i"},"FailureDetails":{"shape":"Sx"},"InputDataConfig":{"shape":"S10"},"JobId":{},"JobName":{"shape":"S12"},"JobProgress":{"shape":"S13"},"JobStatus":{},"OutputDataConfig":{"shape":"S16"}}},"S1i":{"type":"structure","members":{"ExistingEnrollmentAction":{},"FraudDetectionConfig":{"type":"structure","members":{"FraudDetectionAction":{},"RiskThreshold":{"type":"integer"}}}}}}}
54984
54923
 
54985
54924
  /***/ }),
54986
- /* 1064 */
54925
+ /* 1060 */
54987
54926
  /***/ (function(module, exports) {
54988
54927
 
54989
54928
  module.exports = {"pagination":{"ListDomains":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListFraudsterRegistrationJobs":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListSpeakerEnrollmentJobs":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListSpeakers":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
54990
54929
 
54991
54930
  /***/ }),
54992
- /* 1065 */
54931
+ /* 1061 */
54993
54932
  /***/ (function(module, exports, __webpack_require__) {
54994
54933
 
54995
54934
  __webpack_require__(2);
@@ -55001,8 +54940,8 @@ return /******/ (function(modules) { // webpackBootstrap
55001
54940
  AWS.Wisdom = Service.defineService('wisdom', ['2020-10-19']);
55002
54941
  Object.defineProperty(apiLoader.services['wisdom'], '2020-10-19', {
55003
54942
  get: function get() {
55004
- var model = __webpack_require__(1066);
55005
- model.paginators = __webpack_require__(1067).pagination;
54943
+ var model = __webpack_require__(1062);
54944
+ model.paginators = __webpack_require__(1063).pagination;
55006
54945
  return model;
55007
54946
  },
55008
54947
  enumerable: true,
@@ -55013,19 +54952,19 @@ return /******/ (function(modules) { // webpackBootstrap
55013
54952
 
55014
54953
 
55015
54954
  /***/ }),
55016
- /* 1066 */
54955
+ /* 1062 */
55017
54956
  /***/ (function(module, exports) {
55018
54957
 
55019
54958
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-10-19","endpointPrefix":"wisdom","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"Amazon Connect Wisdom Service","serviceId":"Wisdom","signatureVersion":"v4","signingName":"wisdom","uid":"wisdom-2020-10-19"},"operations":{"CreateAssistant":{"http":{"requestUri":"/assistants","responseCode":200},"input":{"type":"structure","required":["name","type"],"members":{"clientToken":{"idempotencyToken":true},"description":{},"name":{},"serverSideEncryptionConfiguration":{"shape":"S5"},"tags":{"shape":"S7"},"type":{}}},"output":{"type":"structure","members":{"assistant":{"shape":"Sc"}}},"idempotent":true},"CreateAssistantAssociation":{"http":{"requestUri":"/assistants/{assistantId}/associations","responseCode":200},"input":{"type":"structure","required":["assistantId","association","associationType"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"association":{"type":"structure","members":{"knowledgeBaseId":{}},"union":true},"associationType":{},"clientToken":{"idempotencyToken":true},"tags":{"shape":"S7"}}},"output":{"type":"structure","members":{"assistantAssociation":{"shape":"Sl"}}},"idempotent":true},"CreateContent":{"http":{"requestUri":"/knowledgeBases/{knowledgeBaseId}/contents","responseCode":200},"input":{"type":"structure","required":["knowledgeBaseId","name","uploadId"],"members":{"clientToken":{"idempotencyToken":true},"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"},"metadata":{"shape":"Sp"},"name":{},"overrideLinkOutUri":{},"tags":{"shape":"S7"},"title":{},"uploadId":{}}},"output":{"type":"structure","members":{"content":{"shape":"St"}}},"idempotent":true},"CreateKnowledgeBase":{"http":{"requestUri":"/knowledgeBases","responseCode":200},"input":{"type":"structure","required":["knowledgeBaseType","name"],"members":{"clientToken":{"idempotencyToken":true},"description":{},"knowledgeBaseType":{},"name":{},"renderingConfiguration":{"shape":"S10"},"serverSideEncryptionConfiguration":{"shape":"S5"},"sourceConfiguration":{"shape":"S11"},"tags":{"shape":"S7"}}},"output":{"type":"structure","members":{"knowledgeBase":{"shape":"S16"}}},"idempotent":true},"CreateSession":{"http":{"requestUri":"/assistants/{assistantId}/sessions","responseCode":200},"input":{"type":"structure","required":["assistantId","name"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"clientToken":{"idempotencyToken":true},"description":{},"name":{},"tags":{"shape":"S7"}}},"output":{"type":"structure","members":{"session":{"shape":"S1a"}}},"idempotent":true},"DeleteAssistant":{"http":{"method":"DELETE","requestUri":"/assistants/{assistantId}","responseCode":204},"input":{"type":"structure","required":["assistantId"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteAssistantAssociation":{"http":{"method":"DELETE","requestUri":"/assistants/{assistantId}/associations/{assistantAssociationId}","responseCode":204},"input":{"type":"structure","required":["assistantAssociationId","assistantId"],"members":{"assistantAssociationId":{"location":"uri","locationName":"assistantAssociationId"},"assistantId":{"location":"uri","locationName":"assistantId"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteContent":{"http":{"method":"DELETE","requestUri":"/knowledgeBases/{knowledgeBaseId}/contents/{contentId}","responseCode":204},"input":{"type":"structure","required":["contentId","knowledgeBaseId"],"members":{"contentId":{"location":"uri","locationName":"contentId"},"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"}}},"output":{"type":"structure","members":{}},"idempotent":true},"DeleteKnowledgeBase":{"http":{"method":"DELETE","requestUri":"/knowledgeBases/{knowledgeBaseId}","responseCode":204},"input":{"type":"structure","required":["knowledgeBaseId"],"members":{"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"}}},"output":{"type":"structure","members":{}},"idempotent":true},"GetAssistant":{"http":{"method":"GET","requestUri":"/assistants/{assistantId}","responseCode":200},"input":{"type":"structure","required":["assistantId"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"}}},"output":{"type":"structure","members":{"assistant":{"shape":"Sc"}}}},"GetAssistantAssociation":{"http":{"method":"GET","requestUri":"/assistants/{assistantId}/associations/{assistantAssociationId}","responseCode":200},"input":{"type":"structure","required":["assistantAssociationId","assistantId"],"members":{"assistantAssociationId":{"location":"uri","locationName":"assistantAssociationId"},"assistantId":{"location":"uri","locationName":"assistantId"}}},"output":{"type":"structure","members":{"assistantAssociation":{"shape":"Sl"}}}},"GetContent":{"http":{"method":"GET","requestUri":"/knowledgeBases/{knowledgeBaseId}/contents/{contentId}","responseCode":200},"input":{"type":"structure","required":["contentId","knowledgeBaseId"],"members":{"contentId":{"location":"uri","locationName":"contentId"},"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"}}},"output":{"type":"structure","members":{"content":{"shape":"St"}}}},"GetContentSummary":{"http":{"method":"GET","requestUri":"/knowledgeBases/{knowledgeBaseId}/contents/{contentId}/summary","responseCode":200},"input":{"type":"structure","required":["contentId","knowledgeBaseId"],"members":{"contentId":{"location":"uri","locationName":"contentId"},"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"}}},"output":{"type":"structure","members":{"contentSummary":{"shape":"S1r"}}}},"GetKnowledgeBase":{"http":{"method":"GET","requestUri":"/knowledgeBases/{knowledgeBaseId}","responseCode":200},"input":{"type":"structure","required":["knowledgeBaseId"],"members":{"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"}}},"output":{"type":"structure","members":{"knowledgeBase":{"shape":"S16"}}}},"GetRecommendations":{"http":{"method":"GET","requestUri":"/assistants/{assistantId}/sessions/{sessionId}/recommendations","responseCode":200},"input":{"type":"structure","required":["assistantId","sessionId"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"sessionId":{"location":"uri","locationName":"sessionId"},"waitTimeSeconds":{"location":"querystring","locationName":"waitTimeSeconds","type":"integer"}}},"output":{"type":"structure","required":["recommendations"],"members":{"recommendations":{"type":"list","member":{"type":"structure","required":["document","recommendationId"],"members":{"document":{"shape":"S20"},"recommendationId":{},"relevanceLevel":{},"relevanceScore":{"type":"double"}}}}}}},"GetSession":{"http":{"method":"GET","requestUri":"/assistants/{assistantId}/sessions/{sessionId}","responseCode":200},"input":{"type":"structure","required":["assistantId","sessionId"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"sessionId":{"location":"uri","locationName":"sessionId"}}},"output":{"type":"structure","members":{"session":{"shape":"S1a"}}}},"ListAssistantAssociations":{"http":{"method":"GET","requestUri":"/assistants/{assistantId}/associations","responseCode":200},"input":{"type":"structure","required":["assistantId"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["assistantAssociationSummaries"],"members":{"assistantAssociationSummaries":{"type":"list","member":{"type":"structure","required":["assistantArn","assistantAssociationArn","assistantAssociationId","assistantId","associationData","associationType"],"members":{"assistantArn":{},"assistantAssociationArn":{},"assistantAssociationId":{},"assistantId":{},"associationData":{"shape":"Sm"},"associationType":{},"tags":{"shape":"S7"}}}},"nextToken":{}}}},"ListAssistants":{"http":{"method":"GET","requestUri":"/assistants","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["assistantSummaries"],"members":{"assistantSummaries":{"type":"list","member":{"type":"structure","required":["assistantArn","assistantId","name","status","type"],"members":{"assistantArn":{},"assistantId":{},"description":{},"name":{},"serverSideEncryptionConfiguration":{"shape":"S5"},"status":{},"tags":{"shape":"S7"},"type":{}}}},"nextToken":{}}}},"ListContents":{"http":{"method":"GET","requestUri":"/knowledgeBases/{knowledgeBaseId}/contents","responseCode":200},"input":{"type":"structure","required":["knowledgeBaseId"],"members":{"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["contentSummaries"],"members":{"contentSummaries":{"shape":"S2n"},"nextToken":{}}}},"ListKnowledgeBases":{"http":{"method":"GET","requestUri":"/knowledgeBases","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["knowledgeBaseSummaries"],"members":{"knowledgeBaseSummaries":{"type":"list","member":{"type":"structure","required":["knowledgeBaseArn","knowledgeBaseId","knowledgeBaseType","name","status"],"members":{"description":{},"knowledgeBaseArn":{},"knowledgeBaseId":{},"knowledgeBaseType":{},"name":{},"renderingConfiguration":{"shape":"S10"},"serverSideEncryptionConfiguration":{"shape":"S5"},"sourceConfiguration":{"shape":"S11"},"status":{},"tags":{"shape":"S7"}}}},"nextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"}}},"output":{"type":"structure","members":{"tags":{"shape":"S7"}}}},"NotifyRecommendationsReceived":{"http":{"requestUri":"/assistants/{assistantId}/sessions/{sessionId}/recommendations/notify","responseCode":200},"input":{"type":"structure","required":["assistantId","recommendationIds","sessionId"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"recommendationIds":{"shape":"S2v"},"sessionId":{"location":"uri","locationName":"sessionId"}}},"output":{"type":"structure","members":{"errors":{"type":"list","member":{"type":"structure","members":{"message":{},"recommendationId":{}}}},"recommendationIds":{"shape":"S2v"}}},"idempotent":true},"QueryAssistant":{"http":{"requestUri":"/assistants/{assistantId}/query","responseCode":200},"input":{"type":"structure","required":["assistantId","queryText"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"maxResults":{"type":"integer"},"nextToken":{},"queryText":{"type":"string","sensitive":true}}},"output":{"type":"structure","required":["results"],"members":{"nextToken":{},"results":{"type":"list","member":{"type":"structure","required":["document","resultId"],"members":{"document":{"shape":"S20"},"relevanceScore":{"type":"double"},"resultId":{}}}}}}},"RemoveKnowledgeBaseTemplateUri":{"http":{"method":"DELETE","requestUri":"/knowledgeBases/{knowledgeBaseId}/templateUri","responseCode":204},"input":{"type":"structure","required":["knowledgeBaseId"],"members":{"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"}}},"output":{"type":"structure","members":{}}},"SearchContent":{"http":{"requestUri":"/knowledgeBases/{knowledgeBaseId}/search","responseCode":200},"input":{"type":"structure","required":["knowledgeBaseId","searchExpression"],"members":{"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"searchExpression":{"shape":"S38"}}},"output":{"type":"structure","required":["contentSummaries"],"members":{"contentSummaries":{"shape":"S2n"},"nextToken":{}}}},"SearchSessions":{"http":{"requestUri":"/assistants/{assistantId}/searchSessions","responseCode":200},"input":{"type":"structure","required":["assistantId","searchExpression"],"members":{"assistantId":{"location":"uri","locationName":"assistantId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"searchExpression":{"shape":"S38"}}},"output":{"type":"structure","required":["sessionSummaries"],"members":{"nextToken":{},"sessionSummaries":{"type":"list","member":{"type":"structure","required":["assistantArn","assistantId","sessionArn","sessionId"],"members":{"assistantArn":{},"assistantId":{},"sessionArn":{},"sessionId":{}}}}}}},"StartContentUpload":{"http":{"requestUri":"/knowledgeBases/{knowledgeBaseId}/upload","responseCode":200},"input":{"type":"structure","required":["contentType","knowledgeBaseId"],"members":{"contentType":{},"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"}}},"output":{"type":"structure","required":["headersToInclude","uploadId","url","urlExpiry"],"members":{"headersToInclude":{"type":"map","key":{},"value":{}},"uploadId":{},"url":{"type":"string","sensitive":true},"urlExpiry":{"shape":"Sx"}}}},"TagResource":{"http":{"requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tags"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tags":{"shape":"S7"}}},"output":{"type":"structure","members":{}},"idempotent":true},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{resourceArn}","responseCode":200},"input":{"type":"structure","required":["resourceArn","tagKeys"],"members":{"resourceArn":{"location":"uri","locationName":"resourceArn"},"tagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}},"idempotent":true},"UpdateContent":{"http":{"requestUri":"/knowledgeBases/{knowledgeBaseId}/contents/{contentId}","responseCode":200},"input":{"type":"structure","required":["contentId","knowledgeBaseId"],"members":{"contentId":{"location":"uri","locationName":"contentId"},"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"},"metadata":{"shape":"Sp"},"overrideLinkOutUri":{},"removeOverrideLinkOutUri":{"type":"boolean"},"revisionId":{},"title":{},"uploadId":{}}},"output":{"type":"structure","members":{"content":{"shape":"St"}}}},"UpdateKnowledgeBaseTemplateUri":{"http":{"requestUri":"/knowledgeBases/{knowledgeBaseId}/templateUri","responseCode":200},"input":{"type":"structure","required":["knowledgeBaseId","templateUri"],"members":{"knowledgeBaseId":{"location":"uri","locationName":"knowledgeBaseId"},"templateUri":{}}},"output":{"type":"structure","members":{"knowledgeBase":{"shape":"S16"}}}}},"shapes":{"S5":{"type":"structure","members":{"kmsKeyId":{}}},"S7":{"type":"map","key":{},"value":{}},"Sc":{"type":"structure","required":["assistantArn","assistantId","name","status","type"],"members":{"assistantArn":{},"assistantId":{},"description":{},"name":{},"serverSideEncryptionConfiguration":{"shape":"S5"},"status":{},"tags":{"shape":"S7"},"type":{}}},"Sl":{"type":"structure","required":["assistantArn","assistantAssociationArn","assistantAssociationId","assistantId","associationData","associationType"],"members":{"assistantArn":{},"assistantAssociationArn":{},"assistantAssociationId":{},"assistantId":{},"associationData":{"shape":"Sm"},"associationType":{},"tags":{"shape":"S7"}}},"Sm":{"type":"structure","members":{"knowledgeBaseAssociation":{"type":"structure","members":{"knowledgeBaseArn":{},"knowledgeBaseId":{}}}},"union":true},"Sp":{"type":"map","key":{},"value":{}},"St":{"type":"structure","required":["contentArn","contentId","contentType","knowledgeBaseArn","knowledgeBaseId","metadata","name","revisionId","status","title","url","urlExpiry"],"members":{"contentArn":{},"contentId":{},"contentType":{},"knowledgeBaseArn":{},"knowledgeBaseId":{},"linkOutUri":{},"metadata":{"shape":"Sp"},"name":{},"revisionId":{},"status":{},"tags":{"shape":"S7"},"title":{},"url":{"type":"string","sensitive":true},"urlExpiry":{"shape":"Sx"}}},"Sx":{"type":"timestamp","timestampFormat":"unixTimestamp"},"S10":{"type":"structure","members":{"templateUri":{}}},"S11":{"type":"structure","members":{"appIntegrations":{"type":"structure","required":["appIntegrationArn","objectFields"],"members":{"appIntegrationArn":{},"objectFields":{"type":"list","member":{}}}}},"union":true},"S16":{"type":"structure","required":["knowledgeBaseArn","knowledgeBaseId","knowledgeBaseType","name","status"],"members":{"description":{},"knowledgeBaseArn":{},"knowledgeBaseId":{},"knowledgeBaseType":{},"lastContentModificationTime":{"shape":"Sx"},"name":{},"renderingConfiguration":{"shape":"S10"},"serverSideEncryptionConfiguration":{"shape":"S5"},"sourceConfiguration":{"shape":"S11"},"status":{},"tags":{"shape":"S7"}}},"S1a":{"type":"structure","required":["name","sessionArn","sessionId"],"members":{"description":{},"name":{},"sessionArn":{},"sessionId":{},"tags":{"shape":"S7"}}},"S1r":{"type":"structure","required":["contentArn","contentId","contentType","knowledgeBaseArn","knowledgeBaseId","metadata","name","revisionId","status","title"],"members":{"contentArn":{},"contentId":{},"contentType":{},"knowledgeBaseArn":{},"knowledgeBaseId":{},"metadata":{"shape":"Sp"},"name":{},"revisionId":{},"status":{},"tags":{"shape":"S7"},"title":{}}},"S20":{"type":"structure","required":["contentReference"],"members":{"contentReference":{"type":"structure","members":{"contentArn":{},"contentId":{},"knowledgeBaseArn":{},"knowledgeBaseId":{}}},"excerpt":{"shape":"S22"},"title":{"shape":"S22"}}},"S22":{"type":"structure","members":{"highlights":{"type":"list","member":{"type":"structure","members":{"beginOffsetInclusive":{"type":"integer"},"endOffsetExclusive":{"type":"integer"}}}},"text":{"type":"string","sensitive":true}}},"S2n":{"type":"list","member":{"shape":"S1r"}},"S2v":{"type":"list","member":{}},"S38":{"type":"structure","required":["filters"],"members":{"filters":{"type":"list","member":{"type":"structure","required":["field","operator","value"],"members":{"field":{},"operator":{},"value":{}}}}}}}}
55020
54959
 
55021
54960
  /***/ }),
55022
- /* 1067 */
54961
+ /* 1063 */
55023
54962
  /***/ (function(module, exports) {
55024
54963
 
55025
54964
  module.exports = {"pagination":{"ListAssistantAssociations":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"assistantAssociationSummaries"},"ListAssistants":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"assistantSummaries"},"ListContents":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"contentSummaries"},"ListKnowledgeBases":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"knowledgeBaseSummaries"},"QueryAssistant":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"results"},"SearchContent":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"contentSummaries"},"SearchSessions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"sessionSummaries"}}}
55026
54965
 
55027
54966
  /***/ }),
55028
- /* 1068 */
54967
+ /* 1064 */
55029
54968
  /***/ (function(module, exports, __webpack_require__) {
55030
54969
 
55031
54970
  __webpack_require__(2);
@@ -55037,8 +54976,8 @@ return /******/ (function(modules) { // webpackBootstrap
55037
54976
  AWS.Account = Service.defineService('account', ['2021-02-01']);
55038
54977
  Object.defineProperty(apiLoader.services['account'], '2021-02-01', {
55039
54978
  get: function get() {
55040
- var model = __webpack_require__(1069);
55041
- model.paginators = __webpack_require__(1070).pagination;
54979
+ var model = __webpack_require__(1065);
54980
+ model.paginators = __webpack_require__(1066).pagination;
55042
54981
  return model;
55043
54982
  },
55044
54983
  enumerable: true,
@@ -55049,19 +54988,19 @@ return /******/ (function(modules) { // webpackBootstrap
55049
54988
 
55050
54989
 
55051
54990
  /***/ }),
55052
- /* 1069 */
54991
+ /* 1065 */
55053
54992
  /***/ (function(module, exports) {
55054
54993
 
55055
54994
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-02-01","endpointPrefix":"account","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"AWS Account","serviceId":"Account","signatureVersion":"v4","signingName":"account","uid":"account-2021-02-01"},"operations":{"DeleteAlternateContact":{"http":{"requestUri":"/deleteAlternateContact","responseCode":200},"input":{"type":"structure","required":["AlternateContactType"],"members":{"AccountId":{},"AlternateContactType":{}}},"idempotent":true},"GetAlternateContact":{"http":{"requestUri":"/getAlternateContact","responseCode":200},"input":{"type":"structure","required":["AlternateContactType"],"members":{"AccountId":{},"AlternateContactType":{}}},"output":{"type":"structure","members":{"AlternateContact":{"type":"structure","members":{"AlternateContactType":{},"EmailAddress":{"shape":"S7"},"Name":{"shape":"S8"},"PhoneNumber":{"shape":"S9"},"Title":{"shape":"Sa"}}}}}},"PutAlternateContact":{"http":{"requestUri":"/putAlternateContact","responseCode":200},"input":{"type":"structure","required":["AlternateContactType","EmailAddress","Name","PhoneNumber","Title"],"members":{"AccountId":{},"AlternateContactType":{},"EmailAddress":{"shape":"S7"},"Name":{"shape":"S8"},"PhoneNumber":{"shape":"S9"},"Title":{"shape":"Sa"}}},"idempotent":true}},"shapes":{"S7":{"type":"string","sensitive":true},"S8":{"type":"string","sensitive":true},"S9":{"type":"string","sensitive":true},"Sa":{"type":"string","sensitive":true}}}
55056
54995
 
55057
54996
  /***/ }),
55058
- /* 1070 */
54997
+ /* 1066 */
55059
54998
  /***/ (function(module, exports) {
55060
54999
 
55061
55000
  module.exports = {"pagination":{}}
55062
55001
 
55063
55002
  /***/ }),
55064
- /* 1071 */
55003
+ /* 1067 */
55065
55004
  /***/ (function(module, exports, __webpack_require__) {
55066
55005
 
55067
55006
  __webpack_require__(2);
@@ -55073,9 +55012,9 @@ return /******/ (function(modules) { // webpackBootstrap
55073
55012
  AWS.CloudControl = Service.defineService('cloudcontrol', ['2021-09-30']);
55074
55013
  Object.defineProperty(apiLoader.services['cloudcontrol'], '2021-09-30', {
55075
55014
  get: function get() {
55076
- var model = __webpack_require__(1072);
55077
- model.paginators = __webpack_require__(1073).pagination;
55078
- model.waiters = __webpack_require__(1074).waiters;
55015
+ var model = __webpack_require__(1068);
55016
+ model.paginators = __webpack_require__(1069).pagination;
55017
+ model.waiters = __webpack_require__(1070).waiters;
55079
55018
  return model;
55080
55019
  },
55081
55020
  enumerable: true,
@@ -55086,25 +55025,25 @@ return /******/ (function(modules) { // webpackBootstrap
55086
55025
 
55087
55026
 
55088
55027
  /***/ }),
55089
- /* 1072 */
55028
+ /* 1068 */
55090
55029
  /***/ (function(module, exports) {
55091
55030
 
55092
55031
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2021-09-30","endpointPrefix":"cloudcontrolapi","jsonVersion":"1.0","protocol":"json","serviceAbbreviation":"CloudControlApi","serviceFullName":"AWS Cloud Control API","serviceId":"CloudControl","signatureVersion":"v4","signingName":"cloudcontrolapi","targetPrefix":"CloudApiService","uid":"cloudcontrol-2021-09-30"},"operations":{"CancelResourceRequest":{"input":{"type":"structure","required":["RequestToken"],"members":{"RequestToken":{}}},"output":{"type":"structure","members":{"ProgressEvent":{"shape":"S4"}}},"idempotent":true},"CreateResource":{"input":{"type":"structure","required":["TypeName","DesiredState"],"members":{"TypeName":{},"TypeVersionId":{},"RoleArn":{},"ClientToken":{"idempotencyToken":true},"DesiredState":{"shape":"Sa"}}},"output":{"type":"structure","members":{"ProgressEvent":{"shape":"S4"}}}},"DeleteResource":{"input":{"type":"structure","required":["TypeName","Identifier"],"members":{"TypeName":{},"TypeVersionId":{},"RoleArn":{},"ClientToken":{"idempotencyToken":true},"Identifier":{}}},"output":{"type":"structure","members":{"ProgressEvent":{"shape":"S4"}}}},"GetResource":{"input":{"type":"structure","required":["TypeName","Identifier"],"members":{"TypeName":{},"TypeVersionId":{},"RoleArn":{},"Identifier":{}}},"output":{"type":"structure","members":{"TypeName":{},"ResourceDescription":{"shape":"Sm"}}}},"GetResourceRequestStatus":{"input":{"type":"structure","required":["RequestToken"],"members":{"RequestToken":{}}},"output":{"type":"structure","members":{"ProgressEvent":{"shape":"S4"}}}},"ListResourceRequests":{"input":{"type":"structure","members":{"MaxResults":{"type":"integer"},"NextToken":{},"ResourceRequestStatusFilter":{"type":"structure","members":{"Operations":{"type":"list","member":{}},"OperationStatuses":{"type":"list","member":{}}}}}},"output":{"type":"structure","members":{"ResourceRequestStatusSummaries":{"type":"list","member":{"shape":"S4"}},"NextToken":{}}}},"ListResources":{"input":{"type":"structure","required":["TypeName"],"members":{"TypeName":{},"TypeVersionId":{},"RoleArn":{},"NextToken":{},"MaxResults":{"type":"integer"},"ResourceModel":{"shape":"Sa"}}},"output":{"type":"structure","members":{"TypeName":{},"ResourceDescriptions":{"type":"list","member":{"shape":"Sm"}},"NextToken":{}}}},"UpdateResource":{"input":{"type":"structure","required":["TypeName","Identifier","PatchDocument"],"members":{"TypeName":{},"TypeVersionId":{},"RoleArn":{},"ClientToken":{"idempotencyToken":true},"Identifier":{},"PatchDocument":{"type":"string","sensitive":true}}},"output":{"type":"structure","members":{"ProgressEvent":{"shape":"S4"}}}}},"shapes":{"S4":{"type":"structure","members":{"TypeName":{},"Identifier":{},"RequestToken":{},"Operation":{},"OperationStatus":{},"EventTime":{"type":"timestamp"},"ResourceModel":{"shape":"Sa"},"StatusMessage":{},"ErrorCode":{},"RetryAfter":{"type":"timestamp"}}},"Sa":{"type":"string","sensitive":true},"Sm":{"type":"structure","members":{"Identifier":{},"Properties":{"shape":"Sa"}}}}}
55093
55032
 
55094
55033
  /***/ }),
55095
- /* 1073 */
55034
+ /* 1069 */
55096
55035
  /***/ (function(module, exports) {
55097
55036
 
55098
55037
  module.exports = {"pagination":{"ListResourceRequests":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListResources":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}
55099
55038
 
55100
55039
  /***/ }),
55101
- /* 1074 */
55040
+ /* 1070 */
55102
55041
  /***/ (function(module, exports) {
55103
55042
 
55104
55043
  module.exports = {"version":2,"waiters":{"ResourceRequestSuccess":{"description":"Wait until resource operation request is successful","operation":"GetResourceRequestStatus","delay":5,"maxAttempts":720,"acceptors":[{"state":"success","matcher":"path","argument":"ProgressEvent.OperationStatus","expected":"SUCCESS"},{"state":"failure","matcher":"path","argument":"ProgressEvent.OperationStatus","expected":"FAILED"},{"state":"failure","matcher":"path","argument":"ProgressEvent.OperationStatus","expected":"CANCEL_COMPLETE"}]}}}
55105
55044
 
55106
55045
  /***/ }),
55107
- /* 1075 */
55046
+ /* 1071 */
55108
55047
  /***/ (function(module, exports, __webpack_require__) {
55109
55048
 
55110
55049
  __webpack_require__(2);
@@ -55116,8 +55055,8 @@ return /******/ (function(modules) { // webpackBootstrap
55116
55055
  AWS.Grafana = Service.defineService('grafana', ['2020-08-18']);
55117
55056
  Object.defineProperty(apiLoader.services['grafana'], '2020-08-18', {
55118
55057
  get: function get() {
55119
- var model = __webpack_require__(1076);
55120
- model.paginators = __webpack_require__(1077).pagination;
55058
+ var model = __webpack_require__(1072);
55059
+ model.paginators = __webpack_require__(1073).pagination;
55121
55060
  return model;
55122
55061
  },
55123
55062
  enumerable: true,
@@ -55128,19 +55067,19 @@ return /******/ (function(modules) { // webpackBootstrap
55128
55067
 
55129
55068
 
55130
55069
  /***/ }),
55131
- /* 1076 */
55070
+ /* 1072 */
55132
55071
  /***/ (function(module, exports) {
55133
55072
 
55134
55073
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2020-08-18","endpointPrefix":"grafana","jsonVersion":"1.1","protocol":"rest-json","serviceFullName":"Amazon Managed Grafana","serviceId":"grafana","signatureVersion":"v4","signingName":"grafana","uid":"grafana-2020-08-18"},"operations":{"AssociateLicense":{"http":{"requestUri":"/workspaces/{workspaceId}/licenses/{licenseType}","responseCode":202},"input":{"type":"structure","required":["licenseType","workspaceId"],"members":{"licenseType":{"location":"uri","locationName":"licenseType"},"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["workspace"],"members":{"workspace":{"shape":"S5"}}}},"CreateWorkspace":{"http":{"requestUri":"/workspaces","responseCode":202},"input":{"type":"structure","required":["accountAccessType","authenticationProviders","permissionType"],"members":{"accountAccessType":{},"authenticationProviders":{"shape":"S8"},"clientToken":{"idempotencyToken":true},"organizationRoleName":{"shape":"Sl"},"permissionType":{},"stackSetName":{},"workspaceDataSources":{"shape":"Sc"},"workspaceDescription":{"shape":"Se"},"workspaceName":{"shape":"Si"},"workspaceNotificationDestinations":{"shape":"Sj"},"workspaceOrganizationalUnits":{"shape":"Sm"},"workspaceRoleArn":{"shape":"Sr"}}},"output":{"type":"structure","required":["workspace"],"members":{"workspace":{"shape":"S5"}}},"idempotent":true},"DeleteWorkspace":{"http":{"method":"DELETE","requestUri":"/workspaces/{workspaceId}","responseCode":202},"input":{"type":"structure","required":["workspaceId"],"members":{"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["workspace"],"members":{"workspace":{"shape":"S5"}}},"idempotent":true},"DescribeWorkspace":{"http":{"method":"GET","requestUri":"/workspaces/{workspaceId}","responseCode":200},"input":{"type":"structure","required":["workspaceId"],"members":{"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["workspace"],"members":{"workspace":{"shape":"S5"}}}},"DescribeWorkspaceAuthentication":{"http":{"method":"GET","requestUri":"/workspaces/{workspaceId}/authentication","responseCode":200},"input":{"type":"structure","required":["workspaceId"],"members":{"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["authentication"],"members":{"authentication":{"shape":"S11"}}}},"DisassociateLicense":{"http":{"method":"DELETE","requestUri":"/workspaces/{workspaceId}/licenses/{licenseType}","responseCode":202},"input":{"type":"structure","required":["licenseType","workspaceId"],"members":{"licenseType":{"location":"uri","locationName":"licenseType"},"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["workspace"],"members":{"workspace":{"shape":"S5"}}}},"ListPermissions":{"http":{"method":"GET","requestUri":"/workspaces/{workspaceId}/permissions","responseCode":200},"input":{"type":"structure","required":["workspaceId"],"members":{"groupId":{"location":"querystring","locationName":"groupId"},"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"},"userId":{"location":"querystring","locationName":"userId"},"userType":{"location":"querystring","locationName":"userType"},"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["permissions"],"members":{"nextToken":{},"permissions":{"type":"list","member":{"type":"structure","required":["role","user"],"members":{"role":{},"user":{"shape":"S1s"}}}}}}},"ListWorkspaces":{"http":{"method":"GET","requestUri":"/workspaces","responseCode":200},"input":{"type":"structure","members":{"maxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"nextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","required":["workspaces"],"members":{"nextToken":{},"workspaces":{"type":"list","member":{"type":"structure","required":["authentication","created","endpoint","grafanaVersion","id","modified","status"],"members":{"authentication":{"shape":"S7"},"created":{"type":"timestamp"},"description":{"shape":"Se"},"endpoint":{},"grafanaVersion":{},"id":{},"modified":{"type":"timestamp"},"name":{"shape":"Si"},"notificationDestinations":{"shape":"Sj"},"status":{}}}}}}},"UpdatePermissions":{"http":{"method":"PATCH","requestUri":"/workspaces/{workspaceId}/permissions","responseCode":200},"input":{"type":"structure","required":["updateInstructionBatch","workspaceId"],"members":{"updateInstructionBatch":{"type":"list","member":{"shape":"S20"}},"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["errors"],"members":{"errors":{"type":"list","member":{"type":"structure","required":["causedBy","code","message"],"members":{"causedBy":{"shape":"S20"},"code":{"type":"integer"},"message":{}}}}}}},"UpdateWorkspace":{"http":{"method":"PUT","requestUri":"/workspaces/{workspaceId}","responseCode":202},"input":{"type":"structure","required":["workspaceId"],"members":{"accountAccessType":{},"organizationRoleName":{"shape":"Sl"},"permissionType":{},"stackSetName":{},"workspaceDataSources":{"shape":"Sc"},"workspaceDescription":{"shape":"Se"},"workspaceId":{"location":"uri","locationName":"workspaceId"},"workspaceName":{"shape":"Si"},"workspaceNotificationDestinations":{"shape":"Sj"},"workspaceOrganizationalUnits":{"shape":"Sm"},"workspaceRoleArn":{"shape":"Sr"}}},"output":{"type":"structure","required":["workspace"],"members":{"workspace":{"shape":"S5"}}}},"UpdateWorkspaceAuthentication":{"http":{"requestUri":"/workspaces/{workspaceId}/authentication","responseCode":200},"input":{"type":"structure","required":["authenticationProviders","workspaceId"],"members":{"authenticationProviders":{"shape":"S8"},"samlConfiguration":{"shape":"S15"},"workspaceId":{"location":"uri","locationName":"workspaceId"}}},"output":{"type":"structure","required":["authentication"],"members":{"authentication":{"shape":"S11"}}}}},"shapes":{"S5":{"type":"structure","required":["authentication","created","dataSources","endpoint","grafanaVersion","id","modified","status"],"members":{"accountAccessType":{},"authentication":{"shape":"S7"},"created":{"type":"timestamp"},"dataSources":{"shape":"Sc"},"description":{"shape":"Se"},"endpoint":{},"freeTrialConsumed":{"type":"boolean"},"freeTrialExpiration":{"type":"timestamp"},"grafanaVersion":{},"id":{},"licenseExpiration":{"type":"timestamp"},"licenseType":{},"modified":{"type":"timestamp"},"name":{"shape":"Si"},"notificationDestinations":{"shape":"Sj"},"organizationRoleName":{"shape":"Sl"},"organizationalUnits":{"shape":"Sm"},"permissionType":{},"stackSetName":{},"status":{},"workspaceRoleArn":{"shape":"Sr"}}},"S7":{"type":"structure","required":["providers"],"members":{"providers":{"shape":"S8"},"samlConfigurationStatus":{}}},"S8":{"type":"list","member":{}},"Sc":{"type":"list","member":{}},"Se":{"type":"string","sensitive":true},"Si":{"type":"string","sensitive":true},"Sj":{"type":"list","member":{}},"Sl":{"type":"string","sensitive":true},"Sm":{"type":"list","member":{},"sensitive":true},"Sr":{"type":"string","sensitive":true},"S11":{"type":"structure","required":["providers"],"members":{"awsSso":{"type":"structure","members":{"ssoClientId":{}}},"providers":{"shape":"S8"},"saml":{"type":"structure","required":["status"],"members":{"configuration":{"shape":"S15"},"status":{}}}}},"S15":{"type":"structure","required":["idpMetadata"],"members":{"allowedOrganizations":{"type":"list","member":{}},"assertionAttributes":{"type":"structure","members":{"email":{},"groups":{},"login":{},"name":{},"org":{},"role":{}}},"idpMetadata":{"type":"structure","members":{"url":{},"xml":{}},"union":true},"loginValidityDuration":{"type":"integer"},"roleValues":{"type":"structure","members":{"admin":{"shape":"S1f"},"editor":{"shape":"S1f"}}}}},"S1f":{"type":"list","member":{}},"S1s":{"type":"structure","required":["id","type"],"members":{"id":{},"type":{}}},"S20":{"type":"structure","required":["action","role","users"],"members":{"action":{},"role":{},"users":{"type":"list","member":{"shape":"S1s"}}}}}}
55135
55074
 
55136
55075
  /***/ }),
55137
- /* 1077 */
55076
+ /* 1073 */
55138
55077
  /***/ (function(module, exports) {
55139
55078
 
55140
55079
  module.exports = {"pagination":{"ListPermissions":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"permissions"},"ListWorkspaces":{"input_token":"nextToken","output_token":"nextToken","limit_key":"maxResults","result_key":"workspaces"}}}
55141
55080
 
55142
55081
  /***/ }),
55143
- /* 1078 */
55082
+ /* 1074 */
55144
55083
  /***/ (function(module, exports, __webpack_require__) {
55145
55084
 
55146
55085
  __webpack_require__(2);
@@ -55152,8 +55091,8 @@ return /******/ (function(modules) { // webpackBootstrap
55152
55091
  AWS.Panorama = Service.defineService('panorama', ['2019-07-24']);
55153
55092
  Object.defineProperty(apiLoader.services['panorama'], '2019-07-24', {
55154
55093
  get: function get() {
55155
- var model = __webpack_require__(1079);
55156
- model.paginators = __webpack_require__(1080).pagination;
55094
+ var model = __webpack_require__(1075);
55095
+ model.paginators = __webpack_require__(1076).pagination;
55157
55096
  return model;
55158
55097
  },
55159
55098
  enumerable: true,
@@ -55164,13 +55103,13 @@ return /******/ (function(modules) { // webpackBootstrap
55164
55103
 
55165
55104
 
55166
55105
  /***/ }),
55167
- /* 1079 */
55106
+ /* 1075 */
55168
55107
  /***/ (function(module, exports) {
55169
55108
 
55170
55109
  module.exports = {"version":"2.0","metadata":{"apiVersion":"2019-07-24","endpointPrefix":"panorama","jsonVersion":"1.1","protocol":"rest-json","serviceAbbreviation":"Panorama","serviceFullName":"AWS Panorama","serviceId":"Panorama","signatureVersion":"v4","signingName":"panorama","uid":"panorama-2019-07-24"},"operations":{"CreateApplicationInstance":{"http":{"requestUri":"/application-instances"},"input":{"type":"structure","required":["ManifestPayload","DefaultRuntimeContextDevice"],"members":{"Name":{},"Description":{},"ManifestPayload":{"shape":"S4"},"ManifestOverridesPayload":{"shape":"S6"},"ApplicationInstanceIdToReplace":{},"RuntimeRoleArn":{},"DefaultRuntimeContextDevice":{},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","required":["ApplicationInstanceId"],"members":{"ApplicationInstanceId":{}}}},"CreateJobForDevices":{"http":{"requestUri":"/jobs"},"input":{"type":"structure","required":["DeviceIds","DeviceJobConfig","JobType"],"members":{"DeviceIds":{"type":"list","member":{}},"DeviceJobConfig":{"type":"structure","members":{"OTAJobConfig":{"type":"structure","required":["ImageVersion"],"members":{"ImageVersion":{}}}}},"JobType":{}}},"output":{"type":"structure","required":["Jobs"],"members":{"Jobs":{"type":"list","member":{"type":"structure","members":{"JobId":{},"DeviceId":{}}}}}}},"CreateNodeFromTemplateJob":{"http":{"requestUri":"/packages/template-job"},"input":{"type":"structure","required":["TemplateType","OutputPackageName","OutputPackageVersion","NodeName","TemplateParameters"],"members":{"TemplateType":{},"OutputPackageName":{},"OutputPackageVersion":{},"NodeName":{},"NodeDescription":{},"TemplateParameters":{"shape":"Sv"},"JobTags":{"shape":"Sy"}}},"output":{"type":"structure","required":["JobId"],"members":{"JobId":{}}}},"CreatePackage":{"http":{"requestUri":"/packages"},"input":{"type":"structure","required":["PackageName"],"members":{"PackageName":{},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","required":["StorageLocation"],"members":{"PackageId":{},"Arn":{},"StorageLocation":{"shape":"S16"}}}},"CreatePackageImportJob":{"http":{"requestUri":"/packages/import-jobs"},"input":{"type":"structure","required":["JobType","InputConfig","OutputConfig","ClientToken"],"members":{"JobType":{},"InputConfig":{"shape":"S1b"},"OutputConfig":{"shape":"S1h"},"ClientToken":{},"JobTags":{"shape":"Sy"}}},"output":{"type":"structure","required":["JobId"],"members":{"JobId":{}}}},"DeleteDevice":{"http":{"method":"DELETE","requestUri":"/devices/{DeviceId}"},"input":{"type":"structure","required":["DeviceId"],"members":{"DeviceId":{"location":"uri","locationName":"DeviceId"}}},"output":{"type":"structure","members":{"DeviceId":{}}}},"DeletePackage":{"http":{"method":"DELETE","requestUri":"/packages/{PackageId}"},"input":{"type":"structure","required":["PackageId"],"members":{"PackageId":{"location":"uri","locationName":"PackageId"},"ForceDelete":{"location":"querystring","locationName":"ForceDelete","type":"boolean"}}},"output":{"type":"structure","members":{}}},"DeregisterPackageVersion":{"http":{"method":"DELETE","requestUri":"/packages/{PackageId}/versions/{PackageVersion}/patch/{PatchVersion}"},"input":{"type":"structure","required":["PackageId","PackageVersion","PatchVersion"],"members":{"OwnerAccount":{"location":"querystring","locationName":"OwnerAccount"},"PackageId":{"location":"uri","locationName":"PackageId"},"PackageVersion":{"location":"uri","locationName":"PackageVersion"},"PatchVersion":{"location":"uri","locationName":"PatchVersion"},"UpdatedLatestPatchVersion":{"location":"querystring","locationName":"UpdatedLatestPatchVersion"}}},"output":{"type":"structure","members":{}}},"DescribeApplicationInstance":{"http":{"method":"GET","requestUri":"/application-instances/{applicationInstanceId}"},"input":{"type":"structure","required":["ApplicationInstanceId"],"members":{"ApplicationInstanceId":{"location":"uri","locationName":"applicationInstanceId"}}},"output":{"type":"structure","members":{"Name":{},"Description":{},"DefaultRuntimeContextDevice":{},"DefaultRuntimeContextDeviceName":{},"ApplicationInstanceIdToReplace":{},"RuntimeRoleArn":{},"Status":{},"HealthStatus":{},"StatusDescription":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"ApplicationInstanceId":{},"Arn":{},"Tags":{"shape":"Sb"}}}},"DescribeApplicationInstanceDetails":{"http":{"method":"GET","requestUri":"/application-instances/{applicationInstanceId}/details"},"input":{"type":"structure","required":["ApplicationInstanceId"],"members":{"ApplicationInstanceId":{"location":"uri","locationName":"applicationInstanceId"}}},"output":{"type":"structure","members":{"Name":{},"Description":{},"DefaultRuntimeContextDevice":{},"ManifestPayload":{"shape":"S4"},"ManifestOverridesPayload":{"shape":"S6"},"ApplicationInstanceIdToReplace":{},"CreatedTime":{"type":"timestamp"},"ApplicationInstanceId":{}}}},"DescribeDevice":{"http":{"method":"GET","requestUri":"/devices/{DeviceId}"},"input":{"type":"structure","required":["DeviceId"],"members":{"DeviceId":{"location":"uri","locationName":"DeviceId"}}},"output":{"type":"structure","members":{"DeviceId":{},"Name":{},"Arn":{},"Description":{},"Type":{},"DeviceConnectionStatus":{},"CreatedTime":{"type":"timestamp"},"ProvisioningStatus":{},"LatestSoftware":{},"CurrentSoftware":{},"SerialNumber":{},"Tags":{"shape":"Sb"},"NetworkingConfiguration":{"shape":"S2f"},"CurrentNetworkingStatus":{"type":"structure","members":{"Ethernet0Status":{"shape":"S2p"},"Ethernet1Status":{"shape":"S2p"}}},"LeaseExpirationTime":{"type":"timestamp"}}}},"DescribeDeviceJob":{"http":{"method":"GET","requestUri":"/jobs/{JobId}"},"input":{"type":"structure","required":["JobId"],"members":{"JobId":{"location":"uri","locationName":"JobId"}}},"output":{"type":"structure","members":{"JobId":{},"DeviceId":{},"DeviceArn":{},"DeviceName":{},"DeviceType":{},"ImageVersion":{},"Status":{},"CreatedTime":{"type":"timestamp"}}}},"DescribeNode":{"http":{"method":"GET","requestUri":"/nodes/{NodeId}"},"input":{"type":"structure","required":["NodeId"],"members":{"NodeId":{"location":"uri","locationName":"NodeId"},"OwnerAccount":{"location":"querystring","locationName":"OwnerAccount"}}},"output":{"type":"structure","required":["NodeId","Name","Category","OwnerAccount","PackageName","PackageId","PackageVersion","PatchVersion","NodeInterface","Description","CreatedTime","LastUpdatedTime"],"members":{"NodeId":{},"Name":{},"Category":{},"OwnerAccount":{},"PackageName":{},"PackageId":{},"PackageArn":{},"PackageVersion":{},"PatchVersion":{},"NodeInterface":{"type":"structure","required":["Inputs","Outputs"],"members":{"Inputs":{"type":"list","member":{"type":"structure","members":{"Name":{},"Description":{},"Type":{},"DefaultValue":{},"MaxConnections":{"type":"integer"}}}},"Outputs":{"type":"list","member":{"type":"structure","members":{"Name":{},"Description":{},"Type":{}}}}}},"AssetName":{},"Description":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"DescribeNodeFromTemplateJob":{"http":{"method":"GET","requestUri":"/packages/template-job/{JobId}"},"input":{"type":"structure","required":["JobId"],"members":{"JobId":{"location":"uri","locationName":"JobId"}}},"output":{"type":"structure","required":["JobId","Status","StatusMessage","CreatedTime","LastUpdatedTime","OutputPackageName","OutputPackageVersion","NodeName","TemplateType","TemplateParameters"],"members":{"JobId":{},"Status":{},"StatusMessage":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"OutputPackageName":{},"OutputPackageVersion":{},"NodeName":{},"NodeDescription":{},"TemplateType":{},"TemplateParameters":{"shape":"Sv"},"JobTags":{"shape":"Sy"}}}},"DescribePackage":{"http":{"method":"GET","requestUri":"/packages/metadata/{PackageId}"},"input":{"type":"structure","required":["PackageId"],"members":{"PackageId":{"location":"uri","locationName":"PackageId"}}},"output":{"type":"structure","required":["PackageId","PackageName","Arn","StorageLocation","CreatedTime","Tags"],"members":{"PackageId":{},"PackageName":{},"Arn":{},"StorageLocation":{"shape":"S16"},"ReadAccessPrincipalArns":{"shape":"S3i"},"WriteAccessPrincipalArns":{"shape":"S3i"},"CreatedTime":{"type":"timestamp"},"Tags":{"shape":"Sb"}}}},"DescribePackageImportJob":{"http":{"method":"GET","requestUri":"/packages/import-jobs/{JobId}"},"input":{"type":"structure","required":["JobId"],"members":{"JobId":{"location":"uri","locationName":"JobId"}}},"output":{"type":"structure","required":["JobId","JobType","InputConfig","OutputConfig","Output","CreatedTime","LastUpdatedTime","Status","StatusMessage"],"members":{"JobId":{},"ClientToken":{},"JobType":{},"InputConfig":{"shape":"S1b"},"OutputConfig":{"shape":"S1h"},"Output":{"type":"structure","required":["PackageId","PackageVersion","PatchVersion","OutputS3Location"],"members":{"PackageId":{},"PackageVersion":{},"PatchVersion":{},"OutputS3Location":{"type":"structure","required":["BucketName","ObjectKey"],"members":{"BucketName":{},"ObjectKey":{}}}}},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"},"Status":{},"StatusMessage":{},"JobTags":{"shape":"Sy"}}}},"DescribePackageVersion":{"http":{"method":"GET","requestUri":"/packages/metadata/{PackageId}/versions/{PackageVersion}"},"input":{"type":"structure","required":["PackageId","PackageVersion"],"members":{"OwnerAccount":{"location":"querystring","locationName":"OwnerAccount"},"PackageId":{"location":"uri","locationName":"PackageId"},"PackageVersion":{"location":"uri","locationName":"PackageVersion"},"PatchVersion":{"location":"querystring","locationName":"PatchVersion"}}},"output":{"type":"structure","required":["PackageId","PackageName","PackageVersion","PatchVersion","IsLatestPatch","Status"],"members":{"OwnerAccount":{},"PackageId":{},"PackageArn":{},"PackageName":{},"PackageVersion":{},"PatchVersion":{},"IsLatestPatch":{"type":"boolean"},"Status":{},"StatusDescription":{},"RegisteredTime":{"type":"timestamp"}}}},"ListApplicationInstanceDependencies":{"http":{"method":"GET","requestUri":"/application-instances/{applicationInstanceId}/package-dependencies"},"input":{"type":"structure","required":["ApplicationInstanceId"],"members":{"ApplicationInstanceId":{"location":"uri","locationName":"applicationInstanceId"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"PackageObjects":{"type":"list","member":{"type":"structure","required":["Name","PackageVersion","PatchVersion"],"members":{"Name":{},"PackageVersion":{},"PatchVersion":{}}}},"NextToken":{}}}},"ListApplicationInstanceNodeInstances":{"http":{"method":"GET","requestUri":"/application-instances/{applicationInstanceId}/node-instances"},"input":{"type":"structure","required":["ApplicationInstanceId"],"members":{"ApplicationInstanceId":{"location":"uri","locationName":"applicationInstanceId"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"NodeInstances":{"type":"list","member":{"type":"structure","required":["NodeInstanceId","CurrentStatus"],"members":{"NodeInstanceId":{},"NodeId":{},"PackageName":{},"PackageVersion":{},"PackagePatchVersion":{},"NodeName":{},"CurrentStatus":{}}}},"NextToken":{}}}},"ListApplicationInstances":{"http":{"method":"GET","requestUri":"/application-instances"},"input":{"type":"structure","members":{"DeviceId":{"location":"querystring","locationName":"deviceId"},"StatusFilter":{"location":"querystring","locationName":"statusFilter"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"ApplicationInstances":{"type":"list","member":{"type":"structure","members":{"Name":{},"ApplicationInstanceId":{},"DefaultRuntimeContextDevice":{},"DefaultRuntimeContextDeviceName":{},"Description":{},"Status":{},"HealthStatus":{},"StatusDescription":{},"CreatedTime":{"type":"timestamp"},"Arn":{},"Tags":{"shape":"Sb"}}}},"NextToken":{}}}},"ListDevices":{"http":{"method":"GET","requestUri":"/devices"},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"NextToken"},"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"}}},"output":{"type":"structure","required":["Devices"],"members":{"Devices":{"type":"list","member":{"type":"structure","members":{"DeviceId":{},"Name":{},"CreatedTime":{"type":"timestamp"},"ProvisioningStatus":{},"LastUpdatedTime":{"type":"timestamp"},"LeaseExpirationTime":{"type":"timestamp"}}}},"NextToken":{}}}},"ListDevicesJobs":{"http":{"method":"GET","requestUri":"/jobs"},"input":{"type":"structure","members":{"DeviceId":{"location":"querystring","locationName":"DeviceId"},"NextToken":{"location":"querystring","locationName":"NextToken"},"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"}}},"output":{"type":"structure","members":{"DeviceJobs":{"type":"list","member":{"type":"structure","members":{"DeviceName":{},"DeviceId":{},"JobId":{},"CreatedTime":{"type":"timestamp"}}}},"NextToken":{}}}},"ListNodeFromTemplateJobs":{"http":{"method":"GET","requestUri":"/packages/template-job"},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"NextToken"},"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"}}},"output":{"type":"structure","required":["NodeFromTemplateJobs"],"members":{"NodeFromTemplateJobs":{"type":"list","member":{"type":"structure","members":{"JobId":{},"TemplateType":{},"Status":{},"StatusMessage":{},"CreatedTime":{"type":"timestamp"},"NodeName":{}}}},"NextToken":{}}}},"ListNodes":{"http":{"method":"GET","requestUri":"/nodes"},"input":{"type":"structure","members":{"Category":{"location":"querystring","locationName":"category"},"OwnerAccount":{"location":"querystring","locationName":"ownerAccount"},"PackageName":{"location":"querystring","locationName":"packageName"},"PackageVersion":{"location":"querystring","locationName":"packageVersion"},"PatchVersion":{"location":"querystring","locationName":"patchVersion"},"NextToken":{"location":"querystring","locationName":"nextToken"},"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"}}},"output":{"type":"structure","members":{"Nodes":{"type":"list","member":{"type":"structure","required":["NodeId","Name","Category","PackageName","PackageId","PackageVersion","PatchVersion","CreatedTime"],"members":{"NodeId":{},"Name":{},"Category":{},"OwnerAccount":{},"PackageName":{},"PackageId":{},"PackageArn":{},"PackageVersion":{},"PatchVersion":{},"Description":{},"CreatedTime":{"type":"timestamp"}}}},"NextToken":{}}}},"ListPackageImportJobs":{"http":{"method":"GET","requestUri":"/packages/import-jobs"},"input":{"type":"structure","members":{"NextToken":{"location":"querystring","locationName":"NextToken"},"MaxResults":{"location":"querystring","locationName":"MaxResults","type":"integer"}}},"output":{"type":"structure","required":["PackageImportJobs"],"members":{"PackageImportJobs":{"type":"list","member":{"type":"structure","members":{"JobId":{},"JobType":{},"Status":{},"StatusMessage":{},"CreatedTime":{"type":"timestamp"},"LastUpdatedTime":{"type":"timestamp"}}}},"NextToken":{}}}},"ListPackages":{"http":{"method":"GET","requestUri":"/packages"},"input":{"type":"structure","members":{"MaxResults":{"location":"querystring","locationName":"maxResults","type":"integer"},"NextToken":{"location":"querystring","locationName":"nextToken"}}},"output":{"type":"structure","members":{"Packages":{"type":"list","member":{"type":"structure","members":{"PackageId":{},"PackageName":{},"Arn":{},"CreatedTime":{"type":"timestamp"},"Tags":{"shape":"Sb"}}}},"NextToken":{}}}},"ListTagsForResource":{"http":{"method":"GET","requestUri":"/tags/{ResourceArn}"},"input":{"type":"structure","required":["ResourceArn"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"}}},"output":{"type":"structure","members":{"Tags":{"shape":"Sb"}}}},"ProvisionDevice":{"http":{"requestUri":"/devices"},"input":{"type":"structure","required":["Name"],"members":{"Name":{},"Description":{},"Tags":{"shape":"Sb"},"NetworkingConfiguration":{"shape":"S2f"}}},"output":{"type":"structure","required":["Arn","Status"],"members":{"DeviceId":{},"Arn":{},"Status":{},"Certificates":{"type":"blob"},"IotThingName":{}}}},"RegisterPackageVersion":{"http":{"method":"PUT","requestUri":"/packages/{PackageId}/versions/{PackageVersion}/patch/{PatchVersion}"},"input":{"type":"structure","required":["PackageId","PackageVersion","PatchVersion"],"members":{"OwnerAccount":{},"PackageId":{"location":"uri","locationName":"PackageId"},"PackageVersion":{"location":"uri","locationName":"PackageVersion"},"PatchVersion":{"location":"uri","locationName":"PatchVersion"},"MarkLatest":{"type":"boolean"}}},"output":{"type":"structure","members":{}}},"RemoveApplicationInstance":{"http":{"method":"DELETE","requestUri":"/application-instances/{applicationInstanceId}"},"input":{"type":"structure","required":["ApplicationInstanceId"],"members":{"ApplicationInstanceId":{"location":"uri","locationName":"applicationInstanceId"}}},"output":{"type":"structure","members":{}}},"TagResource":{"http":{"requestUri":"/tags/{ResourceArn}"},"input":{"type":"structure","required":["ResourceArn","Tags"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"Tags":{"shape":"Sb"}}},"output":{"type":"structure","members":{}}},"UntagResource":{"http":{"method":"DELETE","requestUri":"/tags/{ResourceArn}"},"input":{"type":"structure","required":["ResourceArn","TagKeys"],"members":{"ResourceArn":{"location":"uri","locationName":"ResourceArn"},"TagKeys":{"location":"querystring","locationName":"tagKeys","type":"list","member":{}}}},"output":{"type":"structure","members":{}}},"UpdateDeviceMetadata":{"http":{"method":"PUT","requestUri":"/devices/{DeviceId}"},"input":{"type":"structure","required":["DeviceId"],"members":{"DeviceId":{"location":"uri","locationName":"DeviceId"},"Description":{}}},"output":{"type":"structure","members":{"DeviceId":{}}}}},"shapes":{"S4":{"type":"structure","members":{"PayloadData":{}},"union":true},"S6":{"type":"structure","members":{"PayloadData":{}},"union":true},"Sb":{"type":"map","key":{},"value":{}},"Sv":{"type":"map","key":{},"value":{"type":"string","sensitive":true}},"Sy":{"type":"list","member":{"type":"structure","required":["ResourceType","Tags"],"members":{"ResourceType":{},"Tags":{"shape":"Sb"}}}},"S16":{"type":"structure","required":["Bucket","RepoPrefixLocation","GeneratedPrefixLocation","BinaryPrefixLocation","ManifestPrefixLocation"],"members":{"Bucket":{},"RepoPrefixLocation":{},"GeneratedPrefixLocation":{},"BinaryPrefixLocation":{},"ManifestPrefixLocation":{}}},"S1b":{"type":"structure","members":{"PackageVersionInputConfig":{"type":"structure","required":["S3Location"],"members":{"S3Location":{"type":"structure","required":["BucketName","ObjectKey"],"members":{"Region":{},"BucketName":{},"ObjectKey":{}}}}}}},"S1h":{"type":"structure","members":{"PackageVersionOutputConfig":{"type":"structure","required":["PackageName","PackageVersion"],"members":{"PackageName":{},"PackageVersion":{},"MarkLatest":{"type":"boolean"}}}}},"S2f":{"type":"structure","members":{"Ethernet0":{"shape":"S2g"},"Ethernet1":{"shape":"S2g"}}},"S2g":{"type":"structure","required":["ConnectionType"],"members":{"ConnectionType":{},"StaticIpConnectionInfo":{"type":"structure","required":["IpAddress","Mask","Dns","DefaultGateway"],"members":{"IpAddress":{},"Mask":{},"Dns":{"type":"list","member":{}},"DefaultGateway":{}}}}},"S2p":{"type":"structure","members":{"IpAddress":{},"ConnectionStatus":{},"HwAddress":{}}},"S3i":{"type":"list","member":{}}}}
55171
55110
 
55172
55111
  /***/ }),
55173
- /* 1080 */
55112
+ /* 1076 */
55174
55113
  /***/ (function(module, exports) {
55175
55114
 
55176
55115
  module.exports = {"pagination":{"ListApplicationInstanceDependencies":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListApplicationInstanceNodeInstances":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListApplicationInstances":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListDevices":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListDevicesJobs":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListNodeFromTemplateJobs":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListNodes":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListPackageImportJobs":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"},"ListPackages":{"input_token":"NextToken","output_token":"NextToken","limit_key":"MaxResults"}}}