aws-sdk-core 2.11.599 → 2.11.604

Sign up to get free protection for your applications and to get access to all the features.
@@ -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,
@@ -143,6 +143,15 @@
143
143
  },
144
144
  "input":{"shape":"DeleteBucketMetricsConfigurationRequest"}
145
145
  },
146
+ "DeleteBucketOwnershipControls":{
147
+ "name":"DeleteBucketOwnershipControls",
148
+ "http":{
149
+ "method":"DELETE",
150
+ "requestUri":"/{Bucket}?ownershipControls",
151
+ "responseCode":204
152
+ },
153
+ "input":{"shape":"DeleteBucketOwnershipControlsRequest"}
154
+ },
146
155
  "DeleteBucketPolicy":{
147
156
  "name":"DeleteBucketPolicy",
148
157
  "http":{
@@ -349,6 +358,15 @@
349
358
  "input":{"shape":"GetBucketNotificationConfigurationRequest"},
350
359
  "output":{"shape":"NotificationConfiguration"}
351
360
  },
361
+ "GetBucketOwnershipControls":{
362
+ "name":"GetBucketOwnershipControls",
363
+ "http":{
364
+ "method":"GET",
365
+ "requestUri":"/{Bucket}?ownershipControls"
366
+ },
367
+ "input":{"shape":"GetBucketOwnershipControlsRequest"},
368
+ "output":{"shape":"GetBucketOwnershipControlsOutput"}
369
+ },
352
370
  "GetBucketPolicy":{
353
371
  "name":"GetBucketPolicy",
354
372
  "http":{
@@ -727,6 +745,14 @@
727
745
  },
728
746
  "input":{"shape":"PutBucketNotificationConfigurationRequest"}
729
747
  },
748
+ "PutBucketOwnershipControls":{
749
+ "name":"PutBucketOwnershipControls",
750
+ "http":{
751
+ "method":"PUT",
752
+ "requestUri":"/{Bucket}?ownershipControls"
753
+ },
754
+ "input":{"shape":"PutBucketOwnershipControlsRequest"}
755
+ },
730
756
  "PutBucketPolicy":{
731
757
  "name":"PutBucketPolicy",
732
758
  "http":{
@@ -2096,6 +2122,22 @@
2096
2122
  }
2097
2123
  }
2098
2124
  },
2125
+ "DeleteBucketOwnershipControlsRequest":{
2126
+ "type":"structure",
2127
+ "required":["Bucket"],
2128
+ "members":{
2129
+ "Bucket":{
2130
+ "shape":"BucketName",
2131
+ "location":"uri",
2132
+ "locationName":"Bucket"
2133
+ },
2134
+ "ExpectedBucketOwner":{
2135
+ "shape":"AccountId",
2136
+ "location":"header",
2137
+ "locationName":"x-amz-expected-bucket-owner"
2138
+ }
2139
+ }
2140
+ },
2099
2141
  "DeleteBucketPolicyRequest":{
2100
2142
  "type":"structure",
2101
2143
  "required":["Bucket"],
@@ -2851,6 +2893,29 @@
2851
2893
  }
2852
2894
  }
2853
2895
  },
2896
+ "GetBucketOwnershipControlsOutput":{
2897
+ "type":"structure",
2898
+ "members":{
2899
+ "OwnershipControls":{"shape":"OwnershipControls"}
2900
+ },
2901
+ "payload":"OwnershipControls"
2902
+ },
2903
+ "GetBucketOwnershipControlsRequest":{
2904
+ "type":"structure",
2905
+ "required":["Bucket"],
2906
+ "members":{
2907
+ "Bucket":{
2908
+ "shape":"BucketName",
2909
+ "location":"uri",
2910
+ "locationName":"Bucket"
2911
+ },
2912
+ "ExpectedBucketOwner":{
2913
+ "shape":"AccountId",
2914
+ "location":"header",
2915
+ "locationName":"x-amz-expected-bucket-owner"
2916
+ }
2917
+ }
2918
+ },
2854
2919
  "GetBucketPolicyOutput":{
2855
2920
  "type":"structure",
2856
2921
  "members":{
@@ -4873,6 +4938,13 @@
4873
4938
  },
4874
4939
  "exception":true
4875
4940
  },
4941
+ "ObjectOwnership":{
4942
+ "type":"string",
4943
+ "enum":[
4944
+ "BucketOwnerPreferred",
4945
+ "ObjectWriter"
4946
+ ]
4947
+ },
4876
4948
  "ObjectStorageClass":{
4877
4949
  "type":"string",
4878
4950
  "enum":[
@@ -4933,6 +5005,28 @@
4933
5005
  "type":"string",
4934
5006
  "enum":["Destination"]
4935
5007
  },
5008
+ "OwnershipControls":{
5009
+ "type":"structure",
5010
+ "required":["Rules"],
5011
+ "members":{
5012
+ "Rules":{
5013
+ "shape":"OwnershipControlsRules",
5014
+ "locationName":"Rule"
5015
+ }
5016
+ }
5017
+ },
5018
+ "OwnershipControlsRule":{
5019
+ "type":"structure",
5020
+ "required":["ObjectOwnership"],
5021
+ "members":{
5022
+ "ObjectOwnership":{"shape":"ObjectOwnership"}
5023
+ }
5024
+ },
5025
+ "OwnershipControlsRules":{
5026
+ "type":"list",
5027
+ "member":{"shape":"OwnershipControlsRule"},
5028
+ "flattened":true
5029
+ },
4936
5030
  "ParquetInput":{
4937
5031
  "type":"structure",
4938
5032
  "members":{
@@ -5411,6 +5505,36 @@
5411
5505
  },
5412
5506
  "payload":"NotificationConfiguration"
5413
5507
  },
5508
+ "PutBucketOwnershipControlsRequest":{
5509
+ "type":"structure",
5510
+ "required":[
5511
+ "Bucket",
5512
+ "OwnershipControls"
5513
+ ],
5514
+ "members":{
5515
+ "Bucket":{
5516
+ "shape":"BucketName",
5517
+ "location":"uri",
5518
+ "locationName":"Bucket"
5519
+ },
5520
+ "ContentMD5":{
5521
+ "shape":"ContentMD5",
5522
+ "location":"header",
5523
+ "locationName":"Content-MD5"
5524
+ },
5525
+ "ExpectedBucketOwner":{
5526
+ "shape":"AccountId",
5527
+ "location":"header",
5528
+ "locationName":"x-amz-expected-bucket-owner"
5529
+ },
5530
+ "OwnershipControls":{
5531
+ "shape":"OwnershipControls",
5532
+ "locationName":"OwnershipControls",
5533
+ "xmlNamespace":{"uri":"http://s3.amazonaws.com/doc/2006-03-01/"}
5534
+ }
5535
+ },
5536
+ "payload":"OwnershipControls"
5537
+ },
5414
5538
  "PutBucketPolicyRequest":{
5415
5539
  "type":"structure",
5416
5540
  "required":[
@@ -1702,6 +1702,13 @@
1702
1702
  "max":63,
1703
1703
  "pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
1704
1704
  },
1705
+ "AppNetworkAccessType":{
1706
+ "type":"string",
1707
+ "enum":[
1708
+ "PublicInternetOnly",
1709
+ "VpcOnly"
1710
+ ]
1711
+ },
1705
1712
  "AppSortKey":{
1706
1713
  "type":"string",
1707
1714
  "enum":["CreationTime"]
@@ -2690,7 +2697,8 @@
2690
2697
  "SubnetIds":{"shape":"Subnets"},
2691
2698
  "VpcId":{"shape":"VpcId"},
2692
2699
  "Tags":{"shape":"TagList"},
2693
- "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"}
2700
+ "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"},
2701
+ "AppNetworkAccessType":{"shape":"AppNetworkAccessType"}
2694
2702
  }
2695
2703
  },
2696
2704
  "CreateDomainResponse":{
@@ -3711,7 +3719,8 @@
3711
3719
  "HomeEfsFileSystemKmsKeyId":{"shape":"KmsKeyId"},
3712
3720
  "SubnetIds":{"shape":"Subnets"},
3713
3721
  "Url":{"shape":"String1024"},
3714
- "VpcId":{"shape":"VpcId"}
3722
+ "VpcId":{"shape":"VpcId"},
3723
+ "AppNetworkAccessType":{"shape":"AppNetworkAccessType"}
3715
3724
  }
3716
3725
  },
3717
3726
  "DescribeEndpointConfigInput":{
@@ -8399,7 +8408,8 @@
8399
8408
  "sitara_am57x",
8400
8409
  "amba_cv22",
8401
8410
  "x86_win32",
8402
- "x86_win64"
8411
+ "x86_win64",
8412
+ "coreml"
8403
8413
  ]
8404
8414
  },
8405
8415
  "TargetObjectiveMetricValue":{"type":"float"},
@@ -516,6 +516,7 @@
516
516
  "ServiceName":{"shape":"ServiceName"},
517
517
  "MaxResults":{"shape":"DiscoverMaxResults"},
518
518
  "QueryParameters":{"shape":"Attributes"},
519
+ "OptionalParameters":{"shape":"Attributes"},
519
520
  "HealthStatus":{"shape":"HealthStatusFilter"}
520
521
  }
521
522
  },
@@ -3862,6 +3862,7 @@
3862
3862
  "ca-central-1" : { },
3863
3863
  "eu-central-1" : { },
3864
3864
  "eu-north-1" : { },
3865
+ "eu-south-1" : { },
3865
3866
  "eu-west-1" : { },
3866
3867
  "eu-west-2" : { },
3867
3868
  "eu-west-3" : { },
@@ -5342,6 +5343,7 @@
5342
5343
  "ca-central-1" : { },
5343
5344
  "eu-central-1" : { },
5344
5345
  "eu-north-1" : { },
5346
+ "eu-south-1" : { },
5345
5347
  "eu-west-1" : { },
5346
5348
  "eu-west-2" : { },
5347
5349
  "eu-west-3" : { },
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.599'
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.599
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-01 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