aws-sdk-core 2.11.603 → 2.11.604

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
  SHA256:
3
- metadata.gz: bfcfe8424ef2b13cb252eeef29cb2f9c6d9484b8552be6df11371146986cd8c4
4
- data.tar.gz: 035d6c313bf8bbbb744429b8e63e354bc21ff46da0539b982fa59b963fdfdab1
3
+ metadata.gz: 2247a51005e2dc43b393d7508a5fa1c85ecca95280e3ef46df88cc0e6bcccaf2
4
+ data.tar.gz: 7969a710e537b2b77202f10434ab247b1850fe66414d6d4b2505a78e2f334fa3
5
5
  SHA512:
6
- metadata.gz: 0c0a83c11d9df6b1d134fa6fe7c543840d3c354c6b3d4e5f02557afee948daf72e07bafc37fea817fa08b4e18140c3922e6ae01f818224dffbb3b293cf967805
7
- data.tar.gz: 6e9780f3a7a3ba642e74da877d0a07a8b4be768fef8e92b3c27e2442442f2aacbb887682af21cd508310cd5da1b621ad820e2781cc35a6b115622cd84c60e88b
6
+ metadata.gz: b62ba6b5caf944de9e3c6a54dd31fb1a4a2d7d9c8fccb5de80ec1d072302eb71ddb14b56c8c66e82b02ea8f4a3fca4064f515ff28af15f2ef9c0a0bf52f6a341
7
+ data.tar.gz: f84b1a71cea36d19eadd6aa4aaf487eab849686b7998b3ddd93213c861f690b0d1a579505e38a6b702d22d468402dd2ec204e1bfb913248d91a957210779be29
@@ -568,7 +568,8 @@
568
568
  "EffectiveEnd":{"shape":"ZonedDateTime"},
569
569
  "Name":{"shape":"CostCategoryName"},
570
570
  "RuleVersion":{"shape":"CostCategoryRuleVersion"},
571
- "Rules":{"shape":"CostCategoryRulesList"}
571
+ "Rules":{"shape":"CostCategoryRulesList"},
572
+ "ProcessingStatus":{"shape":"CostCategoryProcessingStatusList"}
572
573
  }
573
574
  },
574
575
  "CostCategoryMaxResults":{
@@ -582,6 +583,17 @@
582
583
  "min":1,
583
584
  "pattern":"^(?! )[\\p{L}\\p{N}\\p{Z}-_]*(?<! )$"
584
585
  },
586
+ "CostCategoryProcessingStatus":{
587
+ "type":"structure",
588
+ "members":{
589
+ "Component":{"shape":"CostCategoryStatusComponent"},
590
+ "Status":{"shape":"CostCategoryStatus"}
591
+ }
592
+ },
593
+ "CostCategoryProcessingStatusList":{
594
+ "type":"list",
595
+ "member":{"shape":"CostCategoryProcessingStatus"}
596
+ },
585
597
  "CostCategoryReference":{
586
598
  "type":"structure",
587
599
  "members":{
@@ -589,7 +601,9 @@
589
601
  "Name":{"shape":"CostCategoryName"},
590
602
  "EffectiveStart":{"shape":"ZonedDateTime"},
591
603
  "EffectiveEnd":{"shape":"ZonedDateTime"},
592
- "NumberOfRules":{"shape":"NonNegativeInteger"}
604
+ "NumberOfRules":{"shape":"NonNegativeInteger"},
605
+ "ProcessingStatus":{"shape":"CostCategoryProcessingStatusList"},
606
+ "Values":{"shape":"CostCategoryValuesList"}
593
607
  }
594
608
  },
595
609
  "CostCategoryReferencesList":{
@@ -617,6 +631,17 @@
617
631
  "max":500,
618
632
  "min":1
619
633
  },
634
+ "CostCategoryStatus":{
635
+ "type":"string",
636
+ "enum":[
637
+ "PROCESSING",
638
+ "APPLIED"
639
+ ]
640
+ },
641
+ "CostCategoryStatusComponent":{
642
+ "type":"string",
643
+ "enum":["COST_EXPLORER"]
644
+ },
620
645
  "CostCategoryValue":{
621
646
  "type":"string",
622
647
  "max":255,
@@ -627,9 +652,14 @@
627
652
  "type":"structure",
628
653
  "members":{
629
654
  "Key":{"shape":"CostCategoryName"},
630
- "Values":{"shape":"Values"}
655
+ "Values":{"shape":"Values"},
656
+ "MatchOptions":{"shape":"MatchOptions"}
631
657
  }
632
658
  },
659
+ "CostCategoryValuesList":{
660
+ "type":"list",
661
+ "member":{"shape":"CostCategoryValue"}
662
+ },
633
663
  "Coverage":{
634
664
  "type":"structure",
635
665
  "members":{
@@ -3571,7 +3571,8 @@
3571
3571
  "method":"POST",
3572
3572
  "requestUri":"/"
3573
3573
  },
3574
- "input":{"shape":"RevokeSecurityGroupEgressRequest"}
3574
+ "input":{"shape":"RevokeSecurityGroupEgressRequest"},
3575
+ "output":{"shape":"RevokeSecurityGroupEgressResult"}
3575
3576
  },
3576
3577
  "RevokeSecurityGroupIngress":{
3577
3578
  "name":"RevokeSecurityGroupIngress",
@@ -3579,7 +3580,8 @@
3579
3580
  "method":"POST",
3580
3581
  "requestUri":"/"
3581
3582
  },
3582
- "input":{"shape":"RevokeSecurityGroupIngressRequest"}
3583
+ "input":{"shape":"RevokeSecurityGroupIngressRequest"},
3584
+ "output":{"shape":"RevokeSecurityGroupIngressResult"}
3583
3585
  },
3584
3586
  "RunInstances":{
3585
3587
  "name":"RunInstances",
@@ -25460,6 +25462,19 @@
25460
25462
  }
25461
25463
  }
25462
25464
  },
25465
+ "RevokeSecurityGroupEgressResult":{
25466
+ "type":"structure",
25467
+ "members":{
25468
+ "Return":{
25469
+ "shape":"Boolean",
25470
+ "locationName":"return"
25471
+ },
25472
+ "UnknownIpPermissions":{
25473
+ "shape":"IpPermissionList",
25474
+ "locationName":"unknownIpPermissionSet"
25475
+ }
25476
+ }
25477
+ },
25463
25478
  "RevokeSecurityGroupIngressRequest":{
25464
25479
  "type":"structure",
25465
25480
  "members":{
@@ -25478,6 +25493,19 @@
25478
25493
  }
25479
25494
  }
25480
25495
  },
25496
+ "RevokeSecurityGroupIngressResult":{
25497
+ "type":"structure",
25498
+ "members":{
25499
+ "Return":{
25500
+ "shape":"Boolean",
25501
+ "locationName":"return"
25502
+ },
25503
+ "UnknownIpPermissions":{
25504
+ "shape":"IpPermissionList",
25505
+ "locationName":"unknownIpPermissionSet"
25506
+ }
25507
+ }
25508
+ },
25481
25509
  "RootDeviceType":{
25482
25510
  "type":"string",
25483
25511
  "enum":[
@@ -582,6 +582,12 @@
582
582
  "Name":{"shape":"EventSourceName"}
583
583
  }
584
584
  },
585
+ "DeadLetterConfig":{
586
+ "type":"structure",
587
+ "members":{
588
+ "Arn":{"shape":"ResourceArn"}
589
+ }
590
+ },
585
591
  "DeleteEventBusRequest":{
586
592
  "type":"structure",
587
593
  "required":["Name"],
@@ -990,6 +996,16 @@
990
996
  },
991
997
  "exception":true
992
998
  },
999
+ "MaximumEventAgeInSeconds":{
1000
+ "type":"integer",
1001
+ "max":86400,
1002
+ "min":60
1003
+ },
1004
+ "MaximumRetryAttempts":{
1005
+ "type":"integer",
1006
+ "max":185,
1007
+ "min":0
1008
+ },
993
1009
  "MessageGroupId":{"type":"string"},
994
1010
  "NetworkConfiguration":{
995
1011
  "type":"structure",
@@ -1297,12 +1313,24 @@
1297
1313
  },
1298
1314
  "exception":true
1299
1315
  },
1316
+ "ResourceArn":{
1317
+ "type":"string",
1318
+ "max":1600,
1319
+ "min":1
1320
+ },
1300
1321
  "ResourceNotFoundException":{
1301
1322
  "type":"structure",
1302
1323
  "members":{
1303
1324
  },
1304
1325
  "exception":true
1305
1326
  },
1327
+ "RetryPolicy":{
1328
+ "type":"structure",
1329
+ "members":{
1330
+ "MaximumRetryAttempts":{"shape":"MaximumRetryAttempts"},
1331
+ "MaximumEventAgeInSeconds":{"shape":"MaximumEventAgeInSeconds"}
1332
+ }
1333
+ },
1306
1334
  "RoleArn":{
1307
1335
  "type":"string",
1308
1336
  "max":1600,
@@ -1488,7 +1516,9 @@
1488
1516
  "BatchParameters":{"shape":"BatchParameters"},
1489
1517
  "SqsParameters":{"shape":"SqsParameters"},
1490
1518
  "HttpParameters":{"shape":"HttpParameters"},
1491
- "RedshiftDataParameters":{"shape":"RedshiftDataParameters"}
1519
+ "RedshiftDataParameters":{"shape":"RedshiftDataParameters"},
1520
+ "DeadLetterConfig":{"shape":"DeadLetterConfig"},
1521
+ "RetryPolicy":{"shape":"RetryPolicy"}
1492
1522
  }
1493
1523
  },
1494
1524
  "TargetArn":{
@@ -582,6 +582,12 @@
582
582
  "Name":{"shape":"EventSourceName"}
583
583
  }
584
584
  },
585
+ "DeadLetterConfig":{
586
+ "type":"structure",
587
+ "members":{
588
+ "Arn":{"shape":"ResourceArn"}
589
+ }
590
+ },
585
591
  "DeleteEventBusRequest":{
586
592
  "type":"structure",
587
593
  "required":["Name"],
@@ -990,6 +996,16 @@
990
996
  },
991
997
  "exception":true
992
998
  },
999
+ "MaximumEventAgeInSeconds":{
1000
+ "type":"integer",
1001
+ "max":86400,
1002
+ "min":60
1003
+ },
1004
+ "MaximumRetryAttempts":{
1005
+ "type":"integer",
1006
+ "max":185,
1007
+ "min":0
1008
+ },
993
1009
  "MessageGroupId":{"type":"string"},
994
1010
  "NetworkConfiguration":{
995
1011
  "type":"structure",
@@ -1297,12 +1313,24 @@
1297
1313
  },
1298
1314
  "exception":true
1299
1315
  },
1316
+ "ResourceArn":{
1317
+ "type":"string",
1318
+ "max":1600,
1319
+ "min":1
1320
+ },
1300
1321
  "ResourceNotFoundException":{
1301
1322
  "type":"structure",
1302
1323
  "members":{
1303
1324
  },
1304
1325
  "exception":true
1305
1326
  },
1327
+ "RetryPolicy":{
1328
+ "type":"structure",
1329
+ "members":{
1330
+ "MaximumRetryAttempts":{"shape":"MaximumRetryAttempts"},
1331
+ "MaximumEventAgeInSeconds":{"shape":"MaximumEventAgeInSeconds"}
1332
+ }
1333
+ },
1306
1334
  "RoleArn":{
1307
1335
  "type":"string",
1308
1336
  "max":1600,
@@ -1488,7 +1516,9 @@
1488
1516
  "BatchParameters":{"shape":"BatchParameters"},
1489
1517
  "SqsParameters":{"shape":"SqsParameters"},
1490
1518
  "HttpParameters":{"shape":"HttpParameters"},
1491
- "RedshiftDataParameters":{"shape":"RedshiftDataParameters"}
1519
+ "RedshiftDataParameters":{"shape":"RedshiftDataParameters"},
1520
+ "DeadLetterConfig":{"shape":"DeadLetterConfig"},
1521
+ "RetryPolicy":{"shape":"RetryPolicy"}
1492
1522
  }
1493
1523
  },
1494
1524
  "TargetArn":{
@@ -7146,7 +7146,8 @@
7146
7146
  "EnableCloudwatchLogsExports":{"shape":"LogTypeList"},
7147
7147
  "ProcessorFeatures":{"shape":"ProcessorFeatureList"},
7148
7148
  "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"},
7149
- "DeletionProtection":{"shape":"BooleanOptional"}
7149
+ "DeletionProtection":{"shape":"BooleanOptional"},
7150
+ "MaxAllocatedStorage":{"shape":"IntegerOptional"}
7150
7151
  }
7151
7152
  },
7152
7153
  "RestoreDBInstanceFromS3Result":{
@@ -7189,7 +7190,8 @@
7189
7190
  "UseDefaultProcessorFeatures":{"shape":"BooleanOptional"},
7190
7191
  "DBParameterGroupName":{"shape":"String"},
7191
7192
  "DeletionProtection":{"shape":"BooleanOptional"},
7192
- "SourceDbiResourceId":{"shape":"String"}
7193
+ "SourceDbiResourceId":{"shape":"String"},
7194
+ "MaxAllocatedStorage":{"shape":"IntegerOptional"}
7193
7195
  }
7194
7196
  },
7195
7197
  "RestoreDBInstanceToPointInTimeResult":{
@@ -2337,7 +2337,8 @@
2337
2337
  "OutputConfig":{"shape":"OutputConfig"},
2338
2338
  "TrainingDataResult":{"shape":"TrainingDataResult"},
2339
2339
  "TestingDataResult":{"shape":"TestingDataResult"},
2340
- "EvaluationResult":{"shape":"EvaluationResult"}
2340
+ "EvaluationResult":{"shape":"EvaluationResult"},
2341
+ "ManifestSummary":{"shape":"GroundTruthManifest"}
2341
2342
  }
2342
2343
  },
2343
2344
  "ProjectVersionDescriptions":{
@@ -2907,7 +2908,8 @@
2907
2908
  "type":"structure",
2908
2909
  "members":{
2909
2910
  "Input":{"shape":"TestingData"},
2910
- "Output":{"shape":"TestingData"}
2911
+ "Output":{"shape":"TestingData"},
2912
+ "Validation":{"shape":"ValidationData"}
2911
2913
  }
2912
2914
  },
2913
2915
  "TextDetection":{
@@ -2962,7 +2964,8 @@
2962
2964
  "type":"structure",
2963
2965
  "members":{
2964
2966
  "Input":{"shape":"TrainingData"},
2965
- "Output":{"shape":"TrainingData"}
2967
+ "Output":{"shape":"TrainingData"},
2968
+ "Validation":{"shape":"ValidationData"}
2966
2969
  }
2967
2970
  },
2968
2971
  "UInteger":{
@@ -2989,6 +2992,12 @@
2989
2992
  "type":"list",
2990
2993
  "member":{"shape":"Url"}
2991
2994
  },
2995
+ "ValidationData":{
2996
+ "type":"structure",
2997
+ "members":{
2998
+ "Assets":{"shape":"Assets"}
2999
+ }
3000
+ },
2992
3001
  "VersionName":{
2993
3002
  "type":"string",
2994
3003
  "max":255,
@@ -8408,7 +8408,8 @@
8408
8408
  "sitara_am57x",
8409
8409
  "amba_cv22",
8410
8410
  "x86_win32",
8411
- "x86_win64"
8411
+ "x86_win64",
8412
+ "coreml"
8412
8413
  ]
8413
8414
  },
8414
8415
  "TargetObjectiveMetricValue":{"type":"float"},
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.603'
2
+ VERSION = '2.11.604'
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.603
4
+ version: 2.11.604
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: 2020-10-07 00:00:00.000000000 Z
11
+ date: 2020-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath