aws-sdk-core 2.11.195 → 2.11.196

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 94cd75099776e26c0e58f3fbb337db72bc0dc841
4
- data.tar.gz: 2374c0497d484b076a251671a727b6ff92127aa0
3
+ metadata.gz: 042cb1c0e0ac1a3aa0876ecc16a48f88b0b0bd86
4
+ data.tar.gz: f013601c8dae2fe2d451a059da81a12181aad9c2
5
5
  SHA512:
6
- metadata.gz: aafc3667310c5a0d43692f64cf23fe8139bf9c4abe80def7e4f3089e0df5dd4e02db52cdec4c8dff756b72eb6df9530cd0b2c2f26e2620d5b8fbdaa11e7066c3
7
- data.tar.gz: 4f6ff12326b0afabd23b840e781600df25d7f1e6cd95c6ab91dedea28e8a6ea18750fd4c346059a815893fcd57696d7c6f0db63350ee2082061b5baab59e315b
6
+ metadata.gz: c14eeb835332d9644c4e62efb53a8322f749cb351893c9c8601e91010c8ed10669f13a92744b941007ee61725a72483d52b489827ca6153702245c4e05f07e47
7
+ data.tar.gz: a8f33b888f372bee485d6231102734d165f25d38992dfe0b711c780ce08aa0094871c2c80efde34c793d81d8f14f97c3f8f01ce64b262207cf3922196b827743
@@ -1749,6 +1749,22 @@
1749
1749
  {"shape":"InternalErrorException"}
1750
1750
  ]
1751
1751
  },
1752
+ "UpdateUserPoolDomain":{
1753
+ "name":"UpdateUserPoolDomain",
1754
+ "http":{
1755
+ "method":"POST",
1756
+ "requestUri":"/"
1757
+ },
1758
+ "input":{"shape":"UpdateUserPoolDomainRequest"},
1759
+ "output":{"shape":"UpdateUserPoolDomainResponse"},
1760
+ "errors":[
1761
+ {"shape":"InvalidParameterException"},
1762
+ {"shape":"NotAuthorizedException"},
1763
+ {"shape":"ResourceNotFoundException"},
1764
+ {"shape":"TooManyRequestsException"},
1765
+ {"shape":"InternalErrorException"}
1766
+ ]
1767
+ },
1752
1768
  "VerifySoftwareToken":{
1753
1769
  "name":"VerifySoftwareToken",
1754
1770
  "http":{
@@ -4781,6 +4797,25 @@
4781
4797
  "UserPoolClient":{"shape":"UserPoolClientType"}
4782
4798
  }
4783
4799
  },
4800
+ "UpdateUserPoolDomainRequest":{
4801
+ "type":"structure",
4802
+ "required":[
4803
+ "Domain",
4804
+ "UserPoolId",
4805
+ "CustomDomainConfig"
4806
+ ],
4807
+ "members":{
4808
+ "Domain":{"shape":"DomainType"},
4809
+ "UserPoolId":{"shape":"UserPoolIdType"},
4810
+ "CustomDomainConfig":{"shape":"CustomDomainConfigType"}
4811
+ }
4812
+ },
4813
+ "UpdateUserPoolDomainResponse":{
4814
+ "type":"structure",
4815
+ "members":{
4816
+ "CloudFrontDomain":{"shape":"DomainType"}
4817
+ }
4818
+ },
4784
4819
  "UpdateUserPoolRequest":{
4785
4820
  "type":"structure",
4786
4821
  "required":["UserPoolId"],
@@ -617,6 +617,36 @@
617
617
  {"shape":"JobNotFoundException"},
618
618
  {"shape":"InternalServerException"}
619
619
  ]
620
+ },
621
+ "StopTrainingDocumentClassifier":{
622
+ "name":"StopTrainingDocumentClassifier",
623
+ "http":{
624
+ "method":"POST",
625
+ "requestUri":"/"
626
+ },
627
+ "input":{"shape":"StopTrainingDocumentClassifierRequest"},
628
+ "output":{"shape":"StopTrainingDocumentClassifierResponse"},
629
+ "errors":[
630
+ {"shape":"InvalidRequestException"},
631
+ {"shape":"TooManyRequestsException"},
632
+ {"shape":"ResourceNotFoundException"},
633
+ {"shape":"InternalServerException"}
634
+ ]
635
+ },
636
+ "StopTrainingEntityRecognizer":{
637
+ "name":"StopTrainingEntityRecognizer",
638
+ "http":{
639
+ "method":"POST",
640
+ "requestUri":"/"
641
+ },
642
+ "input":{"shape":"StopTrainingEntityRecognizerRequest"},
643
+ "output":{"shape":"StopTrainingEntityRecognizerResponse"},
644
+ "errors":[
645
+ {"shape":"InvalidRequestException"},
646
+ {"shape":"TooManyRequestsException"},
647
+ {"shape":"ResourceNotFoundException"},
648
+ {"shape":"InternalServerException"}
649
+ ]
620
650
  }
621
651
  },
622
652
  "shapes":{
@@ -1627,6 +1657,8 @@
1627
1657
  "SUBMITTED",
1628
1658
  "TRAINING",
1629
1659
  "DELETING",
1660
+ "STOP_REQUESTED",
1661
+ "STOPPED",
1630
1662
  "IN_ERROR",
1631
1663
  "TRAINED"
1632
1664
  ]
@@ -1968,6 +2000,30 @@
1968
2000
  "JobStatus":{"shape":"JobStatus"}
1969
2001
  }
1970
2002
  },
2003
+ "StopTrainingDocumentClassifierRequest":{
2004
+ "type":"structure",
2005
+ "required":["DocumentClassifierArn"],
2006
+ "members":{
2007
+ "DocumentClassifierArn":{"shape":"DocumentClassifierArn"}
2008
+ }
2009
+ },
2010
+ "StopTrainingDocumentClassifierResponse":{
2011
+ "type":"structure",
2012
+ "members":{
2013
+ }
2014
+ },
2015
+ "StopTrainingEntityRecognizerRequest":{
2016
+ "type":"structure",
2017
+ "required":["EntityRecognizerArn"],
2018
+ "members":{
2019
+ "EntityRecognizerArn":{"shape":"EntityRecognizerArn"}
2020
+ }
2021
+ },
2022
+ "StopTrainingEntityRecognizerResponse":{
2023
+ "type":"structure",
2024
+ "members":{
2025
+ }
2026
+ },
1971
2027
  "String":{
1972
2028
  "type":"string",
1973
2029
  "min":1
@@ -554,6 +554,7 @@
554
554
  },
555
555
  "ErrorCode":{"type":"string"},
556
556
  "ErrorMessage":{"type":"string"},
557
+ "ErrorOutputPrefix":{"type":"string"},
557
558
  "ExtendedS3DestinationConfiguration":{
558
559
  "type":"structure",
559
560
  "required":[
@@ -564,6 +565,7 @@
564
565
  "RoleARN":{"shape":"RoleARN"},
565
566
  "BucketARN":{"shape":"BucketARN"},
566
567
  "Prefix":{"shape":"Prefix"},
568
+ "ErrorOutputPrefix":{"shape":"ErrorOutputPrefix"},
567
569
  "BufferingHints":{"shape":"BufferingHints"},
568
570
  "CompressionFormat":{"shape":"CompressionFormat"},
569
571
  "EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
@@ -587,6 +589,7 @@
587
589
  "RoleARN":{"shape":"RoleARN"},
588
590
  "BucketARN":{"shape":"BucketARN"},
589
591
  "Prefix":{"shape":"Prefix"},
592
+ "ErrorOutputPrefix":{"shape":"ErrorOutputPrefix"},
590
593
  "BufferingHints":{"shape":"BufferingHints"},
591
594
  "CompressionFormat":{"shape":"CompressionFormat"},
592
595
  "EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
@@ -603,6 +606,7 @@
603
606
  "RoleARN":{"shape":"RoleARN"},
604
607
  "BucketARN":{"shape":"BucketARN"},
605
608
  "Prefix":{"shape":"Prefix"},
609
+ "ErrorOutputPrefix":{"shape":"ErrorOutputPrefix"},
606
610
  "BufferingHints":{"shape":"BufferingHints"},
607
611
  "CompressionFormat":{"shape":"CompressionFormat"},
608
612
  "EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
@@ -1107,6 +1111,7 @@
1107
1111
  "RoleARN":{"shape":"RoleARN"},
1108
1112
  "BucketARN":{"shape":"BucketARN"},
1109
1113
  "Prefix":{"shape":"Prefix"},
1114
+ "ErrorOutputPrefix":{"shape":"ErrorOutputPrefix"},
1110
1115
  "BufferingHints":{"shape":"BufferingHints"},
1111
1116
  "CompressionFormat":{"shape":"CompressionFormat"},
1112
1117
  "EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
@@ -1126,6 +1131,7 @@
1126
1131
  "RoleARN":{"shape":"RoleARN"},
1127
1132
  "BucketARN":{"shape":"BucketARN"},
1128
1133
  "Prefix":{"shape":"Prefix"},
1134
+ "ErrorOutputPrefix":{"shape":"ErrorOutputPrefix"},
1129
1135
  "BufferingHints":{"shape":"BufferingHints"},
1130
1136
  "CompressionFormat":{"shape":"CompressionFormat"},
1131
1137
  "EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
@@ -1138,6 +1144,7 @@
1138
1144
  "RoleARN":{"shape":"RoleARN"},
1139
1145
  "BucketARN":{"shape":"BucketARN"},
1140
1146
  "Prefix":{"shape":"Prefix"},
1147
+ "ErrorOutputPrefix":{"shape":"ErrorOutputPrefix"},
1141
1148
  "BufferingHints":{"shape":"BufferingHints"},
1142
1149
  "CompressionFormat":{"shape":"CompressionFormat"},
1143
1150
  "EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
@@ -3719,6 +3719,10 @@
3719
3719
  "shape": "H264SpatialAq",
3720
3720
  "locationName": "spatialAq"
3721
3721
  },
3722
+ "SubgopLength": {
3723
+ "shape": "H264SubGopLength",
3724
+ "locationName": "subgopLength"
3725
+ },
3722
3726
  "Syntax": {
3723
3727
  "shape": "H264Syntax",
3724
3728
  "locationName": "syntax"
@@ -3740,6 +3744,13 @@
3740
3744
  "ENABLED"
3741
3745
  ]
3742
3746
  },
3747
+ "H264SubGopLength": {
3748
+ "type": "string",
3749
+ "enum": [
3750
+ "DYNAMIC",
3751
+ "FIXED"
3752
+ ]
3753
+ },
3743
3754
  "H264Syntax": {
3744
3755
  "type": "string",
3745
3756
  "enum": [
@@ -4202,6 +4213,18 @@
4202
4213
  "TDRL"
4203
4214
  ]
4204
4215
  },
4216
+ "HlsTimedMetadataScheduleActionSettings": {
4217
+ "type": "structure",
4218
+ "members": {
4219
+ "Id3": {
4220
+ "shape": "__string",
4221
+ "locationName": "id3"
4222
+ }
4223
+ },
4224
+ "required": [
4225
+ "Id3"
4226
+ ]
4227
+ },
4205
4228
  "HlsTsFileMode": {
4206
4229
  "type": "string",
4207
4230
  "enum": [
@@ -4421,13 +4444,6 @@
4421
4444
  "PAUSE_OUTPUT"
4422
4445
  ]
4423
4446
  },
4424
- "InputLossActionForRtmpOut": {
4425
- "type": "string",
4426
- "enum": [
4427
- "EMIT_OUTPUT",
4428
- "PAUSE_OUTPUT"
4429
- ]
4430
- },
4431
4447
  "InputLossActionForUdpOut": {
4432
4448
  "type": "string",
4433
4449
  "enum": [
@@ -6194,6 +6210,10 @@
6194
6210
  "ScheduleActionSettings": {
6195
6211
  "type": "structure",
6196
6212
  "members": {
6213
+ "HlsTimedMetadataSettings": {
6214
+ "shape": "HlsTimedMetadataScheduleActionSettings",
6215
+ "locationName": "hlsTimedMetadataSettings"
6216
+ },
6197
6217
  "InputSwitchSettings": {
6198
6218
  "shape": "InputSwitchScheduleActionSettings",
6199
6219
  "locationName": "inputSwitchSettings"
@@ -249,7 +249,8 @@
249
249
  "en-GB",
250
250
  "de-DE",
251
251
  "pt-BR",
252
- "fr-FR"
252
+ "fr-FR",
253
+ "it-IT"
253
254
  ]
254
255
  },
255
256
  "LimitExceededException":{
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.195'
2
+ VERSION = '2.11.196'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.195
4
+ version: 2.11.196
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-19 00:00:00.000000000 Z
11
+ date: 2018-12-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath