aws-sdk-elementalinference 1.8.0 → 1.10.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-elementalinference/client.rb +160 -1
- data/lib/aws-sdk-elementalinference/client_api.rb +116 -0
- data/lib/aws-sdk-elementalinference/errors.rb +40 -0
- data/lib/aws-sdk-elementalinference/types.rb +324 -1
- data/lib/aws-sdk-elementalinference.rb +1 -1
- data/sig/client.rbs +39 -0
- data/sig/errors.rbs +6 -0
- data/sig/params.rbs +4 -1
- data/sig/types.rbs +72 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a22a3078a2d232f39b8769336e38e48907335e94a2f976d0ec13e525986dbf28
|
|
4
|
+
data.tar.gz: 5aa5298cc2fc08027e64701e6bbf77641b2226ae2c7d784310a097a2193e1bbf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66cce8538bc37557a392e5660fe9b93f51249c95c0730edc61fc30089d4f99e6b4273a3a588ba53a6ef4d8e37b1d87b86c3f9eaa55dac70de755f533d86a10c9
|
|
7
|
+
data.tar.gz: a6aada7289490e0486b5c6e0b82d15634f7537e403d06c0f70c035cd6307b2536e100800502b0e0198f416df3823692f223dc8c53ff69fba2891a78266d2e3b6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.10.0 (2026-08-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for the GetFixture API, enabling customers to retrieve the details of a fixture from its fixture ID, and added the access role ARN to the CreateFeed, GetFeed, and UpdateFeed responses.
|
|
8
|
+
|
|
9
|
+
1.9.0 (2026-08-10)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Added support for the SearchFixtures API and DataSourceConfiguration, enabling customers to map fixture event data onto clipping outputs for improved feature accuracy.
|
|
13
|
+
|
|
4
14
|
1.8.0 (2026-07-31)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.10.0
|
|
@@ -550,6 +550,9 @@ module Aws::ElementalInference
|
|
|
550
550
|
# },
|
|
551
551
|
# clipping: {
|
|
552
552
|
# callback_metadata: "ResourceDescription",
|
|
553
|
+
# data_source_configuration: {
|
|
554
|
+
# fixture_id: "FixtureId", # required
|
|
555
|
+
# },
|
|
553
556
|
# },
|
|
554
557
|
# subtitling: {
|
|
555
558
|
# language: "eng", # required, accepts eng, eng-au, eng-gb, eng-us, fra, ita, deu, spa, por
|
|
@@ -680,6 +683,7 @@ module Aws::ElementalInference
|
|
|
680
683
|
# * {Types::CreateFeedResponse#id #id} => String
|
|
681
684
|
# * {Types::CreateFeedResponse#data_endpoints #data_endpoints} => Array<String>
|
|
682
685
|
# * {Types::CreateFeedResponse#outputs #outputs} => Array<Types::GetOutput>
|
|
686
|
+
# * {Types::CreateFeedResponse#access_role_arn #access_role_arn} => String
|
|
683
687
|
# * {Types::CreateFeedResponse#status #status} => String
|
|
684
688
|
# * {Types::CreateFeedResponse#association #association} => Types::FeedAssociation
|
|
685
689
|
# * {Types::CreateFeedResponse#tags #tags} => Hash<String,String>
|
|
@@ -703,6 +707,9 @@ module Aws::ElementalInference
|
|
|
703
707
|
# },
|
|
704
708
|
# clipping: {
|
|
705
709
|
# callback_metadata: "ResourceDescription",
|
|
710
|
+
# data_source_configuration: {
|
|
711
|
+
# fixture_id: "FixtureId", # required
|
|
712
|
+
# },
|
|
706
713
|
# },
|
|
707
714
|
# subtitling: {
|
|
708
715
|
# language: "eng", # required, accepts eng, eng-au, eng-gb, eng-us, fra, ita, deu, spa, por
|
|
@@ -737,6 +744,7 @@ module Aws::ElementalInference
|
|
|
737
744
|
# resp.outputs[0].output_config.cropping.template_groups[0].template_uris #=> Array
|
|
738
745
|
# resp.outputs[0].output_config.cropping.template_groups[0].template_uris[0] #=> String
|
|
739
746
|
# resp.outputs[0].output_config.clipping.callback_metadata #=> String
|
|
747
|
+
# resp.outputs[0].output_config.clipping.data_source_configuration.fixture_id #=> String
|
|
740
748
|
# resp.outputs[0].output_config.subtitling.language #=> String, one of "eng", "eng-au", "eng-gb", "eng-us", "fra", "ita", "deu", "spa", "por"
|
|
741
749
|
# resp.outputs[0].output_config.subtitling.aspect_ratio.width #=> Integer
|
|
742
750
|
# resp.outputs[0].output_config.subtitling.aspect_ratio.height #=> Integer
|
|
@@ -745,6 +753,7 @@ module Aws::ElementalInference
|
|
|
745
753
|
# resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
746
754
|
# resp.outputs[0].description #=> String
|
|
747
755
|
# resp.outputs[0].from_association #=> Boolean
|
|
756
|
+
# resp.access_role_arn #=> String
|
|
748
757
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
|
|
749
758
|
# resp.association.associated_resource_name #=> String
|
|
750
759
|
# resp.tags #=> Hash
|
|
@@ -958,6 +967,7 @@ module Aws::ElementalInference
|
|
|
958
967
|
# * {Types::GetFeedResponse#id #id} => String
|
|
959
968
|
# * {Types::GetFeedResponse#data_endpoints #data_endpoints} => Array<String>
|
|
960
969
|
# * {Types::GetFeedResponse#outputs #outputs} => Array<Types::GetOutput>
|
|
970
|
+
# * {Types::GetFeedResponse#access_role_arn #access_role_arn} => String
|
|
961
971
|
# * {Types::GetFeedResponse#status #status} => String
|
|
962
972
|
# * {Types::GetFeedResponse#association #association} => Types::FeedAssociation
|
|
963
973
|
# * {Types::GetFeedResponse#tags #tags} => Hash<String,String>
|
|
@@ -982,6 +992,7 @@ module Aws::ElementalInference
|
|
|
982
992
|
# resp.outputs[0].output_config.cropping.template_groups[0].template_uris #=> Array
|
|
983
993
|
# resp.outputs[0].output_config.cropping.template_groups[0].template_uris[0] #=> String
|
|
984
994
|
# resp.outputs[0].output_config.clipping.callback_metadata #=> String
|
|
995
|
+
# resp.outputs[0].output_config.clipping.data_source_configuration.fixture_id #=> String
|
|
985
996
|
# resp.outputs[0].output_config.subtitling.language #=> String, one of "eng", "eng-au", "eng-gb", "eng-us", "fra", "ita", "deu", "spa", "por"
|
|
986
997
|
# resp.outputs[0].output_config.subtitling.aspect_ratio.width #=> Integer
|
|
987
998
|
# resp.outputs[0].output_config.subtitling.aspect_ratio.height #=> Integer
|
|
@@ -990,6 +1001,7 @@ module Aws::ElementalInference
|
|
|
990
1001
|
# resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
991
1002
|
# resp.outputs[0].description #=> String
|
|
992
1003
|
# resp.outputs[0].from_association #=> Boolean
|
|
1004
|
+
# resp.access_role_arn #=> String
|
|
993
1005
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
|
|
994
1006
|
# resp.association.associated_resource_name #=> String
|
|
995
1007
|
# resp.tags #=> Hash
|
|
@@ -1009,6 +1021,48 @@ module Aws::ElementalInference
|
|
|
1009
1021
|
req.send_request(options)
|
|
1010
1022
|
end
|
|
1011
1023
|
|
|
1024
|
+
# Retrieves information about the specified fixture (a sports event,
|
|
1025
|
+
# such as a specific basketball game). You obtain a fixtureId from
|
|
1026
|
+
# SearchFixtures, or from the clipping output of a feed.
|
|
1027
|
+
#
|
|
1028
|
+
# @option params [required, String] :fixture_id
|
|
1029
|
+
# The ID of the fixture to retrieve, as returned by SearchFixtures.
|
|
1030
|
+
#
|
|
1031
|
+
# @return [Types::GetFixtureResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1032
|
+
#
|
|
1033
|
+
# * {Types::GetFixtureResponse#fixture_id #fixture_id} => String
|
|
1034
|
+
# * {Types::GetFixtureResponse#name #name} => String
|
|
1035
|
+
# * {Types::GetFixtureResponse#fixture_group #fixture_group} => String
|
|
1036
|
+
# * {Types::GetFixtureResponse#scheduled_start #scheduled_start} => Time
|
|
1037
|
+
# * {Types::GetFixtureResponse#status #status} => String
|
|
1038
|
+
# * {Types::GetFixtureResponse#competitors #competitors} => Array<Types::Competitor>
|
|
1039
|
+
#
|
|
1040
|
+
# @example Request syntax with placeholder values
|
|
1041
|
+
#
|
|
1042
|
+
# resp = client.get_fixture({
|
|
1043
|
+
# fixture_id: "FixtureId", # required
|
|
1044
|
+
# })
|
|
1045
|
+
#
|
|
1046
|
+
# @example Response structure
|
|
1047
|
+
#
|
|
1048
|
+
# resp.fixture_id #=> String
|
|
1049
|
+
# resp.name #=> String
|
|
1050
|
+
# resp.fixture_group #=> String
|
|
1051
|
+
# resp.scheduled_start #=> Time
|
|
1052
|
+
# resp.status #=> String
|
|
1053
|
+
# resp.competitors #=> Array
|
|
1054
|
+
# resp.competitors[0].name #=> String
|
|
1055
|
+
# resp.competitors[0].is_home #=> Boolean
|
|
1056
|
+
#
|
|
1057
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixture AWS API Documentation
|
|
1058
|
+
#
|
|
1059
|
+
# @overload get_fixture(params = {})
|
|
1060
|
+
# @param [Hash] params ({})
|
|
1061
|
+
def get_fixture(params = {}, options = {})
|
|
1062
|
+
req = build_request(:get_fixture, params)
|
|
1063
|
+
req.send_request(options)
|
|
1064
|
+
end
|
|
1065
|
+
|
|
1012
1066
|
# Lists the dictionaries in your account.
|
|
1013
1067
|
#
|
|
1014
1068
|
# @option params [Integer] :max_results
|
|
@@ -1138,6 +1192,105 @@ module Aws::ElementalInference
|
|
|
1138
1192
|
req.send_request(options)
|
|
1139
1193
|
end
|
|
1140
1194
|
|
|
1195
|
+
# Searches for the fixtures (sports events, such as a specific
|
|
1196
|
+
# basketball game) that are available for a sport in a date window. Each
|
|
1197
|
+
# fixture in the response includes a fixtureId that you specify in the
|
|
1198
|
+
# clipping output of a feed, so that Elemental Inference maps the event
|
|
1199
|
+
# data for that fixture onto the clipping metadata. This operation is
|
|
1200
|
+
# paginated: if there are more fixtures than fit in one page, the
|
|
1201
|
+
# response includes a nextToken that you pass in a subsequent request.
|
|
1202
|
+
#
|
|
1203
|
+
# @option params [required, String] :sport
|
|
1204
|
+
# The sport to search for fixtures. Valid values: basketball (search for
|
|
1205
|
+
# basketball fixtures), american-football (search for american-football
|
|
1206
|
+
# fixtures).
|
|
1207
|
+
#
|
|
1208
|
+
# @option params [required, String] :start_date
|
|
1209
|
+
# The first day of the search window, in UTC. The search includes
|
|
1210
|
+
# fixtures that are scheduled on this day.
|
|
1211
|
+
#
|
|
1212
|
+
# Specify the date in ISO 8601 format, as `YYYY-MM-DD`. For example,
|
|
1213
|
+
# 2026-03-14.
|
|
1214
|
+
#
|
|
1215
|
+
# @option params [String] :end_date
|
|
1216
|
+
# The last day of the search window, in UTC. The search includes
|
|
1217
|
+
# fixtures that are scheduled on this day. Specify the date in ISO 8601
|
|
1218
|
+
# format, as `YYYY-MM-DD`.
|
|
1219
|
+
#
|
|
1220
|
+
# If you omit this parameter, Elemental Inference searches only the day
|
|
1221
|
+
# that you specified in startDate. The window from startDate through
|
|
1222
|
+
# endDate must not exceed seven days.
|
|
1223
|
+
#
|
|
1224
|
+
# @option params [Array<Types::SearchFilter>] :filters
|
|
1225
|
+
# An array of filters that narrow the results. Each filter applies to
|
|
1226
|
+
# one dimension of a fixture, such as the competitor. You can specify up
|
|
1227
|
+
# to 10 filters.
|
|
1228
|
+
#
|
|
1229
|
+
# A fixture must satisfy every filter in the array in order to appear in
|
|
1230
|
+
# the results. Within one filter, a fixture must match at least one of
|
|
1231
|
+
# the values.
|
|
1232
|
+
#
|
|
1233
|
+
# @option params [Integer] :max_results
|
|
1234
|
+
# The maximum number of fixtures to return for each API request.
|
|
1235
|
+
#
|
|
1236
|
+
# The service might return fewer fixtures than the maxResults value.
|
|
1237
|
+
# When more fixtures match the search, the response also includes a
|
|
1238
|
+
# nextToken value that you can use to fetch the next batch of results.
|
|
1239
|
+
#
|
|
1240
|
+
# @option params [String] :next_token
|
|
1241
|
+
# The token that identifies the batch of results that you want to see.
|
|
1242
|
+
#
|
|
1243
|
+
# For example, you submit a SearchFixtures request with maxResults set
|
|
1244
|
+
# at 5. The service returns the first batch of results (up to 5) and a
|
|
1245
|
+
# nextToken value. To see the next batch of results, you submit the
|
|
1246
|
+
# SearchFixtures request a second time, with the same search criteria,
|
|
1247
|
+
# and specify the nextToken value.
|
|
1248
|
+
#
|
|
1249
|
+
# @return [Types::SearchFixturesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1250
|
+
#
|
|
1251
|
+
# * {Types::SearchFixturesResponse#fixtures #fixtures} => Array<Types::FixtureSummary>
|
|
1252
|
+
# * {Types::SearchFixturesResponse#next_token #next_token} => String
|
|
1253
|
+
#
|
|
1254
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
1255
|
+
#
|
|
1256
|
+
# @example Request syntax with placeholder values
|
|
1257
|
+
#
|
|
1258
|
+
# resp = client.search_fixtures({
|
|
1259
|
+
# sport: "basketball", # required, accepts basketball, american-football
|
|
1260
|
+
# start_date: "FixtureDate", # required
|
|
1261
|
+
# end_date: "FixtureDate",
|
|
1262
|
+
# filters: [
|
|
1263
|
+
# {
|
|
1264
|
+
# name: "COMPETITOR", # required, accepts COMPETITOR
|
|
1265
|
+
# values: ["FilterValue"], # required
|
|
1266
|
+
# },
|
|
1267
|
+
# ],
|
|
1268
|
+
# max_results: 1,
|
|
1269
|
+
# next_token: "String",
|
|
1270
|
+
# })
|
|
1271
|
+
#
|
|
1272
|
+
# @example Response structure
|
|
1273
|
+
#
|
|
1274
|
+
# resp.fixtures #=> Array
|
|
1275
|
+
# resp.fixtures[0].fixture_id #=> String
|
|
1276
|
+
# resp.fixtures[0].name #=> String
|
|
1277
|
+
# resp.fixtures[0].fixture_group #=> String
|
|
1278
|
+
# resp.fixtures[0].scheduled_start #=> Time
|
|
1279
|
+
# resp.fixtures[0].status #=> String
|
|
1280
|
+
# resp.fixtures[0].competitors #=> Array
|
|
1281
|
+
# resp.fixtures[0].competitors[0].name #=> String
|
|
1282
|
+
# resp.fixtures[0].competitors[0].is_home #=> Boolean
|
|
1283
|
+
# resp.next_token #=> String
|
|
1284
|
+
#
|
|
1285
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/SearchFixtures AWS API Documentation
|
|
1286
|
+
#
|
|
1287
|
+
# @overload search_fixtures(params = {})
|
|
1288
|
+
# @param [Hash] params ({})
|
|
1289
|
+
def search_fixtures(params = {}, options = {})
|
|
1290
|
+
req = build_request(:search_fixtures, params)
|
|
1291
|
+
req.send_request(options)
|
|
1292
|
+
end
|
|
1293
|
+
|
|
1141
1294
|
# Associates the specified tags to the resource identified by the
|
|
1142
1295
|
# specified resourceArn in the current region. If existing tags on a
|
|
1143
1296
|
# resource are not specified in the request parameters, they are not
|
|
@@ -1289,6 +1442,7 @@ module Aws::ElementalInference
|
|
|
1289
1442
|
# * {Types::UpdateFeedResponse#id #id} => String
|
|
1290
1443
|
# * {Types::UpdateFeedResponse#data_endpoints #data_endpoints} => Array<String>
|
|
1291
1444
|
# * {Types::UpdateFeedResponse#outputs #outputs} => Array<Types::GetOutput>
|
|
1445
|
+
# * {Types::UpdateFeedResponse#access_role_arn #access_role_arn} => String
|
|
1292
1446
|
# * {Types::UpdateFeedResponse#status #status} => String
|
|
1293
1447
|
# * {Types::UpdateFeedResponse#association #association} => Types::FeedAssociation
|
|
1294
1448
|
# * {Types::UpdateFeedResponse#tags #tags} => Hash<String,String>
|
|
@@ -1313,6 +1467,9 @@ module Aws::ElementalInference
|
|
|
1313
1467
|
# },
|
|
1314
1468
|
# clipping: {
|
|
1315
1469
|
# callback_metadata: "ResourceDescription",
|
|
1470
|
+
# data_source_configuration: {
|
|
1471
|
+
# fixture_id: "FixtureId", # required
|
|
1472
|
+
# },
|
|
1316
1473
|
# },
|
|
1317
1474
|
# subtitling: {
|
|
1318
1475
|
# language: "eng", # required, accepts eng, eng-au, eng-gb, eng-us, fra, ita, deu, spa, por
|
|
@@ -1345,6 +1502,7 @@ module Aws::ElementalInference
|
|
|
1345
1502
|
# resp.outputs[0].output_config.cropping.template_groups[0].template_uris #=> Array
|
|
1346
1503
|
# resp.outputs[0].output_config.cropping.template_groups[0].template_uris[0] #=> String
|
|
1347
1504
|
# resp.outputs[0].output_config.clipping.callback_metadata #=> String
|
|
1505
|
+
# resp.outputs[0].output_config.clipping.data_source_configuration.fixture_id #=> String
|
|
1348
1506
|
# resp.outputs[0].output_config.subtitling.language #=> String, one of "eng", "eng-au", "eng-gb", "eng-us", "fra", "ita", "deu", "spa", "por"
|
|
1349
1507
|
# resp.outputs[0].output_config.subtitling.aspect_ratio.width #=> Integer
|
|
1350
1508
|
# resp.outputs[0].output_config.subtitling.aspect_ratio.height #=> Integer
|
|
@@ -1353,6 +1511,7 @@ module Aws::ElementalInference
|
|
|
1353
1511
|
# resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
|
|
1354
1512
|
# resp.outputs[0].description #=> String
|
|
1355
1513
|
# resp.outputs[0].from_association #=> Boolean
|
|
1514
|
+
# resp.access_role_arn #=> String
|
|
1356
1515
|
# resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
|
|
1357
1516
|
# resp.association.associated_resource_name #=> String
|
|
1358
1517
|
# resp.tags #=> Hash
|
|
@@ -1385,7 +1544,7 @@ module Aws::ElementalInference
|
|
|
1385
1544
|
tracer: tracer
|
|
1386
1545
|
)
|
|
1387
1546
|
context[:gem_name] = 'aws-sdk-elementalinference'
|
|
1388
|
-
context[:gem_version] = '1.
|
|
1547
|
+
context[:gem_version] = '1.10.0'
|
|
1389
1548
|
Seahorse::Client::Request.new(handlers, context)
|
|
1390
1549
|
end
|
|
1391
1550
|
|
|
@@ -21,6 +21,8 @@ module Aws::ElementalInference
|
|
|
21
21
|
AssociatedResourceName = Shapes::StringShape.new(name: 'AssociatedResourceName')
|
|
22
22
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
23
23
|
ClippingConfig = Shapes::StructureShape.new(name: 'ClippingConfig')
|
|
24
|
+
Competitor = Shapes::StructureShape.new(name: 'Competitor')
|
|
25
|
+
CompetitorList = Shapes::ListShape.new(name: 'CompetitorList')
|
|
24
26
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
25
27
|
CreateDictionaryRequest = Shapes::StructureShape.new(name: 'CreateDictionaryRequest')
|
|
26
28
|
CreateDictionaryResponse = Shapes::StructureShape.new(name: 'CreateDictionaryResponse')
|
|
@@ -29,6 +31,8 @@ module Aws::ElementalInference
|
|
|
29
31
|
CreateOutput = Shapes::StructureShape.new(name: 'CreateOutput')
|
|
30
32
|
CreateOutputList = Shapes::ListShape.new(name: 'CreateOutputList')
|
|
31
33
|
CroppingConfig = Shapes::StructureShape.new(name: 'CroppingConfig')
|
|
34
|
+
DataSourceConfiguration = Shapes::StructureShape.new(name: 'DataSourceConfiguration')
|
|
35
|
+
DataSourceSport = Shapes::StringShape.new(name: 'DataSourceSport')
|
|
32
36
|
DeleteDictionaryRequest = Shapes::StructureShape.new(name: 'DeleteDictionaryRequest')
|
|
33
37
|
DeleteDictionaryResponse = Shapes::StructureShape.new(name: 'DeleteDictionaryResponse')
|
|
34
38
|
DeleteFeedRequest = Shapes::StructureShape.new(name: 'DeleteFeedRequest')
|
|
@@ -51,10 +55,20 @@ module Aws::ElementalInference
|
|
|
51
55
|
FeedStatus = Shapes::StringShape.new(name: 'FeedStatus')
|
|
52
56
|
FeedSummary = Shapes::StructureShape.new(name: 'FeedSummary')
|
|
53
57
|
FeedSummaryList = Shapes::ListShape.new(name: 'FeedSummaryList')
|
|
58
|
+
FilterName = Shapes::StringShape.new(name: 'FilterName')
|
|
59
|
+
FilterValue = Shapes::StringShape.new(name: 'FilterValue')
|
|
60
|
+
FilterValueList = Shapes::ListShape.new(name: 'FilterValueList')
|
|
61
|
+
FixtureDate = Shapes::StringShape.new(name: 'FixtureDate')
|
|
62
|
+
FixtureId = Shapes::StringShape.new(name: 'FixtureId')
|
|
63
|
+
FixtureSummary = Shapes::StructureShape.new(name: 'FixtureSummary')
|
|
64
|
+
FixtureSummaryList = Shapes::ListShape.new(name: 'FixtureSummaryList')
|
|
65
|
+
GatewayTimedOutException = Shapes::StructureShape.new(name: 'GatewayTimedOutException')
|
|
54
66
|
GetDictionaryRequest = Shapes::StructureShape.new(name: 'GetDictionaryRequest')
|
|
55
67
|
GetDictionaryResponse = Shapes::StructureShape.new(name: 'GetDictionaryResponse')
|
|
56
68
|
GetFeedRequest = Shapes::StructureShape.new(name: 'GetFeedRequest')
|
|
57
69
|
GetFeedResponse = Shapes::StructureShape.new(name: 'GetFeedResponse')
|
|
70
|
+
GetFixtureRequest = Shapes::StructureShape.new(name: 'GetFixtureRequest')
|
|
71
|
+
GetFixtureResponse = Shapes::StructureShape.new(name: 'GetFixtureResponse')
|
|
58
72
|
GetOutput = Shapes::StructureShape.new(name: 'GetOutput')
|
|
59
73
|
GetOutputList = Shapes::ListShape.new(name: 'GetOutputList')
|
|
60
74
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
|
@@ -76,10 +90,17 @@ module Aws::ElementalInference
|
|
|
76
90
|
ResourceName = Shapes::StringShape.new(name: 'ResourceName')
|
|
77
91
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
|
78
92
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
|
93
|
+
SearchFilter = Shapes::StructureShape.new(name: 'SearchFilter')
|
|
94
|
+
SearchFilterList = Shapes::ListShape.new(name: 'SearchFilterList')
|
|
95
|
+
SearchFixturesRequest = Shapes::StructureShape.new(name: 'SearchFixturesRequest')
|
|
96
|
+
SearchFixturesRequestMaxResultsInteger = Shapes::IntegerShape.new(name: 'SearchFixturesRequestMaxResultsInteger')
|
|
97
|
+
SearchFixturesResponse = Shapes::StructureShape.new(name: 'SearchFixturesResponse')
|
|
79
98
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
99
|
+
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
|
80
100
|
String = Shapes::StringShape.new(name: 'String')
|
|
81
101
|
StringList = Shapes::ListShape.new(name: 'StringList')
|
|
82
102
|
SubtitlingConfig = Shapes::StructureShape.new(name: 'SubtitlingConfig')
|
|
103
|
+
SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
|
|
83
104
|
TagKey = Shapes::StringShape.new(name: 'TagKey')
|
|
84
105
|
TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
|
|
85
106
|
TagMap = Shapes::MapShape.new(name: 'TagMap')
|
|
@@ -117,8 +138,15 @@ module Aws::ElementalInference
|
|
|
117
138
|
AssociateFeedResponse.struct_class = Types::AssociateFeedResponse
|
|
118
139
|
|
|
119
140
|
ClippingConfig.add_member(:callback_metadata, Shapes::ShapeRef.new(shape: ResourceDescription, location_name: "callbackMetadata"))
|
|
141
|
+
ClippingConfig.add_member(:data_source_configuration, Shapes::ShapeRef.new(shape: DataSourceConfiguration, location_name: "dataSourceConfiguration"))
|
|
120
142
|
ClippingConfig.struct_class = Types::ClippingConfig
|
|
121
143
|
|
|
144
|
+
Competitor.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
|
145
|
+
Competitor.add_member(:is_home, Shapes::ShapeRef.new(shape: Boolean, location_name: "isHome"))
|
|
146
|
+
Competitor.struct_class = Types::Competitor
|
|
147
|
+
|
|
148
|
+
CompetitorList.member = Shapes::ShapeRef.new(shape: Competitor)
|
|
149
|
+
|
|
122
150
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
123
151
|
ConflictException.struct_class = Types::ConflictException
|
|
124
152
|
|
|
@@ -148,6 +176,7 @@ module Aws::ElementalInference
|
|
|
148
176
|
CreateFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
|
|
149
177
|
CreateFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
|
|
150
178
|
CreateFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
|
|
179
|
+
CreateFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
|
|
151
180
|
CreateFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
|
|
152
181
|
CreateFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
|
|
153
182
|
CreateFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
@@ -164,6 +193,9 @@ module Aws::ElementalInference
|
|
|
164
193
|
CroppingConfig.add_member(:template_groups, Shapes::ShapeRef.new(shape: TemplateGroupList, location_name: "templateGroups"))
|
|
165
194
|
CroppingConfig.struct_class = Types::CroppingConfig
|
|
166
195
|
|
|
196
|
+
DataSourceConfiguration.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location_name: "fixtureId"))
|
|
197
|
+
DataSourceConfiguration.struct_class = Types::DataSourceConfiguration
|
|
198
|
+
|
|
167
199
|
DeleteDictionaryRequest.add_member(:id, Shapes::ShapeRef.new(shape: DictionaryId, required: true, location: "uri", location_name: "id"))
|
|
168
200
|
DeleteDictionaryRequest.struct_class = Types::DeleteDictionaryRequest
|
|
169
201
|
|
|
@@ -218,6 +250,21 @@ module Aws::ElementalInference
|
|
|
218
250
|
|
|
219
251
|
FeedSummaryList.member = Shapes::ShapeRef.new(shape: FeedSummary)
|
|
220
252
|
|
|
253
|
+
FilterValueList.member = Shapes::ShapeRef.new(shape: FilterValue)
|
|
254
|
+
|
|
255
|
+
FixtureSummary.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location_name: "fixtureId"))
|
|
256
|
+
FixtureSummary.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
257
|
+
FixtureSummary.add_member(:fixture_group, Shapes::ShapeRef.new(shape: String, location_name: "fixtureGroup"))
|
|
258
|
+
FixtureSummary.add_member(:scheduled_start, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "scheduledStart"))
|
|
259
|
+
FixtureSummary.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "status"))
|
|
260
|
+
FixtureSummary.add_member(:competitors, Shapes::ShapeRef.new(shape: CompetitorList, required: true, location_name: "competitors"))
|
|
261
|
+
FixtureSummary.struct_class = Types::FixtureSummary
|
|
262
|
+
|
|
263
|
+
FixtureSummaryList.member = Shapes::ShapeRef.new(shape: FixtureSummary)
|
|
264
|
+
|
|
265
|
+
GatewayTimedOutException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
266
|
+
GatewayTimedOutException.struct_class = Types::GatewayTimedOutException
|
|
267
|
+
|
|
221
268
|
GetDictionaryRequest.add_member(:id, Shapes::ShapeRef.new(shape: DictionaryId, required: true, location: "uri", location_name: "id"))
|
|
222
269
|
GetDictionaryRequest.struct_class = Types::GetDictionaryRequest
|
|
223
270
|
|
|
@@ -238,11 +285,23 @@ module Aws::ElementalInference
|
|
|
238
285
|
GetFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
|
|
239
286
|
GetFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
|
|
240
287
|
GetFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
|
|
288
|
+
GetFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
|
|
241
289
|
GetFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
|
|
242
290
|
GetFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
|
|
243
291
|
GetFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
244
292
|
GetFeedResponse.struct_class = Types::GetFeedResponse
|
|
245
293
|
|
|
294
|
+
GetFixtureRequest.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location: "uri", location_name: "fixtureId"))
|
|
295
|
+
GetFixtureRequest.struct_class = Types::GetFixtureRequest
|
|
296
|
+
|
|
297
|
+
GetFixtureResponse.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location_name: "fixtureId"))
|
|
298
|
+
GetFixtureResponse.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
|
|
299
|
+
GetFixtureResponse.add_member(:fixture_group, Shapes::ShapeRef.new(shape: String, location_name: "fixtureGroup"))
|
|
300
|
+
GetFixtureResponse.add_member(:scheduled_start, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "scheduledStart"))
|
|
301
|
+
GetFixtureResponse.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "status"))
|
|
302
|
+
GetFixtureResponse.add_member(:competitors, Shapes::ShapeRef.new(shape: CompetitorList, required: true, location_name: "competitors"))
|
|
303
|
+
GetFixtureResponse.struct_class = Types::GetFixtureResponse
|
|
304
|
+
|
|
246
305
|
GetOutput.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
247
306
|
GetOutput.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, required: true, location_name: "outputConfig"))
|
|
248
307
|
GetOutput.add_member(:status, Shapes::ShapeRef.new(shape: OutputStatus, required: true, location_name: "status"))
|
|
@@ -290,9 +349,30 @@ module Aws::ElementalInference
|
|
|
290
349
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
291
350
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
|
292
351
|
|
|
352
|
+
SearchFilter.add_member(:name, Shapes::ShapeRef.new(shape: FilterName, required: true, location_name: "name"))
|
|
353
|
+
SearchFilter.add_member(:values, Shapes::ShapeRef.new(shape: FilterValueList, required: true, location_name: "values"))
|
|
354
|
+
SearchFilter.struct_class = Types::SearchFilter
|
|
355
|
+
|
|
356
|
+
SearchFilterList.member = Shapes::ShapeRef.new(shape: SearchFilter)
|
|
357
|
+
|
|
358
|
+
SearchFixturesRequest.add_member(:sport, Shapes::ShapeRef.new(shape: DataSourceSport, required: true, location_name: "sport"))
|
|
359
|
+
SearchFixturesRequest.add_member(:start_date, Shapes::ShapeRef.new(shape: FixtureDate, required: true, location_name: "startDate"))
|
|
360
|
+
SearchFixturesRequest.add_member(:end_date, Shapes::ShapeRef.new(shape: FixtureDate, location_name: "endDate"))
|
|
361
|
+
SearchFixturesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: SearchFilterList, location_name: "filters"))
|
|
362
|
+
SearchFixturesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: SearchFixturesRequestMaxResultsInteger, location_name: "maxResults"))
|
|
363
|
+
SearchFixturesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
364
|
+
SearchFixturesRequest.struct_class = Types::SearchFixturesRequest
|
|
365
|
+
|
|
366
|
+
SearchFixturesResponse.add_member(:fixtures, Shapes::ShapeRef.new(shape: FixtureSummaryList, required: true, location_name: "fixtures"))
|
|
367
|
+
SearchFixturesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "nextToken"))
|
|
368
|
+
SearchFixturesResponse.struct_class = Types::SearchFixturesResponse
|
|
369
|
+
|
|
293
370
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
294
371
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
|
295
372
|
|
|
373
|
+
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
|
374
|
+
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
|
375
|
+
|
|
296
376
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
|
297
377
|
|
|
298
378
|
SubtitlingConfig.add_member(:language, Shapes::ShapeRef.new(shape: TranscriptionLanguage, required: true, location_name: "language"))
|
|
@@ -351,6 +431,7 @@ module Aws::ElementalInference
|
|
|
351
431
|
UpdateFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
|
|
352
432
|
UpdateFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
|
|
353
433
|
UpdateFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
|
|
434
|
+
UpdateFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
|
|
354
435
|
UpdateFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
|
|
355
436
|
UpdateFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
|
|
356
437
|
UpdateFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
|
@@ -510,6 +591,21 @@ module Aws::ElementalInference
|
|
|
510
591
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
|
|
511
592
|
end)
|
|
512
593
|
|
|
594
|
+
api.add_operation(:get_fixture, Seahorse::Model::Operation.new.tap do |o|
|
|
595
|
+
o.name = "GetFixture"
|
|
596
|
+
o.http_method = "GET"
|
|
597
|
+
o.http_request_uri = "/v1/fixtures/{fixtureId}"
|
|
598
|
+
o.input = Shapes::ShapeRef.new(shape: GetFixtureRequest)
|
|
599
|
+
o.output = Shapes::ShapeRef.new(shape: GetFixtureResponse)
|
|
600
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
601
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
602
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
603
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
604
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
605
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
|
|
606
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimedOutException)
|
|
607
|
+
end)
|
|
608
|
+
|
|
513
609
|
api.add_operation(:list_dictionaries, Seahorse::Model::Operation.new.tap do |o|
|
|
514
610
|
o.name = "ListDictionaries"
|
|
515
611
|
o.http_method = "GET"
|
|
@@ -560,6 +656,26 @@ module Aws::ElementalInference
|
|
|
560
656
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
|
|
561
657
|
end)
|
|
562
658
|
|
|
659
|
+
api.add_operation(:search_fixtures, Seahorse::Model::Operation.new.tap do |o|
|
|
660
|
+
o.name = "SearchFixtures"
|
|
661
|
+
o.http_method = "POST"
|
|
662
|
+
o.http_request_uri = "/v1/fixtures"
|
|
663
|
+
o.input = Shapes::ShapeRef.new(shape: SearchFixturesRequest)
|
|
664
|
+
o.output = Shapes::ShapeRef.new(shape: SearchFixturesResponse)
|
|
665
|
+
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
|
666
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
|
667
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
668
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
669
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
|
|
670
|
+
o.errors << Shapes::ShapeRef.new(shape: GatewayTimedOutException)
|
|
671
|
+
o[:pager] = Aws::Pager.new(
|
|
672
|
+
limit_key: "max_results",
|
|
673
|
+
tokens: {
|
|
674
|
+
"next_token" => "next_token"
|
|
675
|
+
}
|
|
676
|
+
)
|
|
677
|
+
end)
|
|
678
|
+
|
|
563
679
|
api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
564
680
|
o.name = "TagResource"
|
|
565
681
|
o.http_method = "POST"
|
|
@@ -29,9 +29,11 @@ module Aws::ElementalInference
|
|
|
29
29
|
# ## Error Classes
|
|
30
30
|
# * {AccessDeniedException}
|
|
31
31
|
# * {ConflictException}
|
|
32
|
+
# * {GatewayTimedOutException}
|
|
32
33
|
# * {InternalServerErrorException}
|
|
33
34
|
# * {ResourceNotFoundException}
|
|
34
35
|
# * {ServiceQuotaExceededException}
|
|
36
|
+
# * {ServiceUnavailableException}
|
|
35
37
|
# * {TooManyRequestException}
|
|
36
38
|
# * {ValidationException}
|
|
37
39
|
#
|
|
@@ -75,6 +77,25 @@ module Aws::ElementalInference
|
|
|
75
77
|
end
|
|
76
78
|
end
|
|
77
79
|
|
|
80
|
+
class GatewayTimedOutException < ServiceError
|
|
81
|
+
|
|
82
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
83
|
+
# @param [String] message
|
|
84
|
+
# @param [Aws::ElementalInference::Types::GatewayTimedOutException] data
|
|
85
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
86
|
+
super(context, message, data)
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
# @return [String]
|
|
90
|
+
def message
|
|
91
|
+
@message || @data[:message]
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
def retryable?
|
|
95
|
+
true
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
78
99
|
class InternalServerErrorException < ServiceError
|
|
79
100
|
|
|
80
101
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -124,6 +145,25 @@ module Aws::ElementalInference
|
|
|
124
145
|
end
|
|
125
146
|
end
|
|
126
147
|
|
|
148
|
+
class ServiceUnavailableException < ServiceError
|
|
149
|
+
|
|
150
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
151
|
+
# @param [String] message
|
|
152
|
+
# @param [Aws::ElementalInference::Types::ServiceUnavailableException] data
|
|
153
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
154
|
+
super(context, message, data)
|
|
155
|
+
end
|
|
156
|
+
|
|
157
|
+
# @return [String]
|
|
158
|
+
def message
|
|
159
|
+
@message || @data[:message]
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
def retryable?
|
|
163
|
+
true
|
|
164
|
+
end
|
|
165
|
+
end
|
|
166
|
+
|
|
127
167
|
class TooManyRequestException < ServiceError
|
|
128
168
|
|
|
129
169
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -115,10 +115,43 @@ module Aws::ElementalInference
|
|
|
115
115
|
# the sports event in the source media, for example.
|
|
116
116
|
# @return [String]
|
|
117
117
|
#
|
|
118
|
+
# @!attribute [rw] data_source_configuration
|
|
119
|
+
# The data source to map onto this clipping output. This parameter is
|
|
120
|
+
# optional. When you include this parameter, Elemental Inference reads
|
|
121
|
+
# the event data for the fixture that you specify, and includes that
|
|
122
|
+
# data in the event clipping metadata for this output.
|
|
123
|
+
#
|
|
124
|
+
# If you omit this parameter, Elemental Inference doesn't map a data
|
|
125
|
+
# source onto this output.
|
|
126
|
+
# @return [Types::DataSourceConfiguration]
|
|
127
|
+
#
|
|
118
128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/ClippingConfig AWS API Documentation
|
|
119
129
|
#
|
|
120
130
|
class ClippingConfig < Struct.new(
|
|
121
|
-
:callback_metadata
|
|
131
|
+
:callback_metadata,
|
|
132
|
+
:data_source_configuration)
|
|
133
|
+
SENSITIVE = []
|
|
134
|
+
include Aws::Structure
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
# Contains information about one competitor in a fixture. It is used in
|
|
138
|
+
# the FixtureSummary that is in the SearchFixtures response.
|
|
139
|
+
#
|
|
140
|
+
# @!attribute [rw] name
|
|
141
|
+
# The name of the competitor, as provided by the data source.
|
|
142
|
+
# @return [String]
|
|
143
|
+
#
|
|
144
|
+
# @!attribute [rw] is_home
|
|
145
|
+
# Specifies whether this competitor is the home side in the fixture.
|
|
146
|
+
# If true, this competitor is the home side. If false, this competitor
|
|
147
|
+
# is the away side.
|
|
148
|
+
# @return [Boolean]
|
|
149
|
+
#
|
|
150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/Competitor AWS API Documentation
|
|
151
|
+
#
|
|
152
|
+
class Competitor < Struct.new(
|
|
153
|
+
:name,
|
|
154
|
+
:is_home)
|
|
122
155
|
SENSITIVE = []
|
|
123
156
|
include Aws::Structure
|
|
124
157
|
end
|
|
@@ -268,6 +301,12 @@ module Aws::ElementalInference
|
|
|
268
301
|
# Repeats the outputs that you specified in the request.
|
|
269
302
|
# @return [Array<Types::GetOutput>]
|
|
270
303
|
#
|
|
304
|
+
# @!attribute [rw] access_role_arn
|
|
305
|
+
# The Amazon Resource Name (ARN) of the AWS Identity and Access
|
|
306
|
+
# Management (IAM) role that you specified in the request. This
|
|
307
|
+
# property is absent if you didn't specify an IAM role.
|
|
308
|
+
# @return [String]
|
|
309
|
+
#
|
|
271
310
|
# @!attribute [rw] status
|
|
272
311
|
# The current status of the feed. After creation of the feed has
|
|
273
312
|
# succeeded, the status will be AVAILABLE.
|
|
@@ -291,6 +330,7 @@ module Aws::ElementalInference
|
|
|
291
330
|
:id,
|
|
292
331
|
:data_endpoints,
|
|
293
332
|
:outputs,
|
|
333
|
+
:access_role_arn,
|
|
294
334
|
:status,
|
|
295
335
|
:association,
|
|
296
336
|
:tags)
|
|
@@ -349,6 +389,28 @@ module Aws::ElementalInference
|
|
|
349
389
|
include Aws::Structure
|
|
350
390
|
end
|
|
351
391
|
|
|
392
|
+
# Contains the data source configuration for a clipping output. It
|
|
393
|
+
# identifies the fixture whose event data Elemental Inference maps onto
|
|
394
|
+
# the clipping metadata. It is used in the dataSourceConfiguration
|
|
395
|
+
# property of a ClippingConfig.
|
|
396
|
+
#
|
|
397
|
+
# @!attribute [rw] fixture_id
|
|
398
|
+
# The ID of the fixture whose event data you want Elemental Inference
|
|
399
|
+
# to map onto this clipping output. The fixture should be the sports
|
|
400
|
+
# event in the source media that the feed is processing.
|
|
401
|
+
#
|
|
402
|
+
# To obtain this ID, use the SearchFixtures operation to find the
|
|
403
|
+
# fixture, then use the fixtureId from the matching FixtureSummary.
|
|
404
|
+
# @return [String]
|
|
405
|
+
#
|
|
406
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/DataSourceConfiguration AWS API Documentation
|
|
407
|
+
#
|
|
408
|
+
class DataSourceConfiguration < Struct.new(
|
|
409
|
+
:fixture_id)
|
|
410
|
+
SENSITIVE = []
|
|
411
|
+
include Aws::Structure
|
|
412
|
+
end
|
|
413
|
+
|
|
352
414
|
# @!attribute [rw] id
|
|
353
415
|
# The ID of the dictionary to delete.
|
|
354
416
|
# @return [String]
|
|
@@ -575,6 +637,73 @@ module Aws::ElementalInference
|
|
|
575
637
|
include Aws::Structure
|
|
576
638
|
end
|
|
577
639
|
|
|
640
|
+
# Contains information about one fixture. It is used in the
|
|
641
|
+
# SearchFixtures response.
|
|
642
|
+
#
|
|
643
|
+
# Elemental Inference relays the information in this structure from the
|
|
644
|
+
# data source, so that you can identify the fixture that matches your
|
|
645
|
+
# source media.
|
|
646
|
+
#
|
|
647
|
+
# @!attribute [rw] fixture_id
|
|
648
|
+
# The ID of the fixture. Specify this ID in the clipping output of a
|
|
649
|
+
# feed, to identify the fixture whose event data you want Elemental
|
|
650
|
+
# Inference to map onto the clipping metadata.
|
|
651
|
+
# @return [String]
|
|
652
|
+
#
|
|
653
|
+
# @!attribute [rw] name
|
|
654
|
+
# The name of the fixture, as provided by the data source. For
|
|
655
|
+
# example, the names of the two competing teams.
|
|
656
|
+
# @return [String]
|
|
657
|
+
#
|
|
658
|
+
# @!attribute [rw] fixture_group
|
|
659
|
+
# The group that the fixture belongs to, such as the competition,
|
|
660
|
+
# league, or tournament. The data source doesn't provide this
|
|
661
|
+
# information for every fixture.
|
|
662
|
+
# @return [String]
|
|
663
|
+
#
|
|
664
|
+
# @!attribute [rw] scheduled_start
|
|
665
|
+
# The scheduled start time of the fixture, as provided by the data
|
|
666
|
+
# source. The actual start time might differ.
|
|
667
|
+
# @return [Time]
|
|
668
|
+
#
|
|
669
|
+
# @!attribute [rw] status
|
|
670
|
+
# The status of the fixture in its lifecycle, as provided by the data
|
|
671
|
+
# source. For example, Scheduled or Completed.
|
|
672
|
+
# @return [String]
|
|
673
|
+
#
|
|
674
|
+
# @!attribute [rw] competitors
|
|
675
|
+
# An array of the competitors (the teams or individuals) in the
|
|
676
|
+
# fixture.
|
|
677
|
+
# @return [Array<Types::Competitor>]
|
|
678
|
+
#
|
|
679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/FixtureSummary AWS API Documentation
|
|
680
|
+
#
|
|
681
|
+
class FixtureSummary < Struct.new(
|
|
682
|
+
:fixture_id,
|
|
683
|
+
:name,
|
|
684
|
+
:fixture_group,
|
|
685
|
+
:scheduled_start,
|
|
686
|
+
:status,
|
|
687
|
+
:competitors)
|
|
688
|
+
SENSITIVE = []
|
|
689
|
+
include Aws::Structure
|
|
690
|
+
end
|
|
691
|
+
|
|
692
|
+
# The request timed out before the service returned a response. This is
|
|
693
|
+
# a temporary condition. Retry the request. If the problem persists,
|
|
694
|
+
# contact AWS Support.
|
|
695
|
+
#
|
|
696
|
+
# @!attribute [rw] message
|
|
697
|
+
# @return [String]
|
|
698
|
+
#
|
|
699
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GatewayTimedOutException AWS API Documentation
|
|
700
|
+
#
|
|
701
|
+
class GatewayTimedOutException < Struct.new(
|
|
702
|
+
:message)
|
|
703
|
+
SENSITIVE = []
|
|
704
|
+
include Aws::Structure
|
|
705
|
+
end
|
|
706
|
+
|
|
578
707
|
# @!attribute [rw] id
|
|
579
708
|
# The ID of the dictionary to retrieve.
|
|
580
709
|
# @return [String]
|
|
@@ -661,6 +790,14 @@ module Aws::ElementalInference
|
|
|
661
790
|
# An array of the outputs in the feed.
|
|
662
791
|
# @return [Array<Types::GetOutput>]
|
|
663
792
|
#
|
|
793
|
+
# @!attribute [rw] access_role_arn
|
|
794
|
+
# The Amazon Resource Name (ARN) of an AWS Identity and Access
|
|
795
|
+
# Management (IAM) role that Elemental Inference assumes. Elemental
|
|
796
|
+
# Inference uses this role to access resources in your account on your
|
|
797
|
+
# behalf. This property is absent if the feed doesn't have an IAM
|
|
798
|
+
# role.
|
|
799
|
+
# @return [String]
|
|
800
|
+
#
|
|
664
801
|
# @!attribute [rw] status
|
|
665
802
|
# The status of the feed.
|
|
666
803
|
# @return [String]
|
|
@@ -683,6 +820,7 @@ module Aws::ElementalInference
|
|
|
683
820
|
:id,
|
|
684
821
|
:data_endpoints,
|
|
685
822
|
:outputs,
|
|
823
|
+
:access_role_arn,
|
|
686
824
|
:status,
|
|
687
825
|
:association,
|
|
688
826
|
:tags)
|
|
@@ -690,6 +828,61 @@ module Aws::ElementalInference
|
|
|
690
828
|
include Aws::Structure
|
|
691
829
|
end
|
|
692
830
|
|
|
831
|
+
# @!attribute [rw] fixture_id
|
|
832
|
+
# The ID of the fixture to retrieve, as returned by SearchFixtures.
|
|
833
|
+
# @return [String]
|
|
834
|
+
#
|
|
835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixtureRequest AWS API Documentation
|
|
836
|
+
#
|
|
837
|
+
class GetFixtureRequest < Struct.new(
|
|
838
|
+
:fixture_id)
|
|
839
|
+
SENSITIVE = []
|
|
840
|
+
include Aws::Structure
|
|
841
|
+
end
|
|
842
|
+
|
|
843
|
+
# @!attribute [rw] fixture_id
|
|
844
|
+
# The ID that you specified in the request.
|
|
845
|
+
# @return [String]
|
|
846
|
+
#
|
|
847
|
+
# @!attribute [rw] name
|
|
848
|
+
# The name of the fixture, as provided by the data source. For
|
|
849
|
+
# example, the names of the two competing teams.
|
|
850
|
+
# @return [String]
|
|
851
|
+
#
|
|
852
|
+
# @!attribute [rw] fixture_group
|
|
853
|
+
# The group that the fixture belongs to, such as the competition,
|
|
854
|
+
# league, or tournament. The data source doesn't provide this
|
|
855
|
+
# information for every fixture.
|
|
856
|
+
# @return [String]
|
|
857
|
+
#
|
|
858
|
+
# @!attribute [rw] scheduled_start
|
|
859
|
+
# The scheduled start time of the fixture, as provided by the data
|
|
860
|
+
# source. The actual start time might differ.
|
|
861
|
+
# @return [Time]
|
|
862
|
+
#
|
|
863
|
+
# @!attribute [rw] status
|
|
864
|
+
# The status of the fixture in its lifecycle, as provided by the data
|
|
865
|
+
# source. For example, Scheduled or Completed.
|
|
866
|
+
# @return [String]
|
|
867
|
+
#
|
|
868
|
+
# @!attribute [rw] competitors
|
|
869
|
+
# An array of the competitors (the teams or individuals) in the
|
|
870
|
+
# fixture.
|
|
871
|
+
# @return [Array<Types::Competitor>]
|
|
872
|
+
#
|
|
873
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixtureResponse AWS API Documentation
|
|
874
|
+
#
|
|
875
|
+
class GetFixtureResponse < Struct.new(
|
|
876
|
+
:fixture_id,
|
|
877
|
+
:name,
|
|
878
|
+
:fixture_group,
|
|
879
|
+
:scheduled_start,
|
|
880
|
+
:status,
|
|
881
|
+
:competitors)
|
|
882
|
+
SENSITIVE = []
|
|
883
|
+
include Aws::Structure
|
|
884
|
+
end
|
|
885
|
+
|
|
693
886
|
# Contains configuration information about one output in a feed. It is
|
|
694
887
|
# used in the GetFeed response.
|
|
695
888
|
#
|
|
@@ -910,6 +1103,115 @@ module Aws::ElementalInference
|
|
|
910
1103
|
include Aws::Structure
|
|
911
1104
|
end
|
|
912
1105
|
|
|
1106
|
+
# A filter for a fixture search. It is used in the filters array of a
|
|
1107
|
+
# SearchFixtures request.
|
|
1108
|
+
#
|
|
1109
|
+
# @!attribute [rw] name
|
|
1110
|
+
# The dimension of the fixture to filter on. Valid values: COMPETITOR.
|
|
1111
|
+
# @return [String]
|
|
1112
|
+
#
|
|
1113
|
+
# @!attribute [rw] values
|
|
1114
|
+
# An array of values to match in the dimension that you specified in
|
|
1115
|
+
# name. You can specify up to 10 values. A fixture appears in the
|
|
1116
|
+
# results if it matches at least one of these values.
|
|
1117
|
+
# @return [Array<String>]
|
|
1118
|
+
#
|
|
1119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/SearchFilter AWS API Documentation
|
|
1120
|
+
#
|
|
1121
|
+
class SearchFilter < Struct.new(
|
|
1122
|
+
:name,
|
|
1123
|
+
:values)
|
|
1124
|
+
SENSITIVE = []
|
|
1125
|
+
include Aws::Structure
|
|
1126
|
+
end
|
|
1127
|
+
|
|
1128
|
+
# @!attribute [rw] sport
|
|
1129
|
+
# The sport to search for fixtures. Valid values: basketball (search
|
|
1130
|
+
# for basketball fixtures), american-football (search for
|
|
1131
|
+
# american-football fixtures).
|
|
1132
|
+
# @return [String]
|
|
1133
|
+
#
|
|
1134
|
+
# @!attribute [rw] start_date
|
|
1135
|
+
# The first day of the search window, in UTC. The search includes
|
|
1136
|
+
# fixtures that are scheduled on this day.
|
|
1137
|
+
#
|
|
1138
|
+
# Specify the date in ISO 8601 format, as `YYYY-MM-DD`. For example,
|
|
1139
|
+
# 2026-03-14.
|
|
1140
|
+
# @return [String]
|
|
1141
|
+
#
|
|
1142
|
+
# @!attribute [rw] end_date
|
|
1143
|
+
# The last day of the search window, in UTC. The search includes
|
|
1144
|
+
# fixtures that are scheduled on this day. Specify the date in ISO
|
|
1145
|
+
# 8601 format, as `YYYY-MM-DD`.
|
|
1146
|
+
#
|
|
1147
|
+
# If you omit this parameter, Elemental Inference searches only the
|
|
1148
|
+
# day that you specified in startDate. The window from startDate
|
|
1149
|
+
# through endDate must not exceed seven days.
|
|
1150
|
+
# @return [String]
|
|
1151
|
+
#
|
|
1152
|
+
# @!attribute [rw] filters
|
|
1153
|
+
# An array of filters that narrow the results. Each filter applies to
|
|
1154
|
+
# one dimension of a fixture, such as the competitor. You can specify
|
|
1155
|
+
# up to 10 filters.
|
|
1156
|
+
#
|
|
1157
|
+
# A fixture must satisfy every filter in the array in order to appear
|
|
1158
|
+
# in the results. Within one filter, a fixture must match at least one
|
|
1159
|
+
# of the values.
|
|
1160
|
+
# @return [Array<Types::SearchFilter>]
|
|
1161
|
+
#
|
|
1162
|
+
# @!attribute [rw] max_results
|
|
1163
|
+
# The maximum number of fixtures to return for each API request.
|
|
1164
|
+
#
|
|
1165
|
+
# The service might return fewer fixtures than the maxResults value.
|
|
1166
|
+
# When more fixtures match the search, the response also includes a
|
|
1167
|
+
# nextToken value that you can use to fetch the next batch of results.
|
|
1168
|
+
# @return [Integer]
|
|
1169
|
+
#
|
|
1170
|
+
# @!attribute [rw] next_token
|
|
1171
|
+
# The token that identifies the batch of results that you want to see.
|
|
1172
|
+
#
|
|
1173
|
+
# For example, you submit a SearchFixtures request with maxResults set
|
|
1174
|
+
# at 5. The service returns the first batch of results (up to 5) and a
|
|
1175
|
+
# nextToken value. To see the next batch of results, you submit the
|
|
1176
|
+
# SearchFixtures request a second time, with the same search criteria,
|
|
1177
|
+
# and specify the nextToken value.
|
|
1178
|
+
# @return [String]
|
|
1179
|
+
#
|
|
1180
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/SearchFixturesRequest AWS API Documentation
|
|
1181
|
+
#
|
|
1182
|
+
class SearchFixturesRequest < Struct.new(
|
|
1183
|
+
:sport,
|
|
1184
|
+
:start_date,
|
|
1185
|
+
:end_date,
|
|
1186
|
+
:filters,
|
|
1187
|
+
:max_results,
|
|
1188
|
+
:next_token)
|
|
1189
|
+
SENSITIVE = []
|
|
1190
|
+
include Aws::Structure
|
|
1191
|
+
end
|
|
1192
|
+
|
|
1193
|
+
# @!attribute [rw] fixtures
|
|
1194
|
+
# An array of FixtureSummary objects, one for each fixture that
|
|
1195
|
+
# matches the search. The array is empty if no fixtures match.
|
|
1196
|
+
# @return [Array<Types::FixtureSummary>]
|
|
1197
|
+
#
|
|
1198
|
+
# @!attribute [rw] next_token
|
|
1199
|
+
# The token that identifies the next batch of results. To see the next
|
|
1200
|
+
# batch, submit the SearchFixtures request again, with the same search
|
|
1201
|
+
# criteria, and specify this value in nextToken.
|
|
1202
|
+
#
|
|
1203
|
+
# This parameter is absent when there are no more results to return.
|
|
1204
|
+
# @return [String]
|
|
1205
|
+
#
|
|
1206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/SearchFixturesResponse AWS API Documentation
|
|
1207
|
+
#
|
|
1208
|
+
class SearchFixturesResponse < Struct.new(
|
|
1209
|
+
:fixtures,
|
|
1210
|
+
:next_token)
|
|
1211
|
+
SENSITIVE = []
|
|
1212
|
+
include Aws::Structure
|
|
1213
|
+
end
|
|
1214
|
+
|
|
913
1215
|
# The request was rejected because it would exceed one or more service
|
|
914
1216
|
# quotas for your account. Review your service quotas and either delete
|
|
915
1217
|
# unused resources or request a quota increase.
|
|
@@ -925,6 +1227,20 @@ module Aws::ElementalInference
|
|
|
925
1227
|
include Aws::Structure
|
|
926
1228
|
end
|
|
927
1229
|
|
|
1230
|
+
# The service is temporarily unable to handle the request. Retry the
|
|
1231
|
+
# request. If the problem persists, contact AWS Support.
|
|
1232
|
+
#
|
|
1233
|
+
# @!attribute [rw] message
|
|
1234
|
+
# @return [String]
|
|
1235
|
+
#
|
|
1236
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/ServiceUnavailableException AWS API Documentation
|
|
1237
|
+
#
|
|
1238
|
+
class ServiceUnavailableException < Struct.new(
|
|
1239
|
+
:message)
|
|
1240
|
+
SENSITIVE = []
|
|
1241
|
+
include Aws::Structure
|
|
1242
|
+
end
|
|
1243
|
+
|
|
928
1244
|
# A type of OutputConfig, used when the output in a feed is for the
|
|
929
1245
|
# smart subtitling feature. smart subtitling uses automatic speech
|
|
930
1246
|
# recognition (ASR) to generate live TTML subtitles from the audio in
|
|
@@ -1165,6 +1481,12 @@ module Aws::ElementalInference
|
|
|
1165
1481
|
# unchanged, or you might have changed it.
|
|
1166
1482
|
# @return [Array<Types::GetOutput>]
|
|
1167
1483
|
#
|
|
1484
|
+
# @!attribute [rw] access_role_arn
|
|
1485
|
+
# The Amazon Resource Name (ARN) of the AWS Identity and Access
|
|
1486
|
+
# Management (IAM) role for the feed, after the update. This property
|
|
1487
|
+
# is absent if the feed doesn't have an IAM role.
|
|
1488
|
+
# @return [String]
|
|
1489
|
+
#
|
|
1168
1490
|
# @!attribute [rw] status
|
|
1169
1491
|
# The status of the feed.
|
|
1170
1492
|
# @return [String]
|
|
@@ -1186,6 +1508,7 @@ module Aws::ElementalInference
|
|
|
1186
1508
|
:id,
|
|
1187
1509
|
:data_endpoints,
|
|
1188
1510
|
:outputs,
|
|
1511
|
+
:access_role_arn,
|
|
1189
1512
|
:status,
|
|
1190
1513
|
:association,
|
|
1191
1514
|
:tags)
|
data/sig/client.rbs
CHANGED
|
@@ -120,6 +120,7 @@ module Aws
|
|
|
120
120
|
def id: () -> ::String
|
|
121
121
|
def data_endpoints: () -> ::Array[::String]
|
|
122
122
|
def outputs: () -> ::Array[Types::GetOutput]
|
|
123
|
+
def access_role_arn: () -> ::String
|
|
123
124
|
def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
124
125
|
def association: () -> Types::FeedAssociation
|
|
125
126
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -205,6 +206,7 @@ module Aws
|
|
|
205
206
|
def id: () -> ::String
|
|
206
207
|
def data_endpoints: () -> ::Array[::String]
|
|
207
208
|
def outputs: () -> ::Array[Types::GetOutput]
|
|
209
|
+
def access_role_arn: () -> ::String
|
|
208
210
|
def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
209
211
|
def association: () -> Types::FeedAssociation
|
|
210
212
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -215,6 +217,21 @@ module Aws
|
|
|
215
217
|
) -> _GetFeedResponseSuccess
|
|
216
218
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFeedResponseSuccess
|
|
217
219
|
|
|
220
|
+
interface _GetFixtureResponseSuccess
|
|
221
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetFixtureResponse]
|
|
222
|
+
def fixture_id: () -> ::String
|
|
223
|
+
def name: () -> ::String
|
|
224
|
+
def fixture_group: () -> ::String
|
|
225
|
+
def scheduled_start: () -> ::Time
|
|
226
|
+
def status: () -> ::String
|
|
227
|
+
def competitors: () -> ::Array[Types::Competitor]
|
|
228
|
+
end
|
|
229
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#get_fixture-instance_method
|
|
230
|
+
def get_fixture: (
|
|
231
|
+
fixture_id: ::String
|
|
232
|
+
) -> _GetFixtureResponseSuccess
|
|
233
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFixtureResponseSuccess
|
|
234
|
+
|
|
218
235
|
interface _ListDictionariesResponseSuccess
|
|
219
236
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDictionariesResponse]
|
|
220
237
|
def dictionaries: () -> ::Array[Types::DictionarySummary]
|
|
@@ -249,6 +266,27 @@ module Aws
|
|
|
249
266
|
) -> _ListTagsForResourceResponseSuccess
|
|
250
267
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
|
|
251
268
|
|
|
269
|
+
interface _SearchFixturesResponseSuccess
|
|
270
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchFixturesResponse]
|
|
271
|
+
def fixtures: () -> ::Array[Types::FixtureSummary]
|
|
272
|
+
def next_token: () -> ::String
|
|
273
|
+
end
|
|
274
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#search_fixtures-instance_method
|
|
275
|
+
def search_fixtures: (
|
|
276
|
+
sport: ("basketball" | "american-football"),
|
|
277
|
+
start_date: ::String,
|
|
278
|
+
?end_date: ::String,
|
|
279
|
+
?filters: Array[
|
|
280
|
+
{
|
|
281
|
+
name: ("COMPETITOR"),
|
|
282
|
+
values: Array[::String]
|
|
283
|
+
}
|
|
284
|
+
],
|
|
285
|
+
?max_results: ::Integer,
|
|
286
|
+
?next_token: ::String
|
|
287
|
+
) -> _SearchFixturesResponseSuccess
|
|
288
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchFixturesResponseSuccess
|
|
289
|
+
|
|
252
290
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#tag_resource-instance_method
|
|
253
291
|
def tag_resource: (
|
|
254
292
|
resource_arn: ::String,
|
|
@@ -289,6 +327,7 @@ module Aws
|
|
|
289
327
|
def id: () -> ::String
|
|
290
328
|
def data_endpoints: () -> ::Array[::String]
|
|
291
329
|
def outputs: () -> ::Array[Types::GetOutput]
|
|
330
|
+
def access_role_arn: () -> ::String
|
|
292
331
|
def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
293
332
|
def association: () -> Types::FeedAssociation
|
|
294
333
|
def tags: () -> ::Hash[::String, ::String]
|
data/sig/errors.rbs
CHANGED
|
@@ -17,6 +17,9 @@ module Aws
|
|
|
17
17
|
class ConflictException < ::Aws::Errors::ServiceError
|
|
18
18
|
def message: () -> ::String
|
|
19
19
|
end
|
|
20
|
+
class GatewayTimedOutException < ::Aws::Errors::ServiceError
|
|
21
|
+
def message: () -> ::String
|
|
22
|
+
end
|
|
20
23
|
class InternalServerErrorException < ::Aws::Errors::ServiceError
|
|
21
24
|
def message: () -> ::String
|
|
22
25
|
end
|
|
@@ -26,6 +29,9 @@ module Aws
|
|
|
26
29
|
class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
|
|
27
30
|
def message: () -> ::String
|
|
28
31
|
end
|
|
32
|
+
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
|
33
|
+
def message: () -> ::String
|
|
34
|
+
end
|
|
29
35
|
class TooManyRequestException < ::Aws::Errors::ServiceError
|
|
30
36
|
def message: () -> ::String
|
|
31
37
|
end
|
data/sig/params.rbs
CHANGED
data/sig/types.rbs
CHANGED
|
@@ -35,6 +35,13 @@ module Aws::ElementalInference
|
|
|
35
35
|
|
|
36
36
|
class ClippingConfig
|
|
37
37
|
attr_accessor callback_metadata: ::String
|
|
38
|
+
attr_accessor data_source_configuration: Types::DataSourceConfiguration
|
|
39
|
+
SENSITIVE: []
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
class Competitor
|
|
43
|
+
attr_accessor name: ::String
|
|
44
|
+
attr_accessor is_home: bool
|
|
38
45
|
SENSITIVE: []
|
|
39
46
|
end
|
|
40
47
|
|
|
@@ -76,6 +83,7 @@ module Aws::ElementalInference
|
|
|
76
83
|
attr_accessor id: ::String
|
|
77
84
|
attr_accessor data_endpoints: ::Array[::String]
|
|
78
85
|
attr_accessor outputs: ::Array[Types::GetOutput]
|
|
86
|
+
attr_accessor access_role_arn: ::String
|
|
79
87
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
80
88
|
attr_accessor association: Types::FeedAssociation
|
|
81
89
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -95,6 +103,11 @@ module Aws::ElementalInference
|
|
|
95
103
|
SENSITIVE: []
|
|
96
104
|
end
|
|
97
105
|
|
|
106
|
+
class DataSourceConfiguration
|
|
107
|
+
attr_accessor fixture_id: ::String
|
|
108
|
+
SENSITIVE: []
|
|
109
|
+
end
|
|
110
|
+
|
|
98
111
|
class DeleteDictionaryRequest
|
|
99
112
|
attr_accessor id: ::String
|
|
100
113
|
SENSITIVE: []
|
|
@@ -165,6 +178,21 @@ module Aws::ElementalInference
|
|
|
165
178
|
SENSITIVE: []
|
|
166
179
|
end
|
|
167
180
|
|
|
181
|
+
class FixtureSummary
|
|
182
|
+
attr_accessor fixture_id: ::String
|
|
183
|
+
attr_accessor name: ::String
|
|
184
|
+
attr_accessor fixture_group: ::String
|
|
185
|
+
attr_accessor scheduled_start: ::Time
|
|
186
|
+
attr_accessor status: ::String
|
|
187
|
+
attr_accessor competitors: ::Array[Types::Competitor]
|
|
188
|
+
SENSITIVE: []
|
|
189
|
+
end
|
|
190
|
+
|
|
191
|
+
class GatewayTimedOutException
|
|
192
|
+
attr_accessor message: ::String
|
|
193
|
+
SENSITIVE: []
|
|
194
|
+
end
|
|
195
|
+
|
|
168
196
|
class GetDictionaryRequest
|
|
169
197
|
attr_accessor id: ::String
|
|
170
198
|
SENSITIVE: []
|
|
@@ -192,12 +220,28 @@ module Aws::ElementalInference
|
|
|
192
220
|
attr_accessor id: ::String
|
|
193
221
|
attr_accessor data_endpoints: ::Array[::String]
|
|
194
222
|
attr_accessor outputs: ::Array[Types::GetOutput]
|
|
223
|
+
attr_accessor access_role_arn: ::String
|
|
195
224
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
196
225
|
attr_accessor association: Types::FeedAssociation
|
|
197
226
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
198
227
|
SENSITIVE: []
|
|
199
228
|
end
|
|
200
229
|
|
|
230
|
+
class GetFixtureRequest
|
|
231
|
+
attr_accessor fixture_id: ::String
|
|
232
|
+
SENSITIVE: []
|
|
233
|
+
end
|
|
234
|
+
|
|
235
|
+
class GetFixtureResponse
|
|
236
|
+
attr_accessor fixture_id: ::String
|
|
237
|
+
attr_accessor name: ::String
|
|
238
|
+
attr_accessor fixture_group: ::String
|
|
239
|
+
attr_accessor scheduled_start: ::Time
|
|
240
|
+
attr_accessor status: ::String
|
|
241
|
+
attr_accessor competitors: ::Array[Types::Competitor]
|
|
242
|
+
SENSITIVE: []
|
|
243
|
+
end
|
|
244
|
+
|
|
201
245
|
class GetOutput
|
|
202
246
|
attr_accessor name: ::String
|
|
203
247
|
attr_accessor output_config: Types::OutputConfig
|
|
@@ -268,11 +312,38 @@ module Aws::ElementalInference
|
|
|
268
312
|
SENSITIVE: []
|
|
269
313
|
end
|
|
270
314
|
|
|
315
|
+
class SearchFilter
|
|
316
|
+
attr_accessor name: ("COMPETITOR")
|
|
317
|
+
attr_accessor values: ::Array[::String]
|
|
318
|
+
SENSITIVE: []
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
class SearchFixturesRequest
|
|
322
|
+
attr_accessor sport: ("basketball" | "american-football")
|
|
323
|
+
attr_accessor start_date: ::String
|
|
324
|
+
attr_accessor end_date: ::String
|
|
325
|
+
attr_accessor filters: ::Array[Types::SearchFilter]
|
|
326
|
+
attr_accessor max_results: ::Integer
|
|
327
|
+
attr_accessor next_token: ::String
|
|
328
|
+
SENSITIVE: []
|
|
329
|
+
end
|
|
330
|
+
|
|
331
|
+
class SearchFixturesResponse
|
|
332
|
+
attr_accessor fixtures: ::Array[Types::FixtureSummary]
|
|
333
|
+
attr_accessor next_token: ::String
|
|
334
|
+
SENSITIVE: []
|
|
335
|
+
end
|
|
336
|
+
|
|
271
337
|
class ServiceQuotaExceededException
|
|
272
338
|
attr_accessor message: ::String
|
|
273
339
|
SENSITIVE: []
|
|
274
340
|
end
|
|
275
341
|
|
|
342
|
+
class ServiceUnavailableException
|
|
343
|
+
attr_accessor message: ::String
|
|
344
|
+
SENSITIVE: []
|
|
345
|
+
end
|
|
346
|
+
|
|
276
347
|
class SubtitlingConfig
|
|
277
348
|
attr_accessor language: ("eng" | "eng-au" | "eng-gb" | "eng-us" | "fra" | "ita" | "deu" | "spa" | "por")
|
|
278
349
|
attr_accessor aspect_ratio: Types::AspectRatio
|
|
@@ -337,6 +408,7 @@ module Aws::ElementalInference
|
|
|
337
408
|
attr_accessor id: ::String
|
|
338
409
|
attr_accessor data_endpoints: ::Array[::String]
|
|
339
410
|
attr_accessor outputs: ::Array[Types::GetOutput]
|
|
411
|
+
attr_accessor access_role_arn: ::String
|
|
340
412
|
attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
|
|
341
413
|
attr_accessor association: Types::FeedAssociation
|
|
342
414
|
attr_accessor tags: ::Hash[::String, ::String]
|