aws-sdk-mediaconnect 1.90.0 → 1.92.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-mediaconnect/client.rb +2596 -69
- data/lib/aws-sdk-mediaconnect/client_api.rb +1466 -0
- data/lib/aws-sdk-mediaconnect/errors.rb +48 -0
- data/lib/aws-sdk-mediaconnect/types.rb +4283 -714
- data/lib/aws-sdk-mediaconnect/waiters.rb +443 -5
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +938 -6
- data/sig/errors.rbs +9 -0
- data/sig/types.rbs +1101 -0
- data/sig/waiters.rbs +70 -0
- metadata +3 -3
data/sig/types.rbs
CHANGED
|
@@ -172,6 +172,8 @@ module Aws::MediaConnect
|
|
|
172
172
|
attr_accessor ndi_speed_hq_quality: ::Integer
|
|
173
173
|
attr_accessor ndi_program_name: ::String
|
|
174
174
|
attr_accessor output_tags: ::Hash[::String, ::String]
|
|
175
|
+
attr_accessor router_integration_state: ("ENABLED" | "DISABLED")
|
|
176
|
+
attr_accessor router_integration_transit_encryption: Types::FlowTransitEncryption
|
|
175
177
|
SENSITIVE: []
|
|
176
178
|
end
|
|
177
179
|
|
|
@@ -180,11 +182,68 @@ module Aws::MediaConnect
|
|
|
180
182
|
SENSITIVE: []
|
|
181
183
|
end
|
|
182
184
|
|
|
185
|
+
class AutomaticEncryptionKeyConfiguration < Aws::EmptyStructure
|
|
186
|
+
end
|
|
187
|
+
|
|
183
188
|
class BadRequestException
|
|
184
189
|
attr_accessor message: ::String
|
|
185
190
|
SENSITIVE: []
|
|
186
191
|
end
|
|
187
192
|
|
|
193
|
+
class BatchGetRouterInputError
|
|
194
|
+
attr_accessor arn: ::String
|
|
195
|
+
attr_accessor code: ::String
|
|
196
|
+
attr_accessor message: ::String
|
|
197
|
+
SENSITIVE: []
|
|
198
|
+
end
|
|
199
|
+
|
|
200
|
+
class BatchGetRouterInputRequest
|
|
201
|
+
attr_accessor arns: ::Array[::String]
|
|
202
|
+
SENSITIVE: []
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
class BatchGetRouterInputResponse
|
|
206
|
+
attr_accessor router_inputs: ::Array[Types::RouterInput]
|
|
207
|
+
attr_accessor errors: ::Array[Types::BatchGetRouterInputError]
|
|
208
|
+
SENSITIVE: []
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
class BatchGetRouterNetworkInterfaceError
|
|
212
|
+
attr_accessor arn: ::String
|
|
213
|
+
attr_accessor code: ::String
|
|
214
|
+
attr_accessor message: ::String
|
|
215
|
+
SENSITIVE: []
|
|
216
|
+
end
|
|
217
|
+
|
|
218
|
+
class BatchGetRouterNetworkInterfaceRequest
|
|
219
|
+
attr_accessor arns: ::Array[::String]
|
|
220
|
+
SENSITIVE: []
|
|
221
|
+
end
|
|
222
|
+
|
|
223
|
+
class BatchGetRouterNetworkInterfaceResponse
|
|
224
|
+
attr_accessor router_network_interfaces: ::Array[Types::RouterNetworkInterface]
|
|
225
|
+
attr_accessor errors: ::Array[Types::BatchGetRouterNetworkInterfaceError]
|
|
226
|
+
SENSITIVE: []
|
|
227
|
+
end
|
|
228
|
+
|
|
229
|
+
class BatchGetRouterOutputError
|
|
230
|
+
attr_accessor arn: ::String
|
|
231
|
+
attr_accessor code: ::String
|
|
232
|
+
attr_accessor message: ::String
|
|
233
|
+
SENSITIVE: []
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
class BatchGetRouterOutputRequest
|
|
237
|
+
attr_accessor arns: ::Array[::String]
|
|
238
|
+
SENSITIVE: []
|
|
239
|
+
end
|
|
240
|
+
|
|
241
|
+
class BatchGetRouterOutputResponse
|
|
242
|
+
attr_accessor router_outputs: ::Array[Types::RouterOutput]
|
|
243
|
+
attr_accessor errors: ::Array[Types::BatchGetRouterOutputError]
|
|
244
|
+
SENSITIVE: []
|
|
245
|
+
end
|
|
246
|
+
|
|
188
247
|
class BlackFrames
|
|
189
248
|
attr_accessor state: ("ENABLED" | "DISABLED")
|
|
190
249
|
attr_accessor threshold_seconds: ::Integer
|
|
@@ -323,6 +382,62 @@ module Aws::MediaConnect
|
|
|
323
382
|
SENSITIVE: []
|
|
324
383
|
end
|
|
325
384
|
|
|
385
|
+
class CreateRouterInputRequest
|
|
386
|
+
attr_accessor name: ::String
|
|
387
|
+
attr_accessor configuration: Types::RouterInputConfiguration
|
|
388
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
389
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
390
|
+
attr_accessor tier: ("INPUT_100" | "INPUT_50" | "INPUT_20")
|
|
391
|
+
attr_accessor region_name: ::String
|
|
392
|
+
attr_accessor availability_zone: ::String
|
|
393
|
+
attr_accessor transit_encryption: Types::RouterInputTransitEncryption
|
|
394
|
+
attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
|
|
395
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
396
|
+
attr_accessor client_token: ::String
|
|
397
|
+
SENSITIVE: []
|
|
398
|
+
end
|
|
399
|
+
|
|
400
|
+
class CreateRouterInputResponse
|
|
401
|
+
attr_accessor router_input: Types::RouterInput
|
|
402
|
+
SENSITIVE: []
|
|
403
|
+
end
|
|
404
|
+
|
|
405
|
+
class CreateRouterNetworkInterfaceRequest
|
|
406
|
+
attr_accessor name: ::String
|
|
407
|
+
attr_accessor configuration: Types::RouterNetworkInterfaceConfiguration
|
|
408
|
+
attr_accessor region_name: ::String
|
|
409
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
410
|
+
attr_accessor client_token: ::String
|
|
411
|
+
SENSITIVE: []
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
class CreateRouterNetworkInterfaceResponse
|
|
415
|
+
attr_accessor router_network_interface: Types::RouterNetworkInterface
|
|
416
|
+
SENSITIVE: []
|
|
417
|
+
end
|
|
418
|
+
|
|
419
|
+
class CreateRouterOutputRequest
|
|
420
|
+
attr_accessor name: ::String
|
|
421
|
+
attr_accessor configuration: Types::RouterOutputConfiguration
|
|
422
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
423
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
424
|
+
attr_accessor tier: ("OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20")
|
|
425
|
+
attr_accessor region_name: ::String
|
|
426
|
+
attr_accessor availability_zone: ::String
|
|
427
|
+
attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
|
|
428
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
429
|
+
attr_accessor client_token: ::String
|
|
430
|
+
SENSITIVE: []
|
|
431
|
+
end
|
|
432
|
+
|
|
433
|
+
class CreateRouterOutputResponse
|
|
434
|
+
attr_accessor router_output: Types::RouterOutput
|
|
435
|
+
SENSITIVE: []
|
|
436
|
+
end
|
|
437
|
+
|
|
438
|
+
class DefaultMaintenanceConfiguration < Aws::EmptyStructure
|
|
439
|
+
end
|
|
440
|
+
|
|
326
441
|
class DeleteBridgeRequest
|
|
327
442
|
attr_accessor bridge_arn: ::String
|
|
328
443
|
SENSITIVE: []
|
|
@@ -354,6 +469,42 @@ module Aws::MediaConnect
|
|
|
354
469
|
SENSITIVE: []
|
|
355
470
|
end
|
|
356
471
|
|
|
472
|
+
class DeleteRouterInputRequest
|
|
473
|
+
attr_accessor arn: ::String
|
|
474
|
+
SENSITIVE: []
|
|
475
|
+
end
|
|
476
|
+
|
|
477
|
+
class DeleteRouterInputResponse
|
|
478
|
+
attr_accessor arn: ::String
|
|
479
|
+
attr_accessor name: ::String
|
|
480
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
481
|
+
SENSITIVE: []
|
|
482
|
+
end
|
|
483
|
+
|
|
484
|
+
class DeleteRouterNetworkInterfaceRequest
|
|
485
|
+
attr_accessor arn: ::String
|
|
486
|
+
SENSITIVE: []
|
|
487
|
+
end
|
|
488
|
+
|
|
489
|
+
class DeleteRouterNetworkInterfaceResponse
|
|
490
|
+
attr_accessor arn: ::String
|
|
491
|
+
attr_accessor name: ::String
|
|
492
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "ERROR" | "RECOVERING")
|
|
493
|
+
SENSITIVE: []
|
|
494
|
+
end
|
|
495
|
+
|
|
496
|
+
class DeleteRouterOutputRequest
|
|
497
|
+
attr_accessor arn: ::String
|
|
498
|
+
SENSITIVE: []
|
|
499
|
+
end
|
|
500
|
+
|
|
501
|
+
class DeleteRouterOutputResponse
|
|
502
|
+
attr_accessor arn: ::String
|
|
503
|
+
attr_accessor name: ::String
|
|
504
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
505
|
+
SENSITIVE: []
|
|
506
|
+
end
|
|
507
|
+
|
|
357
508
|
class DeregisterGatewayInstanceRequest
|
|
358
509
|
attr_accessor force: bool
|
|
359
510
|
attr_accessor gateway_instance_arn: ::String
|
|
@@ -515,6 +666,46 @@ module Aws::MediaConnect
|
|
|
515
666
|
SENSITIVE: []
|
|
516
667
|
end
|
|
517
668
|
|
|
669
|
+
class FailoverRouterInputConfiguration
|
|
670
|
+
attr_accessor network_interface_arn: ::String
|
|
671
|
+
attr_accessor protocol_configurations: ::Array[Types::FailoverRouterInputProtocolConfiguration]
|
|
672
|
+
attr_accessor source_priority_mode: ("NO_PRIORITY" | "PRIMARY_SECONDARY")
|
|
673
|
+
attr_accessor primary_source_index: ::Integer
|
|
674
|
+
SENSITIVE: []
|
|
675
|
+
end
|
|
676
|
+
|
|
677
|
+
class FailoverRouterInputIndexedStreamDetails
|
|
678
|
+
attr_accessor source_index: ::Integer
|
|
679
|
+
attr_accessor source_ip_address: ::String
|
|
680
|
+
SENSITIVE: []
|
|
681
|
+
end
|
|
682
|
+
|
|
683
|
+
class FailoverRouterInputProtocolConfiguration
|
|
684
|
+
attr_accessor rtp: Types::RtpRouterInputConfiguration
|
|
685
|
+
attr_accessor rist: Types::RistRouterInputConfiguration
|
|
686
|
+
attr_accessor srt_listener: Types::SrtListenerRouterInputConfiguration
|
|
687
|
+
attr_accessor srt_caller: Types::SrtCallerRouterInputConfiguration
|
|
688
|
+
attr_accessor unknown: untyped
|
|
689
|
+
SENSITIVE: []
|
|
690
|
+
|
|
691
|
+
class Rtp < FailoverRouterInputProtocolConfiguration
|
|
692
|
+
end
|
|
693
|
+
class Rist < FailoverRouterInputProtocolConfiguration
|
|
694
|
+
end
|
|
695
|
+
class SrtListener < FailoverRouterInputProtocolConfiguration
|
|
696
|
+
end
|
|
697
|
+
class SrtCaller < FailoverRouterInputProtocolConfiguration
|
|
698
|
+
end
|
|
699
|
+
class Unknown < FailoverRouterInputProtocolConfiguration
|
|
700
|
+
end
|
|
701
|
+
end
|
|
702
|
+
|
|
703
|
+
class FailoverRouterInputStreamDetails
|
|
704
|
+
attr_accessor source_index_zero_stream_details: Types::FailoverRouterInputIndexedStreamDetails
|
|
705
|
+
attr_accessor source_index_one_stream_details: Types::FailoverRouterInputIndexedStreamDetails
|
|
706
|
+
SENSITIVE: []
|
|
707
|
+
end
|
|
708
|
+
|
|
518
709
|
class Flow
|
|
519
710
|
attr_accessor availability_zone: ::String
|
|
520
711
|
attr_accessor description: ::String
|
|
@@ -536,6 +727,26 @@ module Aws::MediaConnect
|
|
|
536
727
|
SENSITIVE: []
|
|
537
728
|
end
|
|
538
729
|
|
|
730
|
+
class FlowTransitEncryption
|
|
731
|
+
attr_accessor encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")
|
|
732
|
+
attr_accessor encryption_key_configuration: Types::FlowTransitEncryptionKeyConfiguration
|
|
733
|
+
SENSITIVE: []
|
|
734
|
+
end
|
|
735
|
+
|
|
736
|
+
class FlowTransitEncryptionKeyConfiguration
|
|
737
|
+
attr_accessor secrets_manager: Types::SecretsManagerEncryptionKeyConfiguration
|
|
738
|
+
attr_accessor automatic: Types::AutomaticEncryptionKeyConfiguration
|
|
739
|
+
attr_accessor unknown: untyped
|
|
740
|
+
SENSITIVE: []
|
|
741
|
+
|
|
742
|
+
class SecretsManager < FlowTransitEncryptionKeyConfiguration
|
|
743
|
+
end
|
|
744
|
+
class Automatic < FlowTransitEncryptionKeyConfiguration
|
|
745
|
+
end
|
|
746
|
+
class Unknown < FlowTransitEncryptionKeyConfiguration
|
|
747
|
+
end
|
|
748
|
+
end
|
|
749
|
+
|
|
539
750
|
class Fmtp
|
|
540
751
|
attr_accessor channel_order: ::String
|
|
541
752
|
attr_accessor colorimetry: ("BT601" | "BT709" | "BT2020" | "BT2100" | "ST2065-1" | "ST2065-3" | "XYZ")
|
|
@@ -609,6 +820,60 @@ module Aws::MediaConnect
|
|
|
609
820
|
SENSITIVE: []
|
|
610
821
|
end
|
|
611
822
|
|
|
823
|
+
class GetRouterInputRequest
|
|
824
|
+
attr_accessor arn: ::String
|
|
825
|
+
SENSITIVE: []
|
|
826
|
+
end
|
|
827
|
+
|
|
828
|
+
class GetRouterInputResponse
|
|
829
|
+
attr_accessor router_input: Types::RouterInput
|
|
830
|
+
SENSITIVE: []
|
|
831
|
+
end
|
|
832
|
+
|
|
833
|
+
class GetRouterInputSourceMetadataRequest
|
|
834
|
+
attr_accessor arn: ::String
|
|
835
|
+
SENSITIVE: []
|
|
836
|
+
end
|
|
837
|
+
|
|
838
|
+
class GetRouterInputSourceMetadataResponse
|
|
839
|
+
attr_accessor arn: ::String
|
|
840
|
+
attr_accessor name: ::String
|
|
841
|
+
attr_accessor source_metadata_details: Types::RouterInputSourceMetadataDetails
|
|
842
|
+
SENSITIVE: []
|
|
843
|
+
end
|
|
844
|
+
|
|
845
|
+
class GetRouterInputThumbnailRequest
|
|
846
|
+
attr_accessor arn: ::String
|
|
847
|
+
SENSITIVE: []
|
|
848
|
+
end
|
|
849
|
+
|
|
850
|
+
class GetRouterInputThumbnailResponse
|
|
851
|
+
attr_accessor arn: ::String
|
|
852
|
+
attr_accessor name: ::String
|
|
853
|
+
attr_accessor thumbnail_details: Types::RouterInputThumbnailDetails
|
|
854
|
+
SENSITIVE: []
|
|
855
|
+
end
|
|
856
|
+
|
|
857
|
+
class GetRouterNetworkInterfaceRequest
|
|
858
|
+
attr_accessor arn: ::String
|
|
859
|
+
SENSITIVE: []
|
|
860
|
+
end
|
|
861
|
+
|
|
862
|
+
class GetRouterNetworkInterfaceResponse
|
|
863
|
+
attr_accessor router_network_interface: Types::RouterNetworkInterface
|
|
864
|
+
SENSITIVE: []
|
|
865
|
+
end
|
|
866
|
+
|
|
867
|
+
class GetRouterOutputRequest
|
|
868
|
+
attr_accessor arn: ::String
|
|
869
|
+
SENSITIVE: []
|
|
870
|
+
end
|
|
871
|
+
|
|
872
|
+
class GetRouterOutputResponse
|
|
873
|
+
attr_accessor router_output: Types::RouterOutput
|
|
874
|
+
SENSITIVE: []
|
|
875
|
+
end
|
|
876
|
+
|
|
612
877
|
class GrantEntitlementRequest
|
|
613
878
|
attr_accessor data_transfer_subscriber_fee_percent: ::Integer
|
|
614
879
|
attr_accessor description: ::String
|
|
@@ -758,6 +1023,55 @@ module Aws::MediaConnect
|
|
|
758
1023
|
SENSITIVE: []
|
|
759
1024
|
end
|
|
760
1025
|
|
|
1026
|
+
class ListRouterInputsRequest
|
|
1027
|
+
attr_accessor max_results: ::Integer
|
|
1028
|
+
attr_accessor next_token: ::String
|
|
1029
|
+
attr_accessor filters: ::Array[Types::RouterInputFilter]
|
|
1030
|
+
SENSITIVE: []
|
|
1031
|
+
end
|
|
1032
|
+
|
|
1033
|
+
class ListRouterInputsResponse
|
|
1034
|
+
attr_accessor router_inputs: ::Array[Types::ListedRouterInput]
|
|
1035
|
+
attr_accessor next_token: ::String
|
|
1036
|
+
SENSITIVE: []
|
|
1037
|
+
end
|
|
1038
|
+
|
|
1039
|
+
class ListRouterNetworkInterfacesRequest
|
|
1040
|
+
attr_accessor max_results: ::Integer
|
|
1041
|
+
attr_accessor next_token: ::String
|
|
1042
|
+
attr_accessor filters: ::Array[Types::RouterNetworkInterfaceFilter]
|
|
1043
|
+
SENSITIVE: []
|
|
1044
|
+
end
|
|
1045
|
+
|
|
1046
|
+
class ListRouterNetworkInterfacesResponse
|
|
1047
|
+
attr_accessor router_network_interfaces: ::Array[Types::ListedRouterNetworkInterface]
|
|
1048
|
+
attr_accessor next_token: ::String
|
|
1049
|
+
SENSITIVE: []
|
|
1050
|
+
end
|
|
1051
|
+
|
|
1052
|
+
class ListRouterOutputsRequest
|
|
1053
|
+
attr_accessor max_results: ::Integer
|
|
1054
|
+
attr_accessor next_token: ::String
|
|
1055
|
+
attr_accessor filters: ::Array[Types::RouterOutputFilter]
|
|
1056
|
+
SENSITIVE: []
|
|
1057
|
+
end
|
|
1058
|
+
|
|
1059
|
+
class ListRouterOutputsResponse
|
|
1060
|
+
attr_accessor router_outputs: ::Array[Types::ListedRouterOutput]
|
|
1061
|
+
attr_accessor next_token: ::String
|
|
1062
|
+
SENSITIVE: []
|
|
1063
|
+
end
|
|
1064
|
+
|
|
1065
|
+
class ListTagsForGlobalResourceRequest
|
|
1066
|
+
attr_accessor resource_arn: ::String
|
|
1067
|
+
SENSITIVE: []
|
|
1068
|
+
end
|
|
1069
|
+
|
|
1070
|
+
class ListTagsForGlobalResourceResponse
|
|
1071
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1072
|
+
SENSITIVE: []
|
|
1073
|
+
end
|
|
1074
|
+
|
|
761
1075
|
class ListTagsForResourceRequest
|
|
762
1076
|
attr_accessor resource_arn: ::String
|
|
763
1077
|
SENSITIVE: []
|
|
@@ -810,6 +1124,61 @@ module Aws::MediaConnect
|
|
|
810
1124
|
SENSITIVE: []
|
|
811
1125
|
end
|
|
812
1126
|
|
|
1127
|
+
class ListedRouterInput
|
|
1128
|
+
attr_accessor name: ::String
|
|
1129
|
+
attr_accessor arn: ::String
|
|
1130
|
+
attr_accessor id: ::String
|
|
1131
|
+
attr_accessor input_type: ("STANDARD" | "FAILOVER" | "MERGE" | "MEDIACONNECT_FLOW")
|
|
1132
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
1133
|
+
attr_accessor routed_outputs: ::Integer
|
|
1134
|
+
attr_accessor region_name: ::String
|
|
1135
|
+
attr_accessor availability_zone: ::String
|
|
1136
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
1137
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
1138
|
+
attr_accessor created_at: ::Time
|
|
1139
|
+
attr_accessor updated_at: ::Time
|
|
1140
|
+
attr_accessor message_count: ::Integer
|
|
1141
|
+
attr_accessor network_interface_arn: ::String
|
|
1142
|
+
attr_accessor maintenance_schedule_type: ("WINDOW")
|
|
1143
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
1144
|
+
SENSITIVE: []
|
|
1145
|
+
end
|
|
1146
|
+
|
|
1147
|
+
class ListedRouterNetworkInterface
|
|
1148
|
+
attr_accessor name: ::String
|
|
1149
|
+
attr_accessor arn: ::String
|
|
1150
|
+
attr_accessor id: ::String
|
|
1151
|
+
attr_accessor network_interface_type: ("PUBLIC" | "VPC")
|
|
1152
|
+
attr_accessor associated_output_count: ::Integer
|
|
1153
|
+
attr_accessor associated_input_count: ::Integer
|
|
1154
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "ERROR" | "RECOVERING")
|
|
1155
|
+
attr_accessor region_name: ::String
|
|
1156
|
+
attr_accessor created_at: ::Time
|
|
1157
|
+
attr_accessor updated_at: ::Time
|
|
1158
|
+
SENSITIVE: []
|
|
1159
|
+
end
|
|
1160
|
+
|
|
1161
|
+
class ListedRouterOutput
|
|
1162
|
+
attr_accessor name: ::String
|
|
1163
|
+
attr_accessor arn: ::String
|
|
1164
|
+
attr_accessor id: ::String
|
|
1165
|
+
attr_accessor output_type: ("STANDARD" | "MEDIACONNECT_FLOW" | "MEDIALIVE_INPUT")
|
|
1166
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
1167
|
+
attr_accessor routed_state: ("ROUTED" | "ROUTING" | "UNROUTED")
|
|
1168
|
+
attr_accessor region_name: ::String
|
|
1169
|
+
attr_accessor availability_zone: ::String
|
|
1170
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
1171
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
1172
|
+
attr_accessor created_at: ::Time
|
|
1173
|
+
attr_accessor updated_at: ::Time
|
|
1174
|
+
attr_accessor message_count: ::Integer
|
|
1175
|
+
attr_accessor routed_input_arn: ::String
|
|
1176
|
+
attr_accessor network_interface_arn: ::String
|
|
1177
|
+
attr_accessor maintenance_schedule_type: ("WINDOW")
|
|
1178
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
1179
|
+
SENSITIVE: []
|
|
1180
|
+
end
|
|
1181
|
+
|
|
813
1182
|
class Maintenance
|
|
814
1183
|
attr_accessor maintenance_day: ("Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday" | "Sunday")
|
|
815
1184
|
attr_accessor maintenance_deadline: ::String
|
|
@@ -818,6 +1187,81 @@ module Aws::MediaConnect
|
|
|
818
1187
|
SENSITIVE: []
|
|
819
1188
|
end
|
|
820
1189
|
|
|
1190
|
+
class MaintenanceConfiguration
|
|
1191
|
+
attr_accessor preferred_day_time: Types::PreferredDayTimeMaintenanceConfiguration
|
|
1192
|
+
attr_accessor default: Types::DefaultMaintenanceConfiguration
|
|
1193
|
+
attr_accessor unknown: untyped
|
|
1194
|
+
SENSITIVE: []
|
|
1195
|
+
|
|
1196
|
+
class PreferredDayTime < MaintenanceConfiguration
|
|
1197
|
+
end
|
|
1198
|
+
class Default < MaintenanceConfiguration
|
|
1199
|
+
end
|
|
1200
|
+
class Unknown < MaintenanceConfiguration
|
|
1201
|
+
end
|
|
1202
|
+
end
|
|
1203
|
+
|
|
1204
|
+
class MaintenanceSchedule
|
|
1205
|
+
attr_accessor window: Types::WindowMaintenanceSchedule
|
|
1206
|
+
attr_accessor unknown: untyped
|
|
1207
|
+
SENSITIVE: []
|
|
1208
|
+
|
|
1209
|
+
class Window < MaintenanceSchedule
|
|
1210
|
+
end
|
|
1211
|
+
class Unknown < MaintenanceSchedule
|
|
1212
|
+
end
|
|
1213
|
+
end
|
|
1214
|
+
|
|
1215
|
+
class MediaConnectFlowRouterInputConfiguration
|
|
1216
|
+
attr_accessor flow_arn: ::String
|
|
1217
|
+
attr_accessor flow_output_arn: ::String
|
|
1218
|
+
attr_accessor source_transit_decryption: Types::FlowTransitEncryption
|
|
1219
|
+
SENSITIVE: []
|
|
1220
|
+
end
|
|
1221
|
+
|
|
1222
|
+
class MediaConnectFlowRouterInputStreamDetails < Aws::EmptyStructure
|
|
1223
|
+
end
|
|
1224
|
+
|
|
1225
|
+
class MediaConnectFlowRouterOutputConfiguration
|
|
1226
|
+
attr_accessor flow_arn: ::String
|
|
1227
|
+
attr_accessor flow_source_arn: ::String
|
|
1228
|
+
attr_accessor destination_transit_encryption: Types::FlowTransitEncryption
|
|
1229
|
+
SENSITIVE: []
|
|
1230
|
+
end
|
|
1231
|
+
|
|
1232
|
+
class MediaConnectFlowRouterOutputStreamDetails < Aws::EmptyStructure
|
|
1233
|
+
end
|
|
1234
|
+
|
|
1235
|
+
class MediaLiveInputRouterOutputConfiguration
|
|
1236
|
+
attr_accessor media_live_input_arn: ::String
|
|
1237
|
+
attr_accessor media_live_pipeline_id: ("PIPELINE_0" | "PIPELINE_1")
|
|
1238
|
+
attr_accessor destination_transit_encryption: Types::MediaLiveTransitEncryption
|
|
1239
|
+
SENSITIVE: []
|
|
1240
|
+
end
|
|
1241
|
+
|
|
1242
|
+
class MediaLiveInputRouterOutputStreamDetails < Aws::EmptyStructure
|
|
1243
|
+
end
|
|
1244
|
+
|
|
1245
|
+
class MediaLiveTransitEncryption
|
|
1246
|
+
attr_accessor encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")
|
|
1247
|
+
attr_accessor encryption_key_configuration: Types::MediaLiveTransitEncryptionKeyConfiguration
|
|
1248
|
+
SENSITIVE: []
|
|
1249
|
+
end
|
|
1250
|
+
|
|
1251
|
+
class MediaLiveTransitEncryptionKeyConfiguration
|
|
1252
|
+
attr_accessor secrets_manager: Types::SecretsManagerEncryptionKeyConfiguration
|
|
1253
|
+
attr_accessor automatic: Types::AutomaticEncryptionKeyConfiguration
|
|
1254
|
+
attr_accessor unknown: untyped
|
|
1255
|
+
SENSITIVE: []
|
|
1256
|
+
|
|
1257
|
+
class SecretsManager < MediaLiveTransitEncryptionKeyConfiguration
|
|
1258
|
+
end
|
|
1259
|
+
class Automatic < MediaLiveTransitEncryptionKeyConfiguration
|
|
1260
|
+
end
|
|
1261
|
+
class Unknown < MediaLiveTransitEncryptionKeyConfiguration
|
|
1262
|
+
end
|
|
1263
|
+
end
|
|
1264
|
+
|
|
821
1265
|
class MediaStream
|
|
822
1266
|
attr_accessor attributes: Types::MediaStreamAttributes
|
|
823
1267
|
attr_accessor clock_rate: ::Integer
|
|
@@ -872,6 +1316,39 @@ module Aws::MediaConnect
|
|
|
872
1316
|
SENSITIVE: []
|
|
873
1317
|
end
|
|
874
1318
|
|
|
1319
|
+
class MergeRouterInputConfiguration
|
|
1320
|
+
attr_accessor network_interface_arn: ::String
|
|
1321
|
+
attr_accessor protocol_configurations: ::Array[Types::MergeRouterInputProtocolConfiguration]
|
|
1322
|
+
attr_accessor merge_recovery_window_milliseconds: ::Integer
|
|
1323
|
+
SENSITIVE: []
|
|
1324
|
+
end
|
|
1325
|
+
|
|
1326
|
+
class MergeRouterInputIndexedStreamDetails
|
|
1327
|
+
attr_accessor source_index: ::Integer
|
|
1328
|
+
attr_accessor source_ip_address: ::String
|
|
1329
|
+
SENSITIVE: []
|
|
1330
|
+
end
|
|
1331
|
+
|
|
1332
|
+
class MergeRouterInputProtocolConfiguration
|
|
1333
|
+
attr_accessor rtp: Types::RtpRouterInputConfiguration
|
|
1334
|
+
attr_accessor rist: Types::RistRouterInputConfiguration
|
|
1335
|
+
attr_accessor unknown: untyped
|
|
1336
|
+
SENSITIVE: []
|
|
1337
|
+
|
|
1338
|
+
class Rtp < MergeRouterInputProtocolConfiguration
|
|
1339
|
+
end
|
|
1340
|
+
class Rist < MergeRouterInputProtocolConfiguration
|
|
1341
|
+
end
|
|
1342
|
+
class Unknown < MergeRouterInputProtocolConfiguration
|
|
1343
|
+
end
|
|
1344
|
+
end
|
|
1345
|
+
|
|
1346
|
+
class MergeRouterInputStreamDetails
|
|
1347
|
+
attr_accessor source_index_zero_stream_details: Types::MergeRouterInputIndexedStreamDetails
|
|
1348
|
+
attr_accessor source_index_one_stream_details: Types::MergeRouterInputIndexedStreamDetails
|
|
1349
|
+
SENSITIVE: []
|
|
1350
|
+
end
|
|
1351
|
+
|
|
875
1352
|
class MessageDetail
|
|
876
1353
|
attr_accessor code: ::String
|
|
877
1354
|
attr_accessor message: ::String
|
|
@@ -946,6 +1423,25 @@ module Aws::MediaConnect
|
|
|
946
1423
|
attr_accessor bridge_ports: ::Array[::Integer]
|
|
947
1424
|
attr_accessor output_status: ("ENABLED" | "DISABLED")
|
|
948
1425
|
attr_accessor peer_ip_address: ::String
|
|
1426
|
+
attr_accessor router_integration_state: ("ENABLED" | "DISABLED")
|
|
1427
|
+
attr_accessor router_integration_transit_encryption: Types::FlowTransitEncryption
|
|
1428
|
+
attr_accessor connected_router_input_arn: ::String
|
|
1429
|
+
SENSITIVE: []
|
|
1430
|
+
end
|
|
1431
|
+
|
|
1432
|
+
class PreferredDayTimeMaintenanceConfiguration
|
|
1433
|
+
attr_accessor day: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")
|
|
1434
|
+
attr_accessor time: ::String
|
|
1435
|
+
SENSITIVE: []
|
|
1436
|
+
end
|
|
1437
|
+
|
|
1438
|
+
class PublicRouterNetworkInterfaceConfiguration
|
|
1439
|
+
attr_accessor allow_rules: ::Array[Types::PublicRouterNetworkInterfaceRule]
|
|
1440
|
+
SENSITIVE: []
|
|
1441
|
+
end
|
|
1442
|
+
|
|
1443
|
+
class PublicRouterNetworkInterfaceRule
|
|
1444
|
+
attr_accessor cidr: ::String
|
|
949
1445
|
SENSITIVE: []
|
|
950
1446
|
end
|
|
951
1447
|
|
|
@@ -1057,6 +1553,30 @@ module Aws::MediaConnect
|
|
|
1057
1553
|
SENSITIVE: []
|
|
1058
1554
|
end
|
|
1059
1555
|
|
|
1556
|
+
class RestartRouterInputRequest
|
|
1557
|
+
attr_accessor arn: ::String
|
|
1558
|
+
SENSITIVE: []
|
|
1559
|
+
end
|
|
1560
|
+
|
|
1561
|
+
class RestartRouterInputResponse
|
|
1562
|
+
attr_accessor arn: ::String
|
|
1563
|
+
attr_accessor name: ::String
|
|
1564
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
1565
|
+
SENSITIVE: []
|
|
1566
|
+
end
|
|
1567
|
+
|
|
1568
|
+
class RestartRouterOutputRequest
|
|
1569
|
+
attr_accessor arn: ::String
|
|
1570
|
+
SENSITIVE: []
|
|
1571
|
+
end
|
|
1572
|
+
|
|
1573
|
+
class RestartRouterOutputResponse
|
|
1574
|
+
attr_accessor arn: ::String
|
|
1575
|
+
attr_accessor name: ::String
|
|
1576
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
1577
|
+
SENSITIVE: []
|
|
1578
|
+
end
|
|
1579
|
+
|
|
1060
1580
|
class RevokeFlowEntitlementRequest
|
|
1061
1581
|
attr_accessor entitlement_arn: ::String
|
|
1062
1582
|
attr_accessor flow_arn: ::String
|
|
@@ -1069,6 +1589,375 @@ module Aws::MediaConnect
|
|
|
1069
1589
|
SENSITIVE: []
|
|
1070
1590
|
end
|
|
1071
1591
|
|
|
1592
|
+
class RistRouterInputConfiguration
|
|
1593
|
+
attr_accessor port: ::Integer
|
|
1594
|
+
attr_accessor recovery_latency_milliseconds: ::Integer
|
|
1595
|
+
SENSITIVE: []
|
|
1596
|
+
end
|
|
1597
|
+
|
|
1598
|
+
class RistRouterOutputConfiguration
|
|
1599
|
+
attr_accessor destination_address: ::String
|
|
1600
|
+
attr_accessor destination_port: ::Integer
|
|
1601
|
+
SENSITIVE: []
|
|
1602
|
+
end
|
|
1603
|
+
|
|
1604
|
+
class RouterInput
|
|
1605
|
+
attr_accessor name: ::String
|
|
1606
|
+
attr_accessor arn: ::String
|
|
1607
|
+
attr_accessor id: ::String
|
|
1608
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
1609
|
+
attr_accessor input_type: ("STANDARD" | "FAILOVER" | "MERGE" | "MEDIACONNECT_FLOW")
|
|
1610
|
+
attr_accessor configuration: Types::RouterInputConfiguration
|
|
1611
|
+
attr_accessor routed_outputs: ::Integer
|
|
1612
|
+
attr_accessor maximum_routed_outputs: ::Integer
|
|
1613
|
+
attr_accessor region_name: ::String
|
|
1614
|
+
attr_accessor availability_zone: ::String
|
|
1615
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
1616
|
+
attr_accessor tier: ("INPUT_100" | "INPUT_50" | "INPUT_20")
|
|
1617
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
1618
|
+
attr_accessor created_at: ::Time
|
|
1619
|
+
attr_accessor updated_at: ::Time
|
|
1620
|
+
attr_accessor messages: ::Array[Types::RouterInputMessage]
|
|
1621
|
+
attr_accessor transit_encryption: Types::RouterInputTransitEncryption
|
|
1622
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1623
|
+
attr_accessor stream_details: Types::RouterInputStreamDetails
|
|
1624
|
+
attr_accessor ip_address: ::String
|
|
1625
|
+
attr_accessor maintenance_type: ("PREFERRED_DAY_TIME" | "DEFAULT")
|
|
1626
|
+
attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
|
|
1627
|
+
attr_accessor maintenance_schedule_type: ("WINDOW")
|
|
1628
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
1629
|
+
SENSITIVE: []
|
|
1630
|
+
end
|
|
1631
|
+
|
|
1632
|
+
class RouterInputConfiguration
|
|
1633
|
+
attr_accessor standard: Types::StandardRouterInputConfiguration
|
|
1634
|
+
attr_accessor failover: Types::FailoverRouterInputConfiguration
|
|
1635
|
+
attr_accessor merge: Types::MergeRouterInputConfiguration
|
|
1636
|
+
attr_accessor media_connect_flow: Types::MediaConnectFlowRouterInputConfiguration
|
|
1637
|
+
attr_accessor unknown: untyped
|
|
1638
|
+
SENSITIVE: []
|
|
1639
|
+
|
|
1640
|
+
class Standard < RouterInputConfiguration
|
|
1641
|
+
end
|
|
1642
|
+
class Failover < RouterInputConfiguration
|
|
1643
|
+
end
|
|
1644
|
+
class Merge < RouterInputConfiguration
|
|
1645
|
+
end
|
|
1646
|
+
class MediaConnectFlow < RouterInputConfiguration
|
|
1647
|
+
end
|
|
1648
|
+
class Unknown < RouterInputConfiguration
|
|
1649
|
+
end
|
|
1650
|
+
end
|
|
1651
|
+
|
|
1652
|
+
class RouterInputFilter
|
|
1653
|
+
attr_accessor region_names: ::Array[::String]
|
|
1654
|
+
attr_accessor input_types: ::Array[("STANDARD" | "FAILOVER" | "MERGE" | "MEDIACONNECT_FLOW")]
|
|
1655
|
+
attr_accessor name_contains: ::Array[::String]
|
|
1656
|
+
attr_accessor network_interface_arns: ::Array[::String]
|
|
1657
|
+
attr_accessor routing_scopes: ::Array[("REGIONAL" | "GLOBAL")]
|
|
1658
|
+
attr_accessor unknown: untyped
|
|
1659
|
+
SENSITIVE: []
|
|
1660
|
+
|
|
1661
|
+
class RegionNames < RouterInputFilter
|
|
1662
|
+
end
|
|
1663
|
+
class InputTypes < RouterInputFilter
|
|
1664
|
+
end
|
|
1665
|
+
class NameContains < RouterInputFilter
|
|
1666
|
+
end
|
|
1667
|
+
class NetworkInterfaceArns < RouterInputFilter
|
|
1668
|
+
end
|
|
1669
|
+
class RoutingScopes < RouterInputFilter
|
|
1670
|
+
end
|
|
1671
|
+
class Unknown < RouterInputFilter
|
|
1672
|
+
end
|
|
1673
|
+
end
|
|
1674
|
+
|
|
1675
|
+
class RouterInputMessage
|
|
1676
|
+
attr_accessor code: ::String
|
|
1677
|
+
attr_accessor message: ::String
|
|
1678
|
+
SENSITIVE: []
|
|
1679
|
+
end
|
|
1680
|
+
|
|
1681
|
+
class RouterInputMetadata
|
|
1682
|
+
attr_accessor transport_stream_media_info: Types::TransportMediaInfo
|
|
1683
|
+
attr_accessor unknown: untyped
|
|
1684
|
+
SENSITIVE: []
|
|
1685
|
+
|
|
1686
|
+
class TransportStreamMediaInfo < RouterInputMetadata
|
|
1687
|
+
end
|
|
1688
|
+
class Unknown < RouterInputMetadata
|
|
1689
|
+
end
|
|
1690
|
+
end
|
|
1691
|
+
|
|
1692
|
+
class RouterInputProtocolConfiguration
|
|
1693
|
+
attr_accessor rtp: Types::RtpRouterInputConfiguration
|
|
1694
|
+
attr_accessor rist: Types::RistRouterInputConfiguration
|
|
1695
|
+
attr_accessor srt_listener: Types::SrtListenerRouterInputConfiguration
|
|
1696
|
+
attr_accessor srt_caller: Types::SrtCallerRouterInputConfiguration
|
|
1697
|
+
attr_accessor unknown: untyped
|
|
1698
|
+
SENSITIVE: []
|
|
1699
|
+
|
|
1700
|
+
class Rtp < RouterInputProtocolConfiguration
|
|
1701
|
+
end
|
|
1702
|
+
class Rist < RouterInputProtocolConfiguration
|
|
1703
|
+
end
|
|
1704
|
+
class SrtListener < RouterInputProtocolConfiguration
|
|
1705
|
+
end
|
|
1706
|
+
class SrtCaller < RouterInputProtocolConfiguration
|
|
1707
|
+
end
|
|
1708
|
+
class Unknown < RouterInputProtocolConfiguration
|
|
1709
|
+
end
|
|
1710
|
+
end
|
|
1711
|
+
|
|
1712
|
+
class RouterInputServiceQuotaExceededException
|
|
1713
|
+
attr_accessor message: ::String
|
|
1714
|
+
SENSITIVE: []
|
|
1715
|
+
end
|
|
1716
|
+
|
|
1717
|
+
class RouterInputSourceMetadataDetails
|
|
1718
|
+
attr_accessor source_metadata_messages: ::Array[Types::RouterInputMessage]
|
|
1719
|
+
attr_accessor timestamp: ::Time
|
|
1720
|
+
attr_accessor router_input_metadata: Types::RouterInputMetadata
|
|
1721
|
+
SENSITIVE: []
|
|
1722
|
+
end
|
|
1723
|
+
|
|
1724
|
+
class RouterInputStreamDetails
|
|
1725
|
+
attr_accessor standard: Types::StandardRouterInputStreamDetails
|
|
1726
|
+
attr_accessor failover: Types::FailoverRouterInputStreamDetails
|
|
1727
|
+
attr_accessor merge: Types::MergeRouterInputStreamDetails
|
|
1728
|
+
attr_accessor media_connect_flow: Types::MediaConnectFlowRouterInputStreamDetails
|
|
1729
|
+
attr_accessor unknown: untyped
|
|
1730
|
+
SENSITIVE: []
|
|
1731
|
+
|
|
1732
|
+
class Standard < RouterInputStreamDetails
|
|
1733
|
+
end
|
|
1734
|
+
class Failover < RouterInputStreamDetails
|
|
1735
|
+
end
|
|
1736
|
+
class Merge < RouterInputStreamDetails
|
|
1737
|
+
end
|
|
1738
|
+
class MediaConnectFlow < RouterInputStreamDetails
|
|
1739
|
+
end
|
|
1740
|
+
class Unknown < RouterInputStreamDetails
|
|
1741
|
+
end
|
|
1742
|
+
end
|
|
1743
|
+
|
|
1744
|
+
class RouterInputThumbnailDetails
|
|
1745
|
+
attr_accessor thumbnail_messages: ::Array[Types::RouterInputMessage]
|
|
1746
|
+
attr_accessor thumbnail: ::String
|
|
1747
|
+
attr_accessor timecode: ::String
|
|
1748
|
+
attr_accessor timestamp: ::Time
|
|
1749
|
+
SENSITIVE: []
|
|
1750
|
+
end
|
|
1751
|
+
|
|
1752
|
+
class RouterInputTransitEncryption
|
|
1753
|
+
attr_accessor encryption_key_type: ("SECRETS_MANAGER" | "AUTOMATIC")
|
|
1754
|
+
attr_accessor encryption_key_configuration: Types::RouterInputTransitEncryptionKeyConfiguration
|
|
1755
|
+
SENSITIVE: []
|
|
1756
|
+
end
|
|
1757
|
+
|
|
1758
|
+
class RouterInputTransitEncryptionKeyConfiguration
|
|
1759
|
+
attr_accessor secrets_manager: Types::SecretsManagerEncryptionKeyConfiguration
|
|
1760
|
+
attr_accessor automatic: Types::AutomaticEncryptionKeyConfiguration
|
|
1761
|
+
attr_accessor unknown: untyped
|
|
1762
|
+
SENSITIVE: []
|
|
1763
|
+
|
|
1764
|
+
class SecretsManager < RouterInputTransitEncryptionKeyConfiguration
|
|
1765
|
+
end
|
|
1766
|
+
class Automatic < RouterInputTransitEncryptionKeyConfiguration
|
|
1767
|
+
end
|
|
1768
|
+
class Unknown < RouterInputTransitEncryptionKeyConfiguration
|
|
1769
|
+
end
|
|
1770
|
+
end
|
|
1771
|
+
|
|
1772
|
+
class RouterNetworkInterface
|
|
1773
|
+
attr_accessor name: ::String
|
|
1774
|
+
attr_accessor arn: ::String
|
|
1775
|
+
attr_accessor id: ::String
|
|
1776
|
+
attr_accessor state: ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "ERROR" | "RECOVERING")
|
|
1777
|
+
attr_accessor network_interface_type: ("PUBLIC" | "VPC")
|
|
1778
|
+
attr_accessor configuration: Types::RouterNetworkInterfaceConfiguration
|
|
1779
|
+
attr_accessor associated_output_count: ::Integer
|
|
1780
|
+
attr_accessor associated_input_count: ::Integer
|
|
1781
|
+
attr_accessor region_name: ::String
|
|
1782
|
+
attr_accessor created_at: ::Time
|
|
1783
|
+
attr_accessor updated_at: ::Time
|
|
1784
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1785
|
+
SENSITIVE: []
|
|
1786
|
+
end
|
|
1787
|
+
|
|
1788
|
+
class RouterNetworkInterfaceConfiguration
|
|
1789
|
+
attr_accessor public: Types::PublicRouterNetworkInterfaceConfiguration
|
|
1790
|
+
attr_accessor vpc: Types::VpcRouterNetworkInterfaceConfiguration
|
|
1791
|
+
attr_accessor unknown: untyped
|
|
1792
|
+
SENSITIVE: []
|
|
1793
|
+
|
|
1794
|
+
class Public < RouterNetworkInterfaceConfiguration
|
|
1795
|
+
end
|
|
1796
|
+
class Vpc < RouterNetworkInterfaceConfiguration
|
|
1797
|
+
end
|
|
1798
|
+
class Unknown < RouterNetworkInterfaceConfiguration
|
|
1799
|
+
end
|
|
1800
|
+
end
|
|
1801
|
+
|
|
1802
|
+
class RouterNetworkInterfaceFilter
|
|
1803
|
+
attr_accessor region_names: ::Array[::String]
|
|
1804
|
+
attr_accessor network_interface_types: ::Array[("PUBLIC" | "VPC")]
|
|
1805
|
+
attr_accessor name_contains: ::Array[::String]
|
|
1806
|
+
attr_accessor unknown: untyped
|
|
1807
|
+
SENSITIVE: []
|
|
1808
|
+
|
|
1809
|
+
class RegionNames < RouterNetworkInterfaceFilter
|
|
1810
|
+
end
|
|
1811
|
+
class NetworkInterfaceTypes < RouterNetworkInterfaceFilter
|
|
1812
|
+
end
|
|
1813
|
+
class NameContains < RouterNetworkInterfaceFilter
|
|
1814
|
+
end
|
|
1815
|
+
class Unknown < RouterNetworkInterfaceFilter
|
|
1816
|
+
end
|
|
1817
|
+
end
|
|
1818
|
+
|
|
1819
|
+
class RouterNetworkInterfaceServiceQuotaExceededException
|
|
1820
|
+
attr_accessor message: ::String
|
|
1821
|
+
SENSITIVE: []
|
|
1822
|
+
end
|
|
1823
|
+
|
|
1824
|
+
class RouterOutput
|
|
1825
|
+
attr_accessor name: ::String
|
|
1826
|
+
attr_accessor arn: ::String
|
|
1827
|
+
attr_accessor id: ::String
|
|
1828
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
1829
|
+
attr_accessor output_type: ("STANDARD" | "MEDIACONNECT_FLOW" | "MEDIALIVE_INPUT")
|
|
1830
|
+
attr_accessor configuration: Types::RouterOutputConfiguration
|
|
1831
|
+
attr_accessor routed_state: ("ROUTED" | "ROUTING" | "UNROUTED")
|
|
1832
|
+
attr_accessor region_name: ::String
|
|
1833
|
+
attr_accessor availability_zone: ::String
|
|
1834
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
1835
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
1836
|
+
attr_accessor tier: ("OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20")
|
|
1837
|
+
attr_accessor created_at: ::Time
|
|
1838
|
+
attr_accessor updated_at: ::Time
|
|
1839
|
+
attr_accessor messages: ::Array[Types::RouterOutputMessage]
|
|
1840
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1841
|
+
attr_accessor stream_details: Types::RouterOutputStreamDetails
|
|
1842
|
+
attr_accessor ip_address: ::String
|
|
1843
|
+
attr_accessor routed_input_arn: ::String
|
|
1844
|
+
attr_accessor maintenance_type: ("PREFERRED_DAY_TIME" | "DEFAULT")
|
|
1845
|
+
attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
|
|
1846
|
+
attr_accessor maintenance_schedule_type: ("WINDOW")
|
|
1847
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
1848
|
+
SENSITIVE: []
|
|
1849
|
+
end
|
|
1850
|
+
|
|
1851
|
+
class RouterOutputConfiguration
|
|
1852
|
+
attr_accessor standard: Types::StandardRouterOutputConfiguration
|
|
1853
|
+
attr_accessor media_connect_flow: Types::MediaConnectFlowRouterOutputConfiguration
|
|
1854
|
+
attr_accessor media_live_input: Types::MediaLiveInputRouterOutputConfiguration
|
|
1855
|
+
attr_accessor unknown: untyped
|
|
1856
|
+
SENSITIVE: []
|
|
1857
|
+
|
|
1858
|
+
class Standard < RouterOutputConfiguration
|
|
1859
|
+
end
|
|
1860
|
+
class MediaConnectFlow < RouterOutputConfiguration
|
|
1861
|
+
end
|
|
1862
|
+
class MediaLiveInput < RouterOutputConfiguration
|
|
1863
|
+
end
|
|
1864
|
+
class Unknown < RouterOutputConfiguration
|
|
1865
|
+
end
|
|
1866
|
+
end
|
|
1867
|
+
|
|
1868
|
+
class RouterOutputFilter
|
|
1869
|
+
attr_accessor region_names: ::Array[::String]
|
|
1870
|
+
attr_accessor output_types: ::Array[("STANDARD" | "MEDIACONNECT_FLOW" | "MEDIALIVE_INPUT")]
|
|
1871
|
+
attr_accessor name_contains: ::Array[::String]
|
|
1872
|
+
attr_accessor network_interface_arns: ::Array[::String]
|
|
1873
|
+
attr_accessor routed_input_arns: ::Array[::String]
|
|
1874
|
+
attr_accessor routing_scopes: ::Array[("REGIONAL" | "GLOBAL")]
|
|
1875
|
+
attr_accessor unknown: untyped
|
|
1876
|
+
SENSITIVE: []
|
|
1877
|
+
|
|
1878
|
+
class RegionNames < RouterOutputFilter
|
|
1879
|
+
end
|
|
1880
|
+
class OutputTypes < RouterOutputFilter
|
|
1881
|
+
end
|
|
1882
|
+
class NameContains < RouterOutputFilter
|
|
1883
|
+
end
|
|
1884
|
+
class NetworkInterfaceArns < RouterOutputFilter
|
|
1885
|
+
end
|
|
1886
|
+
class RoutedInputArns < RouterOutputFilter
|
|
1887
|
+
end
|
|
1888
|
+
class RoutingScopes < RouterOutputFilter
|
|
1889
|
+
end
|
|
1890
|
+
class Unknown < RouterOutputFilter
|
|
1891
|
+
end
|
|
1892
|
+
end
|
|
1893
|
+
|
|
1894
|
+
class RouterOutputMessage
|
|
1895
|
+
attr_accessor code: ::String
|
|
1896
|
+
attr_accessor message: ::String
|
|
1897
|
+
SENSITIVE: []
|
|
1898
|
+
end
|
|
1899
|
+
|
|
1900
|
+
class RouterOutputProtocolConfiguration
|
|
1901
|
+
attr_accessor rtp: Types::RtpRouterOutputConfiguration
|
|
1902
|
+
attr_accessor rist: Types::RistRouterOutputConfiguration
|
|
1903
|
+
attr_accessor srt_listener: Types::SrtListenerRouterOutputConfiguration
|
|
1904
|
+
attr_accessor srt_caller: Types::SrtCallerRouterOutputConfiguration
|
|
1905
|
+
attr_accessor unknown: untyped
|
|
1906
|
+
SENSITIVE: []
|
|
1907
|
+
|
|
1908
|
+
class Rtp < RouterOutputProtocolConfiguration
|
|
1909
|
+
end
|
|
1910
|
+
class Rist < RouterOutputProtocolConfiguration
|
|
1911
|
+
end
|
|
1912
|
+
class SrtListener < RouterOutputProtocolConfiguration
|
|
1913
|
+
end
|
|
1914
|
+
class SrtCaller < RouterOutputProtocolConfiguration
|
|
1915
|
+
end
|
|
1916
|
+
class Unknown < RouterOutputProtocolConfiguration
|
|
1917
|
+
end
|
|
1918
|
+
end
|
|
1919
|
+
|
|
1920
|
+
class RouterOutputServiceQuotaExceededException
|
|
1921
|
+
attr_accessor message: ::String
|
|
1922
|
+
SENSITIVE: []
|
|
1923
|
+
end
|
|
1924
|
+
|
|
1925
|
+
class RouterOutputStreamDetails
|
|
1926
|
+
attr_accessor standard: Types::StandardRouterOutputStreamDetails
|
|
1927
|
+
attr_accessor media_connect_flow: Types::MediaConnectFlowRouterOutputStreamDetails
|
|
1928
|
+
attr_accessor media_live_input: Types::MediaLiveInputRouterOutputStreamDetails
|
|
1929
|
+
attr_accessor unknown: untyped
|
|
1930
|
+
SENSITIVE: []
|
|
1931
|
+
|
|
1932
|
+
class Standard < RouterOutputStreamDetails
|
|
1933
|
+
end
|
|
1934
|
+
class MediaConnectFlow < RouterOutputStreamDetails
|
|
1935
|
+
end
|
|
1936
|
+
class MediaLiveInput < RouterOutputStreamDetails
|
|
1937
|
+
end
|
|
1938
|
+
class Unknown < RouterOutputStreamDetails
|
|
1939
|
+
end
|
|
1940
|
+
end
|
|
1941
|
+
|
|
1942
|
+
class RtpRouterInputConfiguration
|
|
1943
|
+
attr_accessor port: ::Integer
|
|
1944
|
+
attr_accessor forward_error_correction: ("ENABLED" | "DISABLED")
|
|
1945
|
+
SENSITIVE: []
|
|
1946
|
+
end
|
|
1947
|
+
|
|
1948
|
+
class RtpRouterOutputConfiguration
|
|
1949
|
+
attr_accessor destination_address: ::String
|
|
1950
|
+
attr_accessor destination_port: ::Integer
|
|
1951
|
+
attr_accessor forward_error_correction: ("ENABLED" | "DISABLED")
|
|
1952
|
+
SENSITIVE: []
|
|
1953
|
+
end
|
|
1954
|
+
|
|
1955
|
+
class SecretsManagerEncryptionKeyConfiguration
|
|
1956
|
+
attr_accessor secret_arn: ::String
|
|
1957
|
+
attr_accessor role_arn: ::String
|
|
1958
|
+
SENSITIVE: []
|
|
1959
|
+
end
|
|
1960
|
+
|
|
1072
1961
|
class ServiceUnavailableException
|
|
1073
1962
|
attr_accessor message: ::String
|
|
1074
1963
|
SENSITIVE: []
|
|
@@ -1101,6 +1990,8 @@ module Aws::MediaConnect
|
|
|
1101
1990
|
attr_accessor whitelist_cidr: ::String
|
|
1102
1991
|
attr_accessor gateway_bridge_source: Types::SetGatewayBridgeSourceRequest
|
|
1103
1992
|
attr_accessor source_tags: ::Hash[::String, ::String]
|
|
1993
|
+
attr_accessor router_integration_state: ("ENABLED" | "DISABLED")
|
|
1994
|
+
attr_accessor router_integration_transit_decryption: Types::FlowTransitEncryption
|
|
1104
1995
|
SENSITIVE: []
|
|
1105
1996
|
end
|
|
1106
1997
|
|
|
@@ -1127,6 +2018,9 @@ module Aws::MediaConnect
|
|
|
1127
2018
|
attr_accessor whitelist_cidr: ::String
|
|
1128
2019
|
attr_accessor gateway_bridge_source: Types::GatewayBridgeSource
|
|
1129
2020
|
attr_accessor peer_ip_address: ::String
|
|
2021
|
+
attr_accessor router_integration_state: ("ENABLED" | "DISABLED")
|
|
2022
|
+
attr_accessor router_integration_transit_decryption: Types::FlowTransitEncryption
|
|
2023
|
+
attr_accessor connected_router_output_arn: ::String
|
|
1130
2024
|
SENSITIVE: []
|
|
1131
2025
|
end
|
|
1132
2026
|
|
|
@@ -1135,6 +2029,72 @@ module Aws::MediaConnect
|
|
|
1135
2029
|
SENSITIVE: []
|
|
1136
2030
|
end
|
|
1137
2031
|
|
|
2032
|
+
class SrtCallerRouterInputConfiguration
|
|
2033
|
+
attr_accessor source_address: ::String
|
|
2034
|
+
attr_accessor source_port: ::Integer
|
|
2035
|
+
attr_accessor minimum_latency_milliseconds: ::Integer
|
|
2036
|
+
attr_accessor stream_id: ::String
|
|
2037
|
+
attr_accessor decryption_configuration: Types::SrtDecryptionConfiguration
|
|
2038
|
+
SENSITIVE: []
|
|
2039
|
+
end
|
|
2040
|
+
|
|
2041
|
+
class SrtCallerRouterOutputConfiguration
|
|
2042
|
+
attr_accessor destination_address: ::String
|
|
2043
|
+
attr_accessor destination_port: ::Integer
|
|
2044
|
+
attr_accessor minimum_latency_milliseconds: ::Integer
|
|
2045
|
+
attr_accessor stream_id: ::String
|
|
2046
|
+
attr_accessor encryption_configuration: Types::SrtEncryptionConfiguration
|
|
2047
|
+
SENSITIVE: []
|
|
2048
|
+
end
|
|
2049
|
+
|
|
2050
|
+
class SrtDecryptionConfiguration
|
|
2051
|
+
attr_accessor encryption_key: Types::SecretsManagerEncryptionKeyConfiguration
|
|
2052
|
+
SENSITIVE: []
|
|
2053
|
+
end
|
|
2054
|
+
|
|
2055
|
+
class SrtEncryptionConfiguration
|
|
2056
|
+
attr_accessor encryption_key: Types::SecretsManagerEncryptionKeyConfiguration
|
|
2057
|
+
SENSITIVE: []
|
|
2058
|
+
end
|
|
2059
|
+
|
|
2060
|
+
class SrtListenerRouterInputConfiguration
|
|
2061
|
+
attr_accessor port: ::Integer
|
|
2062
|
+
attr_accessor minimum_latency_milliseconds: ::Integer
|
|
2063
|
+
attr_accessor decryption_configuration: Types::SrtDecryptionConfiguration
|
|
2064
|
+
SENSITIVE: []
|
|
2065
|
+
end
|
|
2066
|
+
|
|
2067
|
+
class SrtListenerRouterOutputConfiguration
|
|
2068
|
+
attr_accessor port: ::Integer
|
|
2069
|
+
attr_accessor minimum_latency_milliseconds: ::Integer
|
|
2070
|
+
attr_accessor encryption_configuration: Types::SrtEncryptionConfiguration
|
|
2071
|
+
SENSITIVE: []
|
|
2072
|
+
end
|
|
2073
|
+
|
|
2074
|
+
class StandardRouterInputConfiguration
|
|
2075
|
+
attr_accessor network_interface_arn: ::String
|
|
2076
|
+
attr_accessor protocol_configuration: Types::RouterInputProtocolConfiguration
|
|
2077
|
+
attr_accessor protocol: ("RTP" | "RIST" | "SRT_CALLER" | "SRT_LISTENER")
|
|
2078
|
+
SENSITIVE: []
|
|
2079
|
+
end
|
|
2080
|
+
|
|
2081
|
+
class StandardRouterInputStreamDetails
|
|
2082
|
+
attr_accessor source_ip_address: ::String
|
|
2083
|
+
SENSITIVE: []
|
|
2084
|
+
end
|
|
2085
|
+
|
|
2086
|
+
class StandardRouterOutputConfiguration
|
|
2087
|
+
attr_accessor network_interface_arn: ::String
|
|
2088
|
+
attr_accessor protocol_configuration: Types::RouterOutputProtocolConfiguration
|
|
2089
|
+
attr_accessor protocol: ("RTP" | "RIST" | "SRT_CALLER" | "SRT_LISTENER")
|
|
2090
|
+
SENSITIVE: []
|
|
2091
|
+
end
|
|
2092
|
+
|
|
2093
|
+
class StandardRouterOutputStreamDetails
|
|
2094
|
+
attr_accessor destination_ip_address: ::String
|
|
2095
|
+
SENSITIVE: []
|
|
2096
|
+
end
|
|
2097
|
+
|
|
1138
2098
|
class StartFlowRequest
|
|
1139
2099
|
attr_accessor flow_arn: ::String
|
|
1140
2100
|
SENSITIVE: []
|
|
@@ -1146,6 +2106,34 @@ module Aws::MediaConnect
|
|
|
1146
2106
|
SENSITIVE: []
|
|
1147
2107
|
end
|
|
1148
2108
|
|
|
2109
|
+
class StartRouterInputRequest
|
|
2110
|
+
attr_accessor arn: ::String
|
|
2111
|
+
SENSITIVE: []
|
|
2112
|
+
end
|
|
2113
|
+
|
|
2114
|
+
class StartRouterInputResponse
|
|
2115
|
+
attr_accessor arn: ::String
|
|
2116
|
+
attr_accessor name: ::String
|
|
2117
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
2118
|
+
attr_accessor maintenance_schedule_type: ("WINDOW")
|
|
2119
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
2120
|
+
SENSITIVE: []
|
|
2121
|
+
end
|
|
2122
|
+
|
|
2123
|
+
class StartRouterOutputRequest
|
|
2124
|
+
attr_accessor arn: ::String
|
|
2125
|
+
SENSITIVE: []
|
|
2126
|
+
end
|
|
2127
|
+
|
|
2128
|
+
class StartRouterOutputResponse
|
|
2129
|
+
attr_accessor arn: ::String
|
|
2130
|
+
attr_accessor name: ::String
|
|
2131
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
2132
|
+
attr_accessor maintenance_schedule_type: ("WINDOW")
|
|
2133
|
+
attr_accessor maintenance_schedule: Types::MaintenanceSchedule
|
|
2134
|
+
SENSITIVE: []
|
|
2135
|
+
end
|
|
2136
|
+
|
|
1149
2137
|
class StopFlowRequest
|
|
1150
2138
|
attr_accessor flow_arn: ::String
|
|
1151
2139
|
SENSITIVE: []
|
|
@@ -1157,12 +2145,57 @@ module Aws::MediaConnect
|
|
|
1157
2145
|
SENSITIVE: []
|
|
1158
2146
|
end
|
|
1159
2147
|
|
|
2148
|
+
class StopRouterInputRequest
|
|
2149
|
+
attr_accessor arn: ::String
|
|
2150
|
+
SENSITIVE: []
|
|
2151
|
+
end
|
|
2152
|
+
|
|
2153
|
+
class StopRouterInputResponse
|
|
2154
|
+
attr_accessor arn: ::String
|
|
2155
|
+
attr_accessor name: ::String
|
|
2156
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
2157
|
+
SENSITIVE: []
|
|
2158
|
+
end
|
|
2159
|
+
|
|
2160
|
+
class StopRouterOutputRequest
|
|
2161
|
+
attr_accessor arn: ::String
|
|
2162
|
+
SENSITIVE: []
|
|
2163
|
+
end
|
|
2164
|
+
|
|
2165
|
+
class StopRouterOutputResponse
|
|
2166
|
+
attr_accessor arn: ::String
|
|
2167
|
+
attr_accessor name: ::String
|
|
2168
|
+
attr_accessor state: ("CREATING" | "STANDBY" | "STARTING" | "ACTIVE" | "STOPPING" | "DELETING" | "UPDATING" | "ERROR" | "RECOVERING" | "MIGRATING")
|
|
2169
|
+
SENSITIVE: []
|
|
2170
|
+
end
|
|
2171
|
+
|
|
2172
|
+
class TagGlobalResourceRequest
|
|
2173
|
+
attr_accessor resource_arn: ::String
|
|
2174
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
2175
|
+
SENSITIVE: []
|
|
2176
|
+
end
|
|
2177
|
+
|
|
1160
2178
|
class TagResourceRequest
|
|
1161
2179
|
attr_accessor resource_arn: ::String
|
|
1162
2180
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1163
2181
|
SENSITIVE: []
|
|
1164
2182
|
end
|
|
1165
2183
|
|
|
2184
|
+
class TakeRouterInputRequest
|
|
2185
|
+
attr_accessor router_output_arn: ::String
|
|
2186
|
+
attr_accessor router_input_arn: ::String
|
|
2187
|
+
SENSITIVE: []
|
|
2188
|
+
end
|
|
2189
|
+
|
|
2190
|
+
class TakeRouterInputResponse
|
|
2191
|
+
attr_accessor routed_state: ("ROUTED" | "ROUTING" | "UNROUTED")
|
|
2192
|
+
attr_accessor router_output_arn: ::String
|
|
2193
|
+
attr_accessor router_output_name: ::String
|
|
2194
|
+
attr_accessor router_input_arn: ::String
|
|
2195
|
+
attr_accessor router_input_name: ::String
|
|
2196
|
+
SENSITIVE: []
|
|
2197
|
+
end
|
|
2198
|
+
|
|
1166
2199
|
class ThumbnailDetails
|
|
1167
2200
|
attr_accessor flow_arn: ::String
|
|
1168
2201
|
attr_accessor thumbnail: ::String
|
|
@@ -1222,6 +2255,12 @@ module Aws::MediaConnect
|
|
|
1222
2255
|
SENSITIVE: []
|
|
1223
2256
|
end
|
|
1224
2257
|
|
|
2258
|
+
class UntagGlobalResourceRequest
|
|
2259
|
+
attr_accessor resource_arn: ::String
|
|
2260
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
2261
|
+
SENSITIVE: []
|
|
2262
|
+
end
|
|
2263
|
+
|
|
1225
2264
|
class UntagResourceRequest
|
|
1226
2265
|
attr_accessor resource_arn: ::String
|
|
1227
2266
|
attr_accessor tag_keys: ::Array[::String]
|
|
@@ -1384,6 +2423,8 @@ module Aws::MediaConnect
|
|
|
1384
2423
|
attr_accessor output_status: ("ENABLED" | "DISABLED")
|
|
1385
2424
|
attr_accessor ndi_program_name: ::String
|
|
1386
2425
|
attr_accessor ndi_speed_hq_quality: ::Integer
|
|
2426
|
+
attr_accessor router_integration_state: ("ENABLED" | "DISABLED")
|
|
2427
|
+
attr_accessor router_integration_transit_encryption: Types::FlowTransitEncryption
|
|
1387
2428
|
SENSITIVE: []
|
|
1388
2429
|
end
|
|
1389
2430
|
|
|
@@ -1429,6 +2470,8 @@ module Aws::MediaConnect
|
|
|
1429
2470
|
attr_accessor vpc_interface_name: ::String
|
|
1430
2471
|
attr_accessor whitelist_cidr: ::String
|
|
1431
2472
|
attr_accessor gateway_bridge_source: Types::UpdateGatewayBridgeSourceRequest
|
|
2473
|
+
attr_accessor router_integration_state: ("ENABLED" | "DISABLED")
|
|
2474
|
+
attr_accessor router_integration_transit_decryption: Types::FlowTransitEncryption
|
|
1432
2475
|
SENSITIVE: []
|
|
1433
2476
|
end
|
|
1434
2477
|
|
|
@@ -1469,6 +2512,51 @@ module Aws::MediaConnect
|
|
|
1469
2512
|
SENSITIVE: []
|
|
1470
2513
|
end
|
|
1471
2514
|
|
|
2515
|
+
class UpdateRouterInputRequest
|
|
2516
|
+
attr_accessor arn: ::String
|
|
2517
|
+
attr_accessor name: ::String
|
|
2518
|
+
attr_accessor configuration: Types::RouterInputConfiguration
|
|
2519
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
2520
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
2521
|
+
attr_accessor tier: ("INPUT_100" | "INPUT_50" | "INPUT_20")
|
|
2522
|
+
attr_accessor transit_encryption: Types::RouterInputTransitEncryption
|
|
2523
|
+
attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
|
|
2524
|
+
SENSITIVE: []
|
|
2525
|
+
end
|
|
2526
|
+
|
|
2527
|
+
class UpdateRouterInputResponse
|
|
2528
|
+
attr_accessor router_input: Types::RouterInput
|
|
2529
|
+
SENSITIVE: []
|
|
2530
|
+
end
|
|
2531
|
+
|
|
2532
|
+
class UpdateRouterNetworkInterfaceRequest
|
|
2533
|
+
attr_accessor arn: ::String
|
|
2534
|
+
attr_accessor name: ::String
|
|
2535
|
+
attr_accessor configuration: Types::RouterNetworkInterfaceConfiguration
|
|
2536
|
+
SENSITIVE: []
|
|
2537
|
+
end
|
|
2538
|
+
|
|
2539
|
+
class UpdateRouterNetworkInterfaceResponse
|
|
2540
|
+
attr_accessor router_network_interface: Types::RouterNetworkInterface
|
|
2541
|
+
SENSITIVE: []
|
|
2542
|
+
end
|
|
2543
|
+
|
|
2544
|
+
class UpdateRouterOutputRequest
|
|
2545
|
+
attr_accessor arn: ::String
|
|
2546
|
+
attr_accessor name: ::String
|
|
2547
|
+
attr_accessor configuration: Types::RouterOutputConfiguration
|
|
2548
|
+
attr_accessor maximum_bitrate: ::Integer
|
|
2549
|
+
attr_accessor routing_scope: ("REGIONAL" | "GLOBAL")
|
|
2550
|
+
attr_accessor tier: ("OUTPUT_100" | "OUTPUT_50" | "OUTPUT_20")
|
|
2551
|
+
attr_accessor maintenance_configuration: Types::MaintenanceConfiguration
|
|
2552
|
+
SENSITIVE: []
|
|
2553
|
+
end
|
|
2554
|
+
|
|
2555
|
+
class UpdateRouterOutputResponse
|
|
2556
|
+
attr_accessor router_output: Types::RouterOutput
|
|
2557
|
+
SENSITIVE: []
|
|
2558
|
+
end
|
|
2559
|
+
|
|
1472
2560
|
class VideoMonitoringSetting
|
|
1473
2561
|
attr_accessor black_frames: Types::BlackFrames
|
|
1474
2562
|
attr_accessor frozen_frames: Types::FrozenFrames
|
|
@@ -1499,5 +2587,18 @@ module Aws::MediaConnect
|
|
|
1499
2587
|
attr_accessor vpc_interface_tags: ::Hash[::String, ::String]
|
|
1500
2588
|
SENSITIVE: []
|
|
1501
2589
|
end
|
|
2590
|
+
|
|
2591
|
+
class VpcRouterNetworkInterfaceConfiguration
|
|
2592
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
2593
|
+
attr_accessor subnet_id: ::String
|
|
2594
|
+
SENSITIVE: []
|
|
2595
|
+
end
|
|
2596
|
+
|
|
2597
|
+
class WindowMaintenanceSchedule
|
|
2598
|
+
attr_accessor start: ::Time
|
|
2599
|
+
attr_accessor end: ::Time
|
|
2600
|
+
attr_accessor scheduled_time: ::Time
|
|
2601
|
+
SENSITIVE: []
|
|
2602
|
+
end
|
|
1502
2603
|
end
|
|
1503
2604
|
end
|