aws-sdk-elementalinference 1.9.0 → 1.11.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fdab254705c8b63b39bf7a63ba63e7153f35e9ad4daa9603b9dd08d41aa5a9f2
4
- data.tar.gz: 6478495851af7d577feb624211e1e690d1db54ef01d5e3653193cbae3bc28a85
3
+ metadata.gz: f5f793797c52d5837e288c050b0cf9da304143239a7b464f0bb2b4ef7142b9bd
4
+ data.tar.gz: 4cc2270a2f909cb6e78a0ab3f2a6d91b2170f4c863e406c7225892755d5728ff
5
5
  SHA512:
6
- metadata.gz: 5a23139ec7ce4071609ff74eceaebd820c52a454f58d283961e85691f57ce7ea3bd90cb4a4e4f77115c371deb5f89df17af587ccf41fd74b176c731aecd2ac3f
7
- data.tar.gz: e404896a7723cdeb5c9967a4111f2d74e9c6a2d5048ce5633e39e92321a1402348e9982d29e063b00ed84a169110c4a42cd3f4e61c5c3a68300d0f93fcaeaf90
6
+ metadata.gz: bcff066d668988059e4bf762a938ad2ff692e582a76cf6c626bd83f19648c880cd580b3fb1cff37dac8f42a8b7f7b835cdf6a794eb466d1297a8cb6207275045
7
+ data.tar.gz: 604b118867c7e59639f95f887ba83f994cfcf030669e07e5d1fad026700560e30734817491b1efd67438950cca94f73971b4cfa2137353939179a2e390e247ba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2026-09-09)
5
+ ------------------
6
+
7
+ * Feature - This release adds contextual metadata, a feed output type that generates a descriptive summary of your media content along with IAB taxonomy and GARM suitability classifications. It also adds feed resource policies for granting cross-account access to a feed.
8
+
9
+ 1.10.0 (2026-08-24)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.9.0 (2026-08-10)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.11.0
@@ -563,6 +563,9 @@ module Aws::ElementalInference
563
563
  # dictionary: "DictionaryId",
564
564
  # profanity_filter: "DISABLED", # accepts DISABLED, CENSOR, DROP
565
565
  # },
566
+ # contextual_metadata: {
567
+ # summary_generation: "ENABLED", # accepts ENABLED, DISABLED
568
+ # },
566
569
  # },
567
570
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
568
571
  # description: "ResourceDescription",
@@ -683,6 +686,7 @@ module Aws::ElementalInference
683
686
  # * {Types::CreateFeedResponse#id #id} => String
684
687
  # * {Types::CreateFeedResponse#data_endpoints #data_endpoints} => Array<String>
685
688
  # * {Types::CreateFeedResponse#outputs #outputs} => Array<Types::GetOutput>
689
+ # * {Types::CreateFeedResponse#access_role_arn #access_role_arn} => String
686
690
  # * {Types::CreateFeedResponse#status #status} => String
687
691
  # * {Types::CreateFeedResponse#association #association} => Types::FeedAssociation
688
692
  # * {Types::CreateFeedResponse#tags #tags} => Hash<String,String>
@@ -719,6 +723,9 @@ module Aws::ElementalInference
719
723
  # dictionary: "DictionaryId",
720
724
  # profanity_filter: "DISABLED", # accepts DISABLED, CENSOR, DROP
721
725
  # },
726
+ # contextual_metadata: {
727
+ # summary_generation: "ENABLED", # accepts ENABLED, DISABLED
728
+ # },
722
729
  # },
723
730
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
724
731
  # description: "ResourceDescription",
@@ -749,9 +756,11 @@ module Aws::ElementalInference
749
756
  # resp.outputs[0].output_config.subtitling.aspect_ratio.height #=> Integer
750
757
  # resp.outputs[0].output_config.subtitling.dictionary #=> String
751
758
  # resp.outputs[0].output_config.subtitling.profanity_filter #=> String, one of "DISABLED", "CENSOR", "DROP"
759
+ # resp.outputs[0].output_config.contextual_metadata.summary_generation #=> String, one of "ENABLED", "DISABLED"
752
760
  # resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
753
761
  # resp.outputs[0].description #=> String
754
762
  # resp.outputs[0].from_association #=> Boolean
763
+ # resp.access_role_arn #=> String
755
764
  # resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
756
765
  # resp.association.associated_resource_name #=> String
757
766
  # resp.tags #=> Hash
@@ -836,6 +845,30 @@ module Aws::ElementalInference
836
845
  req.send_request(options)
837
846
  end
838
847
 
848
+ # Deletes the resource-based policy attached to the specified feed.
849
+ # After you delete the policy, the operation revokes the cross-account
850
+ # access that the policy granted.
851
+ #
852
+ # @option params [required, String] :id
853
+ # The ID of the feed whose policy you want to delete.
854
+ #
855
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
856
+ #
857
+ # @example Request syntax with placeholder values
858
+ #
859
+ # resp = client.delete_feed_policy({
860
+ # id: "FeedId", # required
861
+ # })
862
+ #
863
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/DeleteFeedPolicy AWS API Documentation
864
+ #
865
+ # @overload delete_feed_policy(params = {})
866
+ # @param [Hash] params ({})
867
+ def delete_feed_policy(params = {}, options = {})
868
+ req = build_request(:delete_feed_policy, params)
869
+ req.send_request(options)
870
+ end
871
+
839
872
  # Releases the resource (the source media) that is associated with this
840
873
  # feed. The outputs in the feed become DISABLED.
841
874
  #
@@ -965,6 +998,7 @@ module Aws::ElementalInference
965
998
  # * {Types::GetFeedResponse#id #id} => String
966
999
  # * {Types::GetFeedResponse#data_endpoints #data_endpoints} => Array<String>
967
1000
  # * {Types::GetFeedResponse#outputs #outputs} => Array<Types::GetOutput>
1001
+ # * {Types::GetFeedResponse#access_role_arn #access_role_arn} => String
968
1002
  # * {Types::GetFeedResponse#status #status} => String
969
1003
  # * {Types::GetFeedResponse#association #association} => Types::FeedAssociation
970
1004
  # * {Types::GetFeedResponse#tags #tags} => Hash<String,String>
@@ -995,9 +1029,11 @@ module Aws::ElementalInference
995
1029
  # resp.outputs[0].output_config.subtitling.aspect_ratio.height #=> Integer
996
1030
  # resp.outputs[0].output_config.subtitling.dictionary #=> String
997
1031
  # resp.outputs[0].output_config.subtitling.profanity_filter #=> String, one of "DISABLED", "CENSOR", "DROP"
1032
+ # resp.outputs[0].output_config.contextual_metadata.summary_generation #=> String, one of "ENABLED", "DISABLED"
998
1033
  # resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
999
1034
  # resp.outputs[0].description #=> String
1000
1035
  # resp.outputs[0].from_association #=> Boolean
1036
+ # resp.access_role_arn #=> String
1001
1037
  # resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
1002
1038
  # resp.association.associated_resource_name #=> String
1003
1039
  # resp.tags #=> Hash
@@ -1017,6 +1053,76 @@ module Aws::ElementalInference
1017
1053
  req.send_request(options)
1018
1054
  end
1019
1055
 
1056
+ # Retrieves the resource-based policy attached to the specified feed.
1057
+ #
1058
+ # @option params [required, String] :id
1059
+ # The ID of the feed whose policy you want to retrieve.
1060
+ #
1061
+ # @return [Types::GetFeedPolicyResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1062
+ #
1063
+ # * {Types::GetFeedPolicyResponse#policy #policy} => String
1064
+ #
1065
+ # @example Request syntax with placeholder values
1066
+ #
1067
+ # resp = client.get_feed_policy({
1068
+ # id: "FeedId", # required
1069
+ # })
1070
+ #
1071
+ # @example Response structure
1072
+ #
1073
+ # resp.policy #=> String
1074
+ #
1075
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFeedPolicy AWS API Documentation
1076
+ #
1077
+ # @overload get_feed_policy(params = {})
1078
+ # @param [Hash] params ({})
1079
+ def get_feed_policy(params = {}, options = {})
1080
+ req = build_request(:get_feed_policy, params)
1081
+ req.send_request(options)
1082
+ end
1083
+
1084
+ # Retrieves information about the specified fixture (a sports event,
1085
+ # such as a specific basketball game). You obtain a fixtureId from
1086
+ # SearchFixtures, or from the clipping output of a feed.
1087
+ #
1088
+ # @option params [required, String] :fixture_id
1089
+ # The ID of the fixture to retrieve, as returned by SearchFixtures.
1090
+ #
1091
+ # @return [Types::GetFixtureResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1092
+ #
1093
+ # * {Types::GetFixtureResponse#fixture_id #fixture_id} => String
1094
+ # * {Types::GetFixtureResponse#name #name} => String
1095
+ # * {Types::GetFixtureResponse#fixture_group #fixture_group} => String
1096
+ # * {Types::GetFixtureResponse#scheduled_start #scheduled_start} => Time
1097
+ # * {Types::GetFixtureResponse#status #status} => String
1098
+ # * {Types::GetFixtureResponse#competitors #competitors} => Array<Types::Competitor>
1099
+ #
1100
+ # @example Request syntax with placeholder values
1101
+ #
1102
+ # resp = client.get_fixture({
1103
+ # fixture_id: "FixtureId", # required
1104
+ # })
1105
+ #
1106
+ # @example Response structure
1107
+ #
1108
+ # resp.fixture_id #=> String
1109
+ # resp.name #=> String
1110
+ # resp.fixture_group #=> String
1111
+ # resp.scheduled_start #=> Time
1112
+ # resp.status #=> String
1113
+ # resp.competitors #=> Array
1114
+ # resp.competitors[0].name #=> String
1115
+ # resp.competitors[0].is_home #=> Boolean
1116
+ #
1117
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixture AWS API Documentation
1118
+ #
1119
+ # @overload get_fixture(params = {})
1120
+ # @param [Hash] params ({})
1121
+ def get_fixture(params = {}, options = {})
1122
+ req = build_request(:get_fixture, params)
1123
+ req.send_request(options)
1124
+ end
1125
+
1020
1126
  # Lists the dictionaries in your account.
1021
1127
  #
1022
1128
  # @option params [Integer] :max_results
@@ -1146,6 +1252,33 @@ module Aws::ElementalInference
1146
1252
  req.send_request(options)
1147
1253
  end
1148
1254
 
1255
+ # Attaches or replaces a resource-based policy on the specified feed. A
1256
+ # resource-based policy grants cross-account access to the feed.
1257
+ #
1258
+ # @option params [required, String] :id
1259
+ # The ID of the feed to attach the policy to.
1260
+ #
1261
+ # @option params [required, String] :policy
1262
+ # The resource-based policy document to attach to the feed.
1263
+ #
1264
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1265
+ #
1266
+ # @example Request syntax with placeholder values
1267
+ #
1268
+ # resp = client.put_feed_policy({
1269
+ # id: "FeedId", # required
1270
+ # policy: "PolicyDocument", # required
1271
+ # })
1272
+ #
1273
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/PutFeedPolicy AWS API Documentation
1274
+ #
1275
+ # @overload put_feed_policy(params = {})
1276
+ # @param [Hash] params ({})
1277
+ def put_feed_policy(params = {}, options = {})
1278
+ req = build_request(:put_feed_policy, params)
1279
+ req.send_request(options)
1280
+ end
1281
+
1149
1282
  # Searches for the fixtures (sports events, such as a specific
1150
1283
  # basketball game) that are available for a sport in a date window. Each
1151
1284
  # fixture in the response includes a fixtureId that you specify in the
@@ -1396,6 +1529,7 @@ module Aws::ElementalInference
1396
1529
  # * {Types::UpdateFeedResponse#id #id} => String
1397
1530
  # * {Types::UpdateFeedResponse#data_endpoints #data_endpoints} => Array<String>
1398
1531
  # * {Types::UpdateFeedResponse#outputs #outputs} => Array<Types::GetOutput>
1532
+ # * {Types::UpdateFeedResponse#access_role_arn #access_role_arn} => String
1399
1533
  # * {Types::UpdateFeedResponse#status #status} => String
1400
1534
  # * {Types::UpdateFeedResponse#association #association} => Types::FeedAssociation
1401
1535
  # * {Types::UpdateFeedResponse#tags #tags} => Hash<String,String>
@@ -1433,6 +1567,9 @@ module Aws::ElementalInference
1433
1567
  # dictionary: "DictionaryId",
1434
1568
  # profanity_filter: "DISABLED", # accepts DISABLED, CENSOR, DROP
1435
1569
  # },
1570
+ # contextual_metadata: {
1571
+ # summary_generation: "ENABLED", # accepts ENABLED, DISABLED
1572
+ # },
1436
1573
  # },
1437
1574
  # status: "ENABLED", # required, accepts ENABLED, DISABLED
1438
1575
  # description: "ResourceDescription",
@@ -1461,9 +1598,11 @@ module Aws::ElementalInference
1461
1598
  # resp.outputs[0].output_config.subtitling.aspect_ratio.height #=> Integer
1462
1599
  # resp.outputs[0].output_config.subtitling.dictionary #=> String
1463
1600
  # resp.outputs[0].output_config.subtitling.profanity_filter #=> String, one of "DISABLED", "CENSOR", "DROP"
1601
+ # resp.outputs[0].output_config.contextual_metadata.summary_generation #=> String, one of "ENABLED", "DISABLED"
1464
1602
  # resp.outputs[0].status #=> String, one of "ENABLED", "DISABLED"
1465
1603
  # resp.outputs[0].description #=> String
1466
1604
  # resp.outputs[0].from_association #=> Boolean
1605
+ # resp.access_role_arn #=> String
1467
1606
  # resp.status #=> String, one of "CREATING", "AVAILABLE", "ACTIVE", "UPDATING", "DELETING", "DELETED", "ARCHIVED"
1468
1607
  # resp.association.associated_resource_name #=> String
1469
1608
  # resp.tags #=> Hash
@@ -1496,7 +1635,7 @@ module Aws::ElementalInference
1496
1635
  tracer: tracer
1497
1636
  )
1498
1637
  context[:gem_name] = 'aws-sdk-elementalinference'
1499
- context[:gem_version] = '1.9.0'
1638
+ context[:gem_version] = '1.11.0'
1500
1639
  Seahorse::Client::Request.new(handlers, context)
1501
1640
  end
1502
1641
 
@@ -24,6 +24,7 @@ module Aws::ElementalInference
24
24
  Competitor = Shapes::StructureShape.new(name: 'Competitor')
25
25
  CompetitorList = Shapes::ListShape.new(name: 'CompetitorList')
26
26
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
27
+ ContextualMetadataConfig = Shapes::StructureShape.new(name: 'ContextualMetadataConfig')
27
28
  CreateDictionaryRequest = Shapes::StructureShape.new(name: 'CreateDictionaryRequest')
28
29
  CreateDictionaryResponse = Shapes::StructureShape.new(name: 'CreateDictionaryResponse')
29
30
  CreateFeedRequest = Shapes::StructureShape.new(name: 'CreateFeedRequest')
@@ -35,6 +36,7 @@ module Aws::ElementalInference
35
36
  DataSourceSport = Shapes::StringShape.new(name: 'DataSourceSport')
36
37
  DeleteDictionaryRequest = Shapes::StructureShape.new(name: 'DeleteDictionaryRequest')
37
38
  DeleteDictionaryResponse = Shapes::StructureShape.new(name: 'DeleteDictionaryResponse')
39
+ DeleteFeedPolicyRequest = Shapes::StructureShape.new(name: 'DeleteFeedPolicyRequest')
38
40
  DeleteFeedRequest = Shapes::StructureShape.new(name: 'DeleteFeedRequest')
39
41
  DeleteFeedResponse = Shapes::StructureShape.new(name: 'DeleteFeedResponse')
40
42
  DictionaryArn = Shapes::StringShape.new(name: 'DictionaryArn')
@@ -65,8 +67,12 @@ module Aws::ElementalInference
65
67
  GatewayTimedOutException = Shapes::StructureShape.new(name: 'GatewayTimedOutException')
66
68
  GetDictionaryRequest = Shapes::StructureShape.new(name: 'GetDictionaryRequest')
67
69
  GetDictionaryResponse = Shapes::StructureShape.new(name: 'GetDictionaryResponse')
70
+ GetFeedPolicyRequest = Shapes::StructureShape.new(name: 'GetFeedPolicyRequest')
71
+ GetFeedPolicyResponse = Shapes::StructureShape.new(name: 'GetFeedPolicyResponse')
68
72
  GetFeedRequest = Shapes::StructureShape.new(name: 'GetFeedRequest')
69
73
  GetFeedResponse = Shapes::StructureShape.new(name: 'GetFeedResponse')
74
+ GetFixtureRequest = Shapes::StructureShape.new(name: 'GetFixtureRequest')
75
+ GetFixtureResponse = Shapes::StructureShape.new(name: 'GetFixtureResponse')
70
76
  GetOutput = Shapes::StructureShape.new(name: 'GetOutput')
71
77
  GetOutputList = Shapes::ListShape.new(name: 'GetOutputList')
72
78
  IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
@@ -82,7 +88,10 @@ module Aws::ElementalInference
82
88
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
83
89
  OutputConfig = Shapes::UnionShape.new(name: 'OutputConfig')
84
90
  OutputStatus = Shapes::StringShape.new(name: 'OutputStatus')
91
+ PolicyDocument = Shapes::StringShape.new(name: 'PolicyDocument')
85
92
  ProfanityFilterMode = Shapes::StringShape.new(name: 'ProfanityFilterMode')
93
+ PutFeedPolicyRequest = Shapes::StructureShape.new(name: 'PutFeedPolicyRequest')
94
+ PutFeedPolicyResponse = Shapes::StructureShape.new(name: 'PutFeedPolicyResponse')
86
95
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
87
96
  ResourceDescription = Shapes::StringShape.new(name: 'ResourceDescription')
88
97
  ResourceName = Shapes::StringShape.new(name: 'ResourceName')
@@ -98,6 +107,7 @@ module Aws::ElementalInference
98
107
  String = Shapes::StringShape.new(name: 'String')
99
108
  StringList = Shapes::ListShape.new(name: 'StringList')
100
109
  SubtitlingConfig = Shapes::StructureShape.new(name: 'SubtitlingConfig')
110
+ SummaryGenerationMode = Shapes::StringShape.new(name: 'SummaryGenerationMode')
101
111
  SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
102
112
  TagKey = Shapes::StringShape.new(name: 'TagKey')
103
113
  TagKeyList = Shapes::ListShape.new(name: 'TagKeyList')
@@ -148,6 +158,9 @@ module Aws::ElementalInference
148
158
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
149
159
  ConflictException.struct_class = Types::ConflictException
150
160
 
161
+ ContextualMetadataConfig.add_member(:summary_generation, Shapes::ShapeRef.new(shape: SummaryGenerationMode, location_name: "summaryGeneration"))
162
+ ContextualMetadataConfig.struct_class = Types::ContextualMetadataConfig
163
+
151
164
  CreateDictionaryRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
152
165
  CreateDictionaryRequest.add_member(:language, Shapes::ShapeRef.new(shape: DictionaryLanguage, required: true, location_name: "language"))
153
166
  CreateDictionaryRequest.add_member(:entries, Shapes::ShapeRef.new(shape: DictionaryEntriesPayload, location_name: "entries"))
@@ -174,6 +187,7 @@ module Aws::ElementalInference
174
187
  CreateFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
175
188
  CreateFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
176
189
  CreateFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
190
+ CreateFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
177
191
  CreateFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
178
192
  CreateFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
179
193
  CreateFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
@@ -201,6 +215,9 @@ module Aws::ElementalInference
201
215
  DeleteDictionaryResponse.add_member(:status, Shapes::ShapeRef.new(shape: DictionaryStatus, required: true, location_name: "status"))
202
216
  DeleteDictionaryResponse.struct_class = Types::DeleteDictionaryResponse
203
217
 
218
+ DeleteFeedPolicyRequest.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location: "uri", location_name: "id"))
219
+ DeleteFeedPolicyRequest.struct_class = Types::DeleteFeedPolicyRequest
220
+
204
221
  DeleteFeedRequest.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location: "uri", location_name: "id"))
205
222
  DeleteFeedRequest.struct_class = Types::DeleteFeedRequest
206
223
 
@@ -274,6 +291,12 @@ module Aws::ElementalInference
274
291
  GetDictionaryResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
275
292
  GetDictionaryResponse.struct_class = Types::GetDictionaryResponse
276
293
 
294
+ GetFeedPolicyRequest.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location: "uri", location_name: "id"))
295
+ GetFeedPolicyRequest.struct_class = Types::GetFeedPolicyRequest
296
+
297
+ GetFeedPolicyResponse.add_member(:policy, Shapes::ShapeRef.new(shape: PolicyDocument, required: true, location_name: "policy"))
298
+ GetFeedPolicyResponse.struct_class = Types::GetFeedPolicyResponse
299
+
277
300
  GetFeedRequest.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location: "uri", location_name: "id"))
278
301
  GetFeedRequest.struct_class = Types::GetFeedRequest
279
302
 
@@ -282,11 +305,23 @@ module Aws::ElementalInference
282
305
  GetFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
283
306
  GetFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
284
307
  GetFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
308
+ GetFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
285
309
  GetFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
286
310
  GetFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
287
311
  GetFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
288
312
  GetFeedResponse.struct_class = Types::GetFeedResponse
289
313
 
314
+ GetFixtureRequest.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location: "uri", location_name: "fixtureId"))
315
+ GetFixtureRequest.struct_class = Types::GetFixtureRequest
316
+
317
+ GetFixtureResponse.add_member(:fixture_id, Shapes::ShapeRef.new(shape: FixtureId, required: true, location_name: "fixtureId"))
318
+ GetFixtureResponse.add_member(:name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "name"))
319
+ GetFixtureResponse.add_member(:fixture_group, Shapes::ShapeRef.new(shape: String, location_name: "fixtureGroup"))
320
+ GetFixtureResponse.add_member(:scheduled_start, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, location_name: "scheduledStart"))
321
+ GetFixtureResponse.add_member(:status, Shapes::ShapeRef.new(shape: String, required: true, location_name: "status"))
322
+ GetFixtureResponse.add_member(:competitors, Shapes::ShapeRef.new(shape: CompetitorList, required: true, location_name: "competitors"))
323
+ GetFixtureResponse.struct_class = Types::GetFixtureResponse
324
+
290
325
  GetOutput.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
291
326
  GetOutput.add_member(:output_config, Shapes::ShapeRef.new(shape: OutputConfig, required: true, location_name: "outputConfig"))
292
327
  GetOutput.add_member(:status, Shapes::ShapeRef.new(shape: OutputStatus, required: true, location_name: "status"))
@@ -324,13 +359,21 @@ module Aws::ElementalInference
324
359
  OutputConfig.add_member(:cropping, Shapes::ShapeRef.new(shape: CroppingConfig, location_name: "cropping"))
325
360
  OutputConfig.add_member(:clipping, Shapes::ShapeRef.new(shape: ClippingConfig, location_name: "clipping"))
326
361
  OutputConfig.add_member(:subtitling, Shapes::ShapeRef.new(shape: SubtitlingConfig, location_name: "subtitling"))
362
+ OutputConfig.add_member(:contextual_metadata, Shapes::ShapeRef.new(shape: ContextualMetadataConfig, location_name: "contextualMetadata"))
327
363
  OutputConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
328
364
  OutputConfig.add_member_subclass(:cropping, Types::OutputConfig::Cropping)
329
365
  OutputConfig.add_member_subclass(:clipping, Types::OutputConfig::Clipping)
330
366
  OutputConfig.add_member_subclass(:subtitling, Types::OutputConfig::Subtitling)
367
+ OutputConfig.add_member_subclass(:contextual_metadata, Types::OutputConfig::ContextualMetadata)
331
368
  OutputConfig.add_member_subclass(:unknown, Types::OutputConfig::Unknown)
332
369
  OutputConfig.struct_class = Types::OutputConfig
333
370
 
371
+ PutFeedPolicyRequest.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location: "uri", location_name: "id"))
372
+ PutFeedPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: PolicyDocument, required: true, location_name: "policy"))
373
+ PutFeedPolicyRequest.struct_class = Types::PutFeedPolicyRequest
374
+
375
+ PutFeedPolicyResponse.struct_class = Types::PutFeedPolicyResponse
376
+
334
377
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
335
378
  ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
336
379
 
@@ -416,6 +459,7 @@ module Aws::ElementalInference
416
459
  UpdateFeedResponse.add_member(:id, Shapes::ShapeRef.new(shape: FeedId, required: true, location_name: "id"))
417
460
  UpdateFeedResponse.add_member(:data_endpoints, Shapes::ShapeRef.new(shape: StringList, required: true, location_name: "dataEndpoints"))
418
461
  UpdateFeedResponse.add_member(:outputs, Shapes::ShapeRef.new(shape: GetOutputList, required: true, location_name: "outputs"))
462
+ UpdateFeedResponse.add_member(:access_role_arn, Shapes::ShapeRef.new(shape: IamRoleArn, location_name: "accessRoleArn"))
419
463
  UpdateFeedResponse.add_member(:status, Shapes::ShapeRef.new(shape: FeedStatus, required: true, location_name: "status"))
420
464
  UpdateFeedResponse.add_member(:association, Shapes::ShapeRef.new(shape: FeedAssociation, location_name: "association"))
421
465
  UpdateFeedResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
@@ -523,6 +567,19 @@ module Aws::ElementalInference
523
567
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
524
568
  end)
525
569
 
570
+ api.add_operation(:delete_feed_policy, Seahorse::Model::Operation.new.tap do |o|
571
+ o.name = "DeleteFeedPolicy"
572
+ o.http_method = "DELETE"
573
+ o.http_request_uri = "/v1/feed/{id}/policy"
574
+ o.input = Shapes::ShapeRef.new(shape: DeleteFeedPolicyRequest)
575
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
576
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
577
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
578
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
579
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
580
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
581
+ end)
582
+
526
583
  api.add_operation(:disassociate_feed, Seahorse::Model::Operation.new.tap do |o|
527
584
  o.name = "DisassociateFeed"
528
585
  o.http_method = "POST"
@@ -575,6 +632,34 @@ module Aws::ElementalInference
575
632
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
576
633
  end)
577
634
 
635
+ api.add_operation(:get_feed_policy, Seahorse::Model::Operation.new.tap do |o|
636
+ o.name = "GetFeedPolicy"
637
+ o.http_method = "GET"
638
+ o.http_request_uri = "/v1/feed/{id}/policy"
639
+ o.input = Shapes::ShapeRef.new(shape: GetFeedPolicyRequest)
640
+ o.output = Shapes::ShapeRef.new(shape: GetFeedPolicyResponse)
641
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
642
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
643
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
644
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
645
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
646
+ end)
647
+
648
+ api.add_operation(:get_fixture, Seahorse::Model::Operation.new.tap do |o|
649
+ o.name = "GetFixture"
650
+ o.http_method = "GET"
651
+ o.http_request_uri = "/v1/fixtures/{fixtureId}"
652
+ o.input = Shapes::ShapeRef.new(shape: GetFixtureRequest)
653
+ o.output = Shapes::ShapeRef.new(shape: GetFixtureResponse)
654
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
655
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
656
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
657
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
658
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
659
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
660
+ o.errors << Shapes::ShapeRef.new(shape: GatewayTimedOutException)
661
+ end)
662
+
578
663
  api.add_operation(:list_dictionaries, Seahorse::Model::Operation.new.tap do |o|
579
664
  o.name = "ListDictionaries"
580
665
  o.http_method = "GET"
@@ -625,6 +710,20 @@ module Aws::ElementalInference
625
710
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
626
711
  end)
627
712
 
713
+ api.add_operation(:put_feed_policy, Seahorse::Model::Operation.new.tap do |o|
714
+ o.name = "PutFeedPolicy"
715
+ o.http_method = "PUT"
716
+ o.http_request_uri = "/v1/feed/{id}/policy"
717
+ o.input = Shapes::ShapeRef.new(shape: PutFeedPolicyRequest)
718
+ o.output = Shapes::ShapeRef.new(shape: PutFeedPolicyResponse)
719
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
720
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
721
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
722
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
723
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestException)
724
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
725
+ end)
726
+
628
727
  api.add_operation(:search_fixtures, Seahorse::Model::Operation.new.tap do |o|
629
728
  o.name = "SearchFixtures"
630
729
  o.http_method = "POST"
@@ -169,6 +169,31 @@ module Aws::ElementalInference
169
169
  include Aws::Structure
170
170
  end
171
171
 
172
+ # The output configuration settings for the contextual metadata feature.
173
+ # Use this structure when the feed output generates metadata that
174
+ # describes the media content.
175
+ #
176
+ # @!attribute [rw] summary_generation
177
+ # Specifies whether Elemental Inference generates a descriptive
178
+ # summary of the media content for this output.
179
+ #
180
+ # Valid values:
181
+ #
182
+ # * ENABLED (default) – Elemental Inference generates a descriptive
183
+ # summary along with IAB taxonomy and GARM suitability
184
+ # classifications.
185
+ #
186
+ # * DISABLED – No descriptive summary is generated.
187
+ # @return [String]
188
+ #
189
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/ContextualMetadataConfig AWS API Documentation
190
+ #
191
+ class ContextualMetadataConfig < Struct.new(
192
+ :summary_generation)
193
+ SENSITIVE = []
194
+ include Aws::Structure
195
+ end
196
+
172
197
  # @!attribute [rw] name
173
198
  # A user-friendly name for this dictionary.
174
199
  # @return [String]
@@ -301,6 +326,12 @@ module Aws::ElementalInference
301
326
  # Repeats the outputs that you specified in the request.
302
327
  # @return [Array<Types::GetOutput>]
303
328
  #
329
+ # @!attribute [rw] access_role_arn
330
+ # The Amazon Resource Name (ARN) of the AWS Identity and Access
331
+ # Management (IAM) role that you specified in the request. This
332
+ # property is absent if you didn't specify an IAM role.
333
+ # @return [String]
334
+ #
304
335
  # @!attribute [rw] status
305
336
  # The current status of the feed. After creation of the feed has
306
337
  # succeeded, the status will be AVAILABLE.
@@ -324,6 +355,7 @@ module Aws::ElementalInference
324
355
  :id,
325
356
  :data_endpoints,
326
357
  :outputs,
358
+ :access_role_arn,
327
359
  :status,
328
360
  :association,
329
361
  :tags)
@@ -438,6 +470,18 @@ module Aws::ElementalInference
438
470
  include Aws::Structure
439
471
  end
440
472
 
473
+ # @!attribute [rw] id
474
+ # The ID of the feed whose policy you want to delete.
475
+ # @return [String]
476
+ #
477
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/DeleteFeedPolicyRequest AWS API Documentation
478
+ #
479
+ class DeleteFeedPolicyRequest < Struct.new(
480
+ :id)
481
+ SENSITIVE = []
482
+ include Aws::Structure
483
+ end
484
+
441
485
  # @!attribute [rw] id
442
486
  # The ID of the feed.
443
487
  # @return [String]
@@ -751,6 +795,30 @@ module Aws::ElementalInference
751
795
  include Aws::Structure
752
796
  end
753
797
 
798
+ # @!attribute [rw] id
799
+ # The ID of the feed whose policy you want to retrieve.
800
+ # @return [String]
801
+ #
802
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFeedPolicyRequest AWS API Documentation
803
+ #
804
+ class GetFeedPolicyRequest < Struct.new(
805
+ :id)
806
+ SENSITIVE = []
807
+ include Aws::Structure
808
+ end
809
+
810
+ # @!attribute [rw] policy
811
+ # The resource-based policy document attached to the feed.
812
+ # @return [String]
813
+ #
814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFeedPolicyResponse AWS API Documentation
815
+ #
816
+ class GetFeedPolicyResponse < Struct.new(
817
+ :policy)
818
+ SENSITIVE = []
819
+ include Aws::Structure
820
+ end
821
+
754
822
  # @!attribute [rw] id
755
823
  # The ID of the feed to query.
756
824
  # @return [String]
@@ -783,6 +851,14 @@ module Aws::ElementalInference
783
851
  # An array of the outputs in the feed.
784
852
  # @return [Array<Types::GetOutput>]
785
853
  #
854
+ # @!attribute [rw] access_role_arn
855
+ # The Amazon Resource Name (ARN) of an AWS Identity and Access
856
+ # Management (IAM) role that Elemental Inference assumes. Elemental
857
+ # Inference uses this role to access resources in your account on your
858
+ # behalf. This property is absent if the feed doesn't have an IAM
859
+ # role.
860
+ # @return [String]
861
+ #
786
862
  # @!attribute [rw] status
787
863
  # The status of the feed.
788
864
  # @return [String]
@@ -805,6 +881,7 @@ module Aws::ElementalInference
805
881
  :id,
806
882
  :data_endpoints,
807
883
  :outputs,
884
+ :access_role_arn,
808
885
  :status,
809
886
  :association,
810
887
  :tags)
@@ -812,6 +889,61 @@ module Aws::ElementalInference
812
889
  include Aws::Structure
813
890
  end
814
891
 
892
+ # @!attribute [rw] fixture_id
893
+ # The ID of the fixture to retrieve, as returned by SearchFixtures.
894
+ # @return [String]
895
+ #
896
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixtureRequest AWS API Documentation
897
+ #
898
+ class GetFixtureRequest < Struct.new(
899
+ :fixture_id)
900
+ SENSITIVE = []
901
+ include Aws::Structure
902
+ end
903
+
904
+ # @!attribute [rw] fixture_id
905
+ # The ID that you specified in the request.
906
+ # @return [String]
907
+ #
908
+ # @!attribute [rw] name
909
+ # The name of the fixture, as provided by the data source. For
910
+ # example, the names of the two competing teams.
911
+ # @return [String]
912
+ #
913
+ # @!attribute [rw] fixture_group
914
+ # The group that the fixture belongs to, such as the competition,
915
+ # league, or tournament. The data source doesn't provide this
916
+ # information for every fixture.
917
+ # @return [String]
918
+ #
919
+ # @!attribute [rw] scheduled_start
920
+ # The scheduled start time of the fixture, as provided by the data
921
+ # source. The actual start time might differ.
922
+ # @return [Time]
923
+ #
924
+ # @!attribute [rw] status
925
+ # The status of the fixture in its lifecycle, as provided by the data
926
+ # source. For example, Scheduled or Completed.
927
+ # @return [String]
928
+ #
929
+ # @!attribute [rw] competitors
930
+ # An array of the competitors (the teams or individuals) in the
931
+ # fixture.
932
+ # @return [Array<Types::Competitor>]
933
+ #
934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/GetFixtureResponse AWS API Documentation
935
+ #
936
+ class GetFixtureResponse < Struct.new(
937
+ :fixture_id,
938
+ :name,
939
+ :fixture_group,
940
+ :scheduled_start,
941
+ :status,
942
+ :competitors)
943
+ SENSITIVE = []
944
+ include Aws::Structure
945
+ end
946
+
815
947
  # Contains configuration information about one output in a feed. It is
816
948
  # used in the GetFeed response.
817
949
  #
@@ -1002,12 +1134,18 @@ module Aws::ElementalInference
1002
1134
  # The output config type that applies to the smart subtitling feature.
1003
1135
  # @return [Types::SubtitlingConfig]
1004
1136
  #
1137
+ # @!attribute [rw] contextual_metadata
1138
+ # The output config type that applies to the contextual metadata
1139
+ # feature.
1140
+ # @return [Types::ContextualMetadataConfig]
1141
+ #
1005
1142
  # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/OutputConfig AWS API Documentation
1006
1143
  #
1007
1144
  class OutputConfig < Struct.new(
1008
1145
  :cropping,
1009
1146
  :clipping,
1010
1147
  :subtitling,
1148
+ :contextual_metadata,
1011
1149
  :unknown)
1012
1150
  SENSITIVE = []
1013
1151
  include Aws::Structure
@@ -1016,9 +1154,31 @@ module Aws::ElementalInference
1016
1154
  class Cropping < OutputConfig; end
1017
1155
  class Clipping < OutputConfig; end
1018
1156
  class Subtitling < OutputConfig; end
1157
+ class ContextualMetadata < OutputConfig; end
1019
1158
  class Unknown < OutputConfig; end
1020
1159
  end
1021
1160
 
1161
+ # @!attribute [rw] id
1162
+ # The ID of the feed to attach the policy to.
1163
+ # @return [String]
1164
+ #
1165
+ # @!attribute [rw] policy
1166
+ # The resource-based policy document to attach to the feed.
1167
+ # @return [String]
1168
+ #
1169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/PutFeedPolicyRequest AWS API Documentation
1170
+ #
1171
+ class PutFeedPolicyRequest < Struct.new(
1172
+ :id,
1173
+ :policy)
1174
+ SENSITIVE = []
1175
+ include Aws::Structure
1176
+ end
1177
+
1178
+ # @see http://docs.aws.amazon.com/goto/WebAPI/elementalinference-2018-11-14/PutFeedPolicyResponse AWS API Documentation
1179
+ #
1180
+ class PutFeedPolicyResponse < Aws::EmptyStructure; end
1181
+
1022
1182
  # The resource specified in the action doesn't exist.
1023
1183
  #
1024
1184
  # @!attribute [rw] message
@@ -1410,6 +1570,12 @@ module Aws::ElementalInference
1410
1570
  # unchanged, or you might have changed it.
1411
1571
  # @return [Array<Types::GetOutput>]
1412
1572
  #
1573
+ # @!attribute [rw] access_role_arn
1574
+ # The Amazon Resource Name (ARN) of the AWS Identity and Access
1575
+ # Management (IAM) role for the feed, after the update. This property
1576
+ # is absent if the feed doesn't have an IAM role.
1577
+ # @return [String]
1578
+ #
1413
1579
  # @!attribute [rw] status
1414
1580
  # The status of the feed.
1415
1581
  # @return [String]
@@ -1431,6 +1597,7 @@ module Aws::ElementalInference
1431
1597
  :id,
1432
1598
  :data_endpoints,
1433
1599
  :outputs,
1600
+ :access_role_arn,
1434
1601
  :status,
1435
1602
  :association,
1436
1603
  :tags)
@@ -55,7 +55,7 @@ module Aws::ElementalInference
55
55
  autoload :EndpointProvider, 'aws-sdk-elementalinference/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-elementalinference/endpoints'
57
57
 
58
- GEM_VERSION = '1.9.0'
58
+ GEM_VERSION = '1.11.0'
59
59
 
60
60
  end
61
61
 
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]
@@ -159,6 +160,12 @@ module Aws
159
160
  ) -> _DeleteFeedResponseSuccess
160
161
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteFeedResponseSuccess
161
162
 
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#delete_feed_policy-instance_method
164
+ def delete_feed_policy: (
165
+ id: ::String
166
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
167
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
168
+
162
169
  interface _DisassociateFeedResponseSuccess
163
170
  include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateFeedResponse]
164
171
  def arn: () -> ::String
@@ -205,6 +212,7 @@ module Aws
205
212
  def id: () -> ::String
206
213
  def data_endpoints: () -> ::Array[::String]
207
214
  def outputs: () -> ::Array[Types::GetOutput]
215
+ def access_role_arn: () -> ::String
208
216
  def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
209
217
  def association: () -> Types::FeedAssociation
210
218
  def tags: () -> ::Hash[::String, ::String]
@@ -215,6 +223,31 @@ module Aws
215
223
  ) -> _GetFeedResponseSuccess
216
224
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFeedResponseSuccess
217
225
 
226
+ interface _GetFeedPolicyResponseSuccess
227
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFeedPolicyResponse]
228
+ def policy: () -> ::String
229
+ end
230
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#get_feed_policy-instance_method
231
+ def get_feed_policy: (
232
+ id: ::String
233
+ ) -> _GetFeedPolicyResponseSuccess
234
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFeedPolicyResponseSuccess
235
+
236
+ interface _GetFixtureResponseSuccess
237
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetFixtureResponse]
238
+ def fixture_id: () -> ::String
239
+ def name: () -> ::String
240
+ def fixture_group: () -> ::String
241
+ def scheduled_start: () -> ::Time
242
+ def status: () -> ::String
243
+ def competitors: () -> ::Array[Types::Competitor]
244
+ end
245
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#get_fixture-instance_method
246
+ def get_fixture: (
247
+ fixture_id: ::String
248
+ ) -> _GetFixtureResponseSuccess
249
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFixtureResponseSuccess
250
+
218
251
  interface _ListDictionariesResponseSuccess
219
252
  include ::Seahorse::Client::_ResponseSuccess[Types::ListDictionariesResponse]
220
253
  def dictionaries: () -> ::Array[Types::DictionarySummary]
@@ -249,6 +282,16 @@ module Aws
249
282
  ) -> _ListTagsForResourceResponseSuccess
250
283
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
251
284
 
285
+ interface _PutFeedPolicyResponseSuccess
286
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutFeedPolicyResponse]
287
+ end
288
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ElementalInference/Client.html#put_feed_policy-instance_method
289
+ def put_feed_policy: (
290
+ id: ::String,
291
+ policy: ::String
292
+ ) -> _PutFeedPolicyResponseSuccess
293
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutFeedPolicyResponseSuccess
294
+
252
295
  interface _SearchFixturesResponseSuccess
253
296
  include ::Seahorse::Client::_ResponseSuccess[Types::SearchFixturesResponse]
254
297
  def fixtures: () -> ::Array[Types::FixtureSummary]
@@ -310,6 +353,7 @@ module Aws
310
353
  def id: () -> ::String
311
354
  def data_endpoints: () -> ::Array[::String]
312
355
  def outputs: () -> ::Array[Types::GetOutput]
356
+ def access_role_arn: () -> ::String
313
357
  def status: () -> ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
314
358
  def association: () -> Types::FeedAssociation
315
359
  def tags: () -> ::Hash[::String, ::String]
data/sig/params.rbs CHANGED
@@ -33,7 +33,10 @@ module Aws
33
33
  fixture_id: ::String
34
34
  }?
35
35
  }?,
36
- subtitling: Params::subtitling_config?
36
+ subtitling: Params::subtitling_config?,
37
+ contextual_metadata: {
38
+ summary_generation: ("ENABLED" | "DISABLED")?
39
+ }?
37
40
  }
38
41
 
39
42
  type create_output = {
data/sig/types.rbs CHANGED
@@ -50,6 +50,11 @@ module Aws::ElementalInference
50
50
  SENSITIVE: []
51
51
  end
52
52
 
53
+ class ContextualMetadataConfig
54
+ attr_accessor summary_generation: ("ENABLED" | "DISABLED")
55
+ SENSITIVE: []
56
+ end
57
+
53
58
  class CreateDictionaryRequest
54
59
  attr_accessor name: ::String
55
60
  attr_accessor language: ("eng" | "fra" | "ita" | "deu" | "spa" | "por")
@@ -83,6 +88,7 @@ module Aws::ElementalInference
83
88
  attr_accessor id: ::String
84
89
  attr_accessor data_endpoints: ::Array[::String]
85
90
  attr_accessor outputs: ::Array[Types::GetOutput]
91
+ attr_accessor access_role_arn: ::String
86
92
  attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
87
93
  attr_accessor association: Types::FeedAssociation
88
94
  attr_accessor tags: ::Hash[::String, ::String]
@@ -119,6 +125,11 @@ module Aws::ElementalInference
119
125
  SENSITIVE: []
120
126
  end
121
127
 
128
+ class DeleteFeedPolicyRequest
129
+ attr_accessor id: ::String
130
+ SENSITIVE: []
131
+ end
132
+
122
133
  class DeleteFeedRequest
123
134
  attr_accessor id: ::String
124
135
  SENSITIVE: []
@@ -208,6 +219,16 @@ module Aws::ElementalInference
208
219
  SENSITIVE: []
209
220
  end
210
221
 
222
+ class GetFeedPolicyRequest
223
+ attr_accessor id: ::String
224
+ SENSITIVE: []
225
+ end
226
+
227
+ class GetFeedPolicyResponse
228
+ attr_accessor policy: ::String
229
+ SENSITIVE: []
230
+ end
231
+
211
232
  class GetFeedRequest
212
233
  attr_accessor id: ::String
213
234
  SENSITIVE: []
@@ -219,12 +240,28 @@ module Aws::ElementalInference
219
240
  attr_accessor id: ::String
220
241
  attr_accessor data_endpoints: ::Array[::String]
221
242
  attr_accessor outputs: ::Array[Types::GetOutput]
243
+ attr_accessor access_role_arn: ::String
222
244
  attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
223
245
  attr_accessor association: Types::FeedAssociation
224
246
  attr_accessor tags: ::Hash[::String, ::String]
225
247
  SENSITIVE: []
226
248
  end
227
249
 
250
+ class GetFixtureRequest
251
+ attr_accessor fixture_id: ::String
252
+ SENSITIVE: []
253
+ end
254
+
255
+ class GetFixtureResponse
256
+ attr_accessor fixture_id: ::String
257
+ attr_accessor name: ::String
258
+ attr_accessor fixture_group: ::String
259
+ attr_accessor scheduled_start: ::Time
260
+ attr_accessor status: ::String
261
+ attr_accessor competitors: ::Array[Types::Competitor]
262
+ SENSITIVE: []
263
+ end
264
+
228
265
  class GetOutput
229
266
  attr_accessor name: ::String
230
267
  attr_accessor output_config: Types::OutputConfig
@@ -277,6 +314,7 @@ module Aws::ElementalInference
277
314
  attr_accessor cropping: Types::CroppingConfig
278
315
  attr_accessor clipping: Types::ClippingConfig
279
316
  attr_accessor subtitling: Types::SubtitlingConfig
317
+ attr_accessor contextual_metadata: Types::ContextualMetadataConfig
280
318
  attr_accessor unknown: untyped
281
319
  SENSITIVE: []
282
320
 
@@ -286,10 +324,21 @@ module Aws::ElementalInference
286
324
  end
287
325
  class Subtitling < OutputConfig
288
326
  end
327
+ class ContextualMetadata < OutputConfig
328
+ end
289
329
  class Unknown < OutputConfig
290
330
  end
291
331
  end
292
332
 
333
+ class PutFeedPolicyRequest
334
+ attr_accessor id: ::String
335
+ attr_accessor policy: ::String
336
+ SENSITIVE: []
337
+ end
338
+
339
+ class PutFeedPolicyResponse < Aws::EmptyStructure
340
+ end
341
+
293
342
  class ResourceNotFoundException
294
343
  attr_accessor message: ::String
295
344
  SENSITIVE: []
@@ -391,6 +440,7 @@ module Aws::ElementalInference
391
440
  attr_accessor id: ::String
392
441
  attr_accessor data_endpoints: ::Array[::String]
393
442
  attr_accessor outputs: ::Array[Types::GetOutput]
443
+ attr_accessor access_role_arn: ::String
394
444
  attr_accessor status: ("CREATING" | "AVAILABLE" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "ARCHIVED")
395
445
  attr_accessor association: Types::FeedAssociation
396
446
  attr_accessor tags: ::Hash[::String, ::String]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elementalinference
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.254.0
21
+ version: 3.255.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.254.0
31
+ version: 3.255.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement