aws-sdk-core 2.11.346 → 2.11.347

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 832c299cc0828503e950b519adf0ab62c8289168
4
- data.tar.gz: be7a10434002c9abd5852ba7618e8d4cca8a84bb
3
+ metadata.gz: 5408924e68e7cd823354a459af8cdcd317db50f0
4
+ data.tar.gz: 58d933c45d73a2360a7989b7906f5a66abebda2f
5
5
  SHA512:
6
- metadata.gz: b124341d329f9ec4b65e085050300adb21e18581e93ff1e05079e8de98f6fd71370f19265fbe43118f35649eb2e33c38ec10a2cdebfaae8646f10a2325817b2d
7
- data.tar.gz: 7a956856b41dd87645a5883d6d08f39fb54056ebc811201ae8e198c70975f31c98d74cd8a62856691f32442150d07912ac7ad7ebbb7a5b2af9809e82e8d7f77c
6
+ metadata.gz: f07a262596ad306020c2895cd90edfd4cd2a6dfb8e7a35900607a9c9d6ce6dbd707ea2504646c80c7b1b59584417acedddc9ed1b7edbf8e894daa6e2c10b29da
7
+ data.tar.gz: 81bc7dc9980a6502af844c194863a83522e8ac9e7f1f0e3b4d2e68f5ac5d6859fd1144412d51c74b1ab04d6ed8d9a139ca1494dab808cb6749d68b3f5476dd84
@@ -174,6 +174,7 @@
174
174
  "roleArn":{"shape":"String"},
175
175
  "resourcesVpcConfig":{"shape":"VpcConfigResponse"},
176
176
  "logging":{"shape":"Logging"},
177
+ "identity":{"shape":"Identity"},
177
178
  "status":{"shape":"ClusterStatus"},
178
179
  "certificateAuthority":{"shape":"Certificate"},
179
180
  "clientRequestToken":{"shape":"String"},
@@ -304,6 +305,12 @@
304
305
  "type":"list",
305
306
  "member":{"shape":"ErrorDetail"}
306
307
  },
308
+ "Identity":{
309
+ "type":"structure",
310
+ "members":{
311
+ "oidc":{"shape":"OIDC"}
312
+ }
313
+ },
307
314
  "InvalidParameterException":{
308
315
  "type":"structure",
309
316
  "members":{
@@ -415,6 +422,12 @@
415
422
  "clusterLogging":{"shape":"LogSetups"}
416
423
  }
417
424
  },
425
+ "OIDC":{
426
+ "type":"structure",
427
+ "members":{
428
+ "issuer":{"shape":"String"}
429
+ }
430
+ },
418
431
  "ResourceInUseException":{
419
432
  "type":"structure",
420
433
  "members":{
@@ -1,4 +1,16 @@
1
1
  {
2
2
  "pagination": {
3
+ "ListClusters": {
4
+ "input_token": "nextToken",
5
+ "limit_key": "maxResults",
6
+ "output_token": "nextToken",
7
+ "result_key": "clusters"
8
+ },
9
+ "ListUpdates": {
10
+ "input_token": "nextToken",
11
+ "limit_key": "maxResults",
12
+ "output_token": "nextToken",
13
+ "result_key": "updateIds"
14
+ }
3
15
  }
4
- }
16
+ }
@@ -744,6 +744,11 @@
744
744
  "executionSucceededEventDetails":{"shape":"ExecutionSucceededEventDetails"},
745
745
  "executionAbortedEventDetails":{"shape":"ExecutionAbortedEventDetails"},
746
746
  "executionTimedOutEventDetails":{"shape":"ExecutionTimedOutEventDetails"},
747
+ "mapStateStartedEventDetails":{"shape":"MapStateStartedEventDetails"},
748
+ "mapIterationStartedEventDetails":{"shape":"MapIterationEventDetails"},
749
+ "mapIterationSucceededEventDetails":{"shape":"MapIterationEventDetails"},
750
+ "mapIterationFailedEventDetails":{"shape":"MapIterationEventDetails"},
751
+ "mapIterationAbortedEventDetails":{"shape":"MapIterationEventDetails"},
747
752
  "lambdaFunctionFailedEventDetails":{"shape":"LambdaFunctionFailedEventDetails"},
748
753
  "lambdaFunctionScheduleFailedEventDetails":{"shape":"LambdaFunctionScheduleFailedEventDetails"},
749
754
  "lambdaFunctionScheduledEventDetails":{"shape":"LambdaFunctionScheduledEventDetails"},
@@ -762,47 +767,57 @@
762
767
  "type":"string",
763
768
  "enum":[
764
769
  "ActivityFailed",
765
- "ActivityScheduleFailed",
766
770
  "ActivityScheduled",
771
+ "ActivityScheduleFailed",
767
772
  "ActivityStarted",
768
773
  "ActivitySucceeded",
769
774
  "ActivityTimedOut",
770
775
  "ChoiceStateEntered",
771
776
  "ChoiceStateExited",
772
- "TaskFailed",
773
- "TaskScheduled",
774
- "TaskStartFailed",
775
- "TaskStarted",
776
- "TaskSubmitFailed",
777
- "TaskSubmitted",
778
- "TaskSucceeded",
779
- "TaskTimedOut",
777
+ "ExecutionAborted",
780
778
  "ExecutionFailed",
781
779
  "ExecutionStarted",
782
780
  "ExecutionSucceeded",
783
- "ExecutionAborted",
784
781
  "ExecutionTimedOut",
785
782
  "FailStateEntered",
786
783
  "LambdaFunctionFailed",
787
- "LambdaFunctionScheduleFailed",
788
784
  "LambdaFunctionScheduled",
789
- "LambdaFunctionStartFailed",
785
+ "LambdaFunctionScheduleFailed",
790
786
  "LambdaFunctionStarted",
787
+ "LambdaFunctionStartFailed",
791
788
  "LambdaFunctionSucceeded",
792
789
  "LambdaFunctionTimedOut",
793
- "SucceedStateEntered",
794
- "SucceedStateExited",
795
- "TaskStateAborted",
796
- "TaskStateEntered",
797
- "TaskStateExited",
798
- "PassStateEntered",
799
- "PassStateExited",
790
+ "MapIterationAborted",
791
+ "MapIterationFailed",
792
+ "MapIterationStarted",
793
+ "MapIterationSucceeded",
794
+ "MapStateAborted",
795
+ "MapStateEntered",
796
+ "MapStateExited",
797
+ "MapStateFailed",
798
+ "MapStateStarted",
799
+ "MapStateSucceeded",
800
800
  "ParallelStateAborted",
801
801
  "ParallelStateEntered",
802
802
  "ParallelStateExited",
803
803
  "ParallelStateFailed",
804
804
  "ParallelStateStarted",
805
805
  "ParallelStateSucceeded",
806
+ "PassStateEntered",
807
+ "PassStateExited",
808
+ "SucceedStateEntered",
809
+ "SucceedStateExited",
810
+ "TaskFailed",
811
+ "TaskScheduled",
812
+ "TaskStarted",
813
+ "TaskStartFailed",
814
+ "TaskStateAborted",
815
+ "TaskStateEntered",
816
+ "TaskStateExited",
817
+ "TaskSubmitFailed",
818
+ "TaskSubmitted",
819
+ "TaskSucceeded",
820
+ "TaskTimedOut",
806
821
  "WaitStateAborted",
807
822
  "WaitStateEntered",
808
823
  "WaitStateExited"
@@ -922,7 +937,7 @@
922
937
  "stateMachineArn":{"shape":"Arn"},
923
938
  "statusFilter":{"shape":"ExecutionStatus"},
924
939
  "maxResults":{"shape":"PageSize"},
925
- "nextToken":{"shape":"PageToken"}
940
+ "nextToken":{"shape":"ListExecutionsPageToken"}
926
941
  }
927
942
  },
928
943
  "ListExecutionsOutput":{
@@ -930,9 +945,14 @@
930
945
  "required":["executions"],
931
946
  "members":{
932
947
  "executions":{"shape":"ExecutionList"},
933
- "nextToken":{"shape":"PageToken"}
948
+ "nextToken":{"shape":"ListExecutionsPageToken"}
934
949
  }
935
950
  },
951
+ "ListExecutionsPageToken":{
952
+ "type":"string",
953
+ "max":3096,
954
+ "min":1
955
+ },
936
956
  "ListStateMachinesInput":{
937
957
  "type":"structure",
938
958
  "members":{
@@ -961,6 +981,19 @@
961
981
  "tags":{"shape":"TagList"}
962
982
  }
963
983
  },
984
+ "MapIterationEventDetails":{
985
+ "type":"structure",
986
+ "members":{
987
+ "Name":{"shape":"Name"},
988
+ "Index":{"shape":"UnsignedInteger"}
989
+ }
990
+ },
991
+ "MapStateStartedEventDetails":{
992
+ "type":"structure",
993
+ "members":{
994
+ "Length":{"shape":"UnsignedInteger"}
995
+ }
996
+ },
964
997
  "MissingRequiredParameter":{
965
998
  "type":"structure",
966
999
  "members":{
@@ -1336,6 +1369,10 @@
1336
1369
  },
1337
1370
  "exception":true
1338
1371
  },
1372
+ "UnsignedInteger":{
1373
+ "type":"integer",
1374
+ "min":0
1375
+ },
1339
1376
  "UntagResourceInput":{
1340
1377
  "type":"structure",
1341
1378
  "required":[
@@ -376,7 +376,6 @@
376
376
  "required":[
377
377
  "TranscriptionJobName",
378
378
  "LanguageCode",
379
- "MediaFormat",
380
379
  "Media"
381
380
  ],
382
381
  "members":{
@@ -1009,6 +1009,7 @@
1009
1009
  },
1010
1010
  "hostname" : "datasync-fips.us-west-2.amazonaws.com"
1011
1011
  },
1012
+ "me-south-1" : { },
1012
1013
  "us-east-1" : { },
1013
1014
  "us-east-2" : { },
1014
1015
  "us-west-1" : { },
@@ -4398,6 +4399,7 @@
4398
4399
  },
4399
4400
  "ram" : {
4400
4401
  "endpoints" : {
4402
+ "us-gov-east-1" : { },
4401
4403
  "us-gov-west-1" : { }
4402
4404
  }
4403
4405
  },
@@ -4628,6 +4630,498 @@
4628
4630
  }
4629
4631
  }
4630
4632
  }
4633
+ }, {
4634
+ "defaults" : {
4635
+ "hostname" : "{service}.{region}.{dnsSuffix}",
4636
+ "protocols" : [ "https" ],
4637
+ "signatureVersions" : [ "v4" ]
4638
+ },
4639
+ "dnsSuffix" : "c2s.ic.gov",
4640
+ "partition" : "aws-iso",
4641
+ "partitionName" : "AWS ISO (US)",
4642
+ "regionRegex" : "^us\\-iso\\-\\w+\\-\\d+$",
4643
+ "regions" : {
4644
+ "us-iso-east-1" : {
4645
+ "description" : "US ISO East"
4646
+ }
4647
+ },
4648
+ "services" : {
4649
+ "api.ecr" : {
4650
+ "endpoints" : {
4651
+ "us-iso-east-1" : {
4652
+ "credentialScope" : {
4653
+ "region" : "us-iso-east-1"
4654
+ },
4655
+ "hostname" : "api.ecr.us-iso-east-1.c2s.ic.gov"
4656
+ }
4657
+ }
4658
+ },
4659
+ "application-autoscaling" : {
4660
+ "defaults" : {
4661
+ "credentialScope" : {
4662
+ "service" : "application-autoscaling"
4663
+ },
4664
+ "hostname" : "autoscaling.{region}.amazonaws.com",
4665
+ "protocols" : [ "http", "https" ]
4666
+ },
4667
+ "endpoints" : {
4668
+ "us-iso-east-1" : { }
4669
+ }
4670
+ },
4671
+ "autoscaling" : {
4672
+ "endpoints" : {
4673
+ "us-iso-east-1" : {
4674
+ "protocols" : [ "http", "https" ]
4675
+ }
4676
+ }
4677
+ },
4678
+ "cloudformation" : {
4679
+ "endpoints" : {
4680
+ "us-iso-east-1" : { }
4681
+ }
4682
+ },
4683
+ "cloudtrail" : {
4684
+ "endpoints" : {
4685
+ "us-iso-east-1" : { }
4686
+ }
4687
+ },
4688
+ "codedeploy" : {
4689
+ "endpoints" : {
4690
+ "us-iso-east-1" : { }
4691
+ }
4692
+ },
4693
+ "config" : {
4694
+ "endpoints" : {
4695
+ "us-iso-east-1" : { }
4696
+ }
4697
+ },
4698
+ "datapipeline" : {
4699
+ "endpoints" : {
4700
+ "us-iso-east-1" : { }
4701
+ }
4702
+ },
4703
+ "directconnect" : {
4704
+ "endpoints" : {
4705
+ "us-iso-east-1" : { }
4706
+ }
4707
+ },
4708
+ "dms" : {
4709
+ "endpoints" : {
4710
+ "us-iso-east-1" : { }
4711
+ }
4712
+ },
4713
+ "ds" : {
4714
+ "endpoints" : {
4715
+ "us-iso-east-1" : { }
4716
+ }
4717
+ },
4718
+ "dynamodb" : {
4719
+ "endpoints" : {
4720
+ "us-iso-east-1" : {
4721
+ "protocols" : [ "http", "https" ]
4722
+ }
4723
+ }
4724
+ },
4725
+ "ec2" : {
4726
+ "endpoints" : {
4727
+ "us-iso-east-1" : { }
4728
+ }
4729
+ },
4730
+ "ecs" : {
4731
+ "endpoints" : {
4732
+ "us-iso-east-1" : { }
4733
+ }
4734
+ },
4735
+ "elasticache" : {
4736
+ "endpoints" : {
4737
+ "us-iso-east-1" : { }
4738
+ }
4739
+ },
4740
+ "elasticloadbalancing" : {
4741
+ "endpoints" : {
4742
+ "us-iso-east-1" : {
4743
+ "protocols" : [ "http", "https" ]
4744
+ }
4745
+ }
4746
+ },
4747
+ "elasticmapreduce" : {
4748
+ "endpoints" : {
4749
+ "us-iso-east-1" : {
4750
+ "protocols" : [ "https" ]
4751
+ }
4752
+ }
4753
+ },
4754
+ "events" : {
4755
+ "endpoints" : {
4756
+ "us-iso-east-1" : { }
4757
+ }
4758
+ },
4759
+ "glacier" : {
4760
+ "endpoints" : {
4761
+ "us-iso-east-1" : {
4762
+ "protocols" : [ "http", "https" ]
4763
+ }
4764
+ }
4765
+ },
4766
+ "health" : {
4767
+ "endpoints" : {
4768
+ "us-iso-east-1" : { }
4769
+ }
4770
+ },
4771
+ "iam" : {
4772
+ "endpoints" : {
4773
+ "aws-iso-global" : {
4774
+ "credentialScope" : {
4775
+ "region" : "us-iso-east-1"
4776
+ },
4777
+ "hostname" : "iam.us-iso-east-1.c2s.ic.gov"
4778
+ }
4779
+ },
4780
+ "isRegionalized" : false,
4781
+ "partitionEndpoint" : "aws-iso-global"
4782
+ },
4783
+ "kinesis" : {
4784
+ "endpoints" : {
4785
+ "us-iso-east-1" : { }
4786
+ }
4787
+ },
4788
+ "kms" : {
4789
+ "endpoints" : {
4790
+ "ProdFips" : {
4791
+ "credentialScope" : {
4792
+ "region" : "us-iso-east-1"
4793
+ },
4794
+ "hostname" : "kms-fips.us-iso-east-1.c2s.ic.gov"
4795
+ },
4796
+ "us-iso-east-1" : { }
4797
+ }
4798
+ },
4799
+ "lambda" : {
4800
+ "endpoints" : {
4801
+ "us-iso-east-1" : { }
4802
+ }
4803
+ },
4804
+ "logs" : {
4805
+ "endpoints" : {
4806
+ "us-iso-east-1" : { }
4807
+ }
4808
+ },
4809
+ "monitoring" : {
4810
+ "endpoints" : {
4811
+ "us-iso-east-1" : { }
4812
+ }
4813
+ },
4814
+ "rds" : {
4815
+ "endpoints" : {
4816
+ "us-iso-east-1" : { }
4817
+ }
4818
+ },
4819
+ "redshift" : {
4820
+ "endpoints" : {
4821
+ "us-iso-east-1" : { }
4822
+ }
4823
+ },
4824
+ "s3" : {
4825
+ "defaults" : {
4826
+ "signatureVersions" : [ "s3v4" ]
4827
+ },
4828
+ "endpoints" : {
4829
+ "us-iso-east-1" : {
4830
+ "protocols" : [ "http", "https" ],
4831
+ "signatureVersions" : [ "s3v4" ]
4832
+ }
4833
+ }
4834
+ },
4835
+ "snowball" : {
4836
+ "endpoints" : {
4837
+ "us-iso-east-1" : { }
4838
+ }
4839
+ },
4840
+ "sns" : {
4841
+ "endpoints" : {
4842
+ "us-iso-east-1" : {
4843
+ "protocols" : [ "http", "https" ]
4844
+ }
4845
+ }
4846
+ },
4847
+ "sqs" : {
4848
+ "endpoints" : {
4849
+ "us-iso-east-1" : {
4850
+ "protocols" : [ "http", "https" ]
4851
+ }
4852
+ }
4853
+ },
4854
+ "states" : {
4855
+ "endpoints" : {
4856
+ "us-iso-east-1" : { }
4857
+ }
4858
+ },
4859
+ "streams.dynamodb" : {
4860
+ "defaults" : {
4861
+ "credentialScope" : {
4862
+ "service" : "dynamodb"
4863
+ },
4864
+ "protocols" : [ "http", "https" ]
4865
+ },
4866
+ "endpoints" : {
4867
+ "us-iso-east-1" : {
4868
+ "protocols" : [ "http", "https" ]
4869
+ }
4870
+ }
4871
+ },
4872
+ "sts" : {
4873
+ "endpoints" : {
4874
+ "us-iso-east-1" : { }
4875
+ }
4876
+ },
4877
+ "support" : {
4878
+ "endpoints" : {
4879
+ "aws-iso-global" : {
4880
+ "credentialScope" : {
4881
+ "region" : "us-iso-east-1"
4882
+ },
4883
+ "hostname" : "support.us-iso-east-1.c2s.ic.gov"
4884
+ }
4885
+ },
4886
+ "partitionEndpoint" : "aws-iso-global"
4887
+ },
4888
+ "swf" : {
4889
+ "endpoints" : {
4890
+ "us-iso-east-1" : { }
4891
+ }
4892
+ },
4893
+ "workspaces" : {
4894
+ "endpoints" : {
4895
+ "us-iso-east-1" : { }
4896
+ }
4897
+ }
4898
+ }
4899
+ }, {
4900
+ "defaults" : {
4901
+ "hostname" : "{service}.{region}.{dnsSuffix}",
4902
+ "protocols" : [ "https" ],
4903
+ "signatureVersions" : [ "v4" ]
4904
+ },
4905
+ "dnsSuffix" : "sc2s.sgov.gov",
4906
+ "partition" : "aws-iso-b",
4907
+ "partitionName" : "AWS ISOB (US)",
4908
+ "regionRegex" : "^us\\-isob\\-\\w+\\-\\d+$",
4909
+ "regions" : {
4910
+ "us-isob-east-1" : {
4911
+ "description" : "US ISOB East (Ohio)"
4912
+ }
4913
+ },
4914
+ "services" : {
4915
+ "application-autoscaling" : {
4916
+ "defaults" : {
4917
+ "credentialScope" : {
4918
+ "service" : "application-autoscaling"
4919
+ },
4920
+ "hostname" : "autoscaling.{region}.amazonaws.com",
4921
+ "protocols" : [ "http", "https" ]
4922
+ },
4923
+ "endpoints" : {
4924
+ "us-isob-east-1" : { }
4925
+ }
4926
+ },
4927
+ "autoscaling" : {
4928
+ "defaults" : {
4929
+ "protocols" : [ "http", "https" ]
4930
+ },
4931
+ "endpoints" : {
4932
+ "us-isob-east-1" : { }
4933
+ }
4934
+ },
4935
+ "cloudformation" : {
4936
+ "endpoints" : {
4937
+ "us-isob-east-1" : { }
4938
+ }
4939
+ },
4940
+ "cloudtrail" : {
4941
+ "endpoints" : {
4942
+ "us-isob-east-1" : { }
4943
+ }
4944
+ },
4945
+ "config" : {
4946
+ "endpoints" : {
4947
+ "us-isob-east-1" : { }
4948
+ }
4949
+ },
4950
+ "directconnect" : {
4951
+ "endpoints" : {
4952
+ "us-isob-east-1" : { }
4953
+ }
4954
+ },
4955
+ "dms" : {
4956
+ "endpoints" : {
4957
+ "us-isob-east-1" : { }
4958
+ }
4959
+ },
4960
+ "dynamodb" : {
4961
+ "defaults" : {
4962
+ "protocols" : [ "http", "https" ]
4963
+ },
4964
+ "endpoints" : {
4965
+ "us-isob-east-1" : { }
4966
+ }
4967
+ },
4968
+ "ec2" : {
4969
+ "defaults" : {
4970
+ "protocols" : [ "http", "https" ]
4971
+ },
4972
+ "endpoints" : {
4973
+ "us-isob-east-1" : { }
4974
+ }
4975
+ },
4976
+ "elasticache" : {
4977
+ "endpoints" : {
4978
+ "us-isob-east-1" : { }
4979
+ }
4980
+ },
4981
+ "elasticloadbalancing" : {
4982
+ "endpoints" : {
4983
+ "us-isob-east-1" : {
4984
+ "protocols" : [ "https" ]
4985
+ }
4986
+ }
4987
+ },
4988
+ "elasticmapreduce" : {
4989
+ "endpoints" : {
4990
+ "us-isob-east-1" : { }
4991
+ }
4992
+ },
4993
+ "events" : {
4994
+ "endpoints" : {
4995
+ "us-isob-east-1" : { }
4996
+ }
4997
+ },
4998
+ "glacier" : {
4999
+ "endpoints" : {
5000
+ "us-isob-east-1" : { }
5001
+ }
5002
+ },
5003
+ "health" : {
5004
+ "endpoints" : {
5005
+ "us-isob-east-1" : { }
5006
+ }
5007
+ },
5008
+ "iam" : {
5009
+ "endpoints" : {
5010
+ "aws-iso-b-global" : {
5011
+ "credentialScope" : {
5012
+ "region" : "us-isob-east-1"
5013
+ },
5014
+ "hostname" : "iam.us-isob-east-1.sc2s.sgov.gov"
5015
+ }
5016
+ },
5017
+ "isRegionalized" : false,
5018
+ "partitionEndpoint" : "aws-iso-b-global"
5019
+ },
5020
+ "kinesis" : {
5021
+ "endpoints" : {
5022
+ "us-isob-east-1" : { }
5023
+ }
5024
+ },
5025
+ "kms" : {
5026
+ "endpoints" : {
5027
+ "ProdFips" : {
5028
+ "credentialScope" : {
5029
+ "region" : "us-isob-east-1"
5030
+ },
5031
+ "hostname" : "kms-fips.us-isob-east-1.sc2s.sgov.gov"
5032
+ },
5033
+ "us-isob-east-1" : { }
5034
+ }
5035
+ },
5036
+ "logs" : {
5037
+ "endpoints" : {
5038
+ "us-isob-east-1" : { }
5039
+ }
5040
+ },
5041
+ "monitoring" : {
5042
+ "endpoints" : {
5043
+ "us-isob-east-1" : { }
5044
+ }
5045
+ },
5046
+ "rds" : {
5047
+ "endpoints" : {
5048
+ "us-isob-east-1" : { }
5049
+ }
5050
+ },
5051
+ "redshift" : {
5052
+ "endpoints" : {
5053
+ "us-isob-east-1" : { }
5054
+ }
5055
+ },
5056
+ "s3" : {
5057
+ "defaults" : {
5058
+ "protocols" : [ "http", "https" ],
5059
+ "signatureVersions" : [ "s3v4" ]
5060
+ },
5061
+ "endpoints" : {
5062
+ "us-isob-east-1" : { }
5063
+ }
5064
+ },
5065
+ "snowball" : {
5066
+ "endpoints" : {
5067
+ "us-isob-east-1" : { }
5068
+ }
5069
+ },
5070
+ "sns" : {
5071
+ "defaults" : {
5072
+ "protocols" : [ "http", "https" ]
5073
+ },
5074
+ "endpoints" : {
5075
+ "us-isob-east-1" : { }
5076
+ }
5077
+ },
5078
+ "sqs" : {
5079
+ "defaults" : {
5080
+ "protocols" : [ "http", "https" ],
5081
+ "sslCommonName" : "{region}.queue.{dnsSuffix}"
5082
+ },
5083
+ "endpoints" : {
5084
+ "us-isob-east-1" : { }
5085
+ }
5086
+ },
5087
+ "states" : {
5088
+ "endpoints" : {
5089
+ "us-isob-east-1" : { }
5090
+ }
5091
+ },
5092
+ "streams.dynamodb" : {
5093
+ "defaults" : {
5094
+ "credentialScope" : {
5095
+ "service" : "dynamodb"
5096
+ },
5097
+ "protocols" : [ "http", "https" ]
5098
+ },
5099
+ "endpoints" : {
5100
+ "us-isob-east-1" : { }
5101
+ }
5102
+ },
5103
+ "sts" : {
5104
+ "endpoints" : {
5105
+ "us-isob-east-1" : { }
5106
+ }
5107
+ },
5108
+ "support" : {
5109
+ "endpoints" : {
5110
+ "aws-iso-b-global" : {
5111
+ "credentialScope" : {
5112
+ "region" : "us-isob-east-1"
5113
+ },
5114
+ "hostname" : "support.us-isob-east-1.sc2s.sgov.gov"
5115
+ }
5116
+ },
5117
+ "partitionEndpoint" : "aws-iso-b-global"
5118
+ },
5119
+ "swf" : {
5120
+ "endpoints" : {
5121
+ "us-isob-east-1" : { }
5122
+ }
5123
+ }
5124
+ }
4631
5125
  } ],
4632
5126
  "version" : 3
4633
5127
  }
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.346'
2
+ VERSION = '2.11.347'
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.346
4
+ version: 2.11.347
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: 2019-09-03 00:00:00.000000000 Z
11
+ date: 2019-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath