aws-sdk-mediaconnect 1.90.0 → 1.91.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 +5 -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 +1 -1
|
@@ -741,6 +741,18 @@ module Aws::MediaConnect
|
|
|
741
741
|
# output_tags: {
|
|
742
742
|
# "String" => "String",
|
|
743
743
|
# },
|
|
744
|
+
# router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
|
|
745
|
+
# router_integration_transit_encryption: {
|
|
746
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
747
|
+
# encryption_key_configuration: { # required
|
|
748
|
+
# secrets_manager: {
|
|
749
|
+
# secret_arn: "SecretArn", # required
|
|
750
|
+
# role_arn: "RoleArn", # required
|
|
751
|
+
# },
|
|
752
|
+
# automatic: {
|
|
753
|
+
# },
|
|
754
|
+
# },
|
|
755
|
+
# },
|
|
744
756
|
# },
|
|
745
757
|
# ],
|
|
746
758
|
# })
|
|
@@ -799,6 +811,11 @@ module Aws::MediaConnect
|
|
|
799
811
|
# resp.outputs[0].bridge_ports[0] #=> Integer
|
|
800
812
|
# resp.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
|
|
801
813
|
# resp.outputs[0].peer_ip_address #=> String
|
|
814
|
+
# resp.outputs[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
815
|
+
# resp.outputs[0].router_integration_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
816
|
+
# resp.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
817
|
+
# resp.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
818
|
+
# resp.outputs[0].connected_router_input_arn #=> String
|
|
802
819
|
#
|
|
803
820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowOutputs AWS API Documentation
|
|
804
821
|
#
|
|
@@ -878,6 +895,18 @@ module Aws::MediaConnect
|
|
|
878
895
|
# source_tags: {
|
|
879
896
|
# "String" => "String",
|
|
880
897
|
# },
|
|
898
|
+
# router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
|
|
899
|
+
# router_integration_transit_decryption: {
|
|
900
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
901
|
+
# encryption_key_configuration: { # required
|
|
902
|
+
# secrets_manager: {
|
|
903
|
+
# secret_arn: "SecretArn", # required
|
|
904
|
+
# role_arn: "RoleArn", # required
|
|
905
|
+
# },
|
|
906
|
+
# automatic: {
|
|
907
|
+
# },
|
|
908
|
+
# },
|
|
909
|
+
# },
|
|
881
910
|
# },
|
|
882
911
|
# ],
|
|
883
912
|
# })
|
|
@@ -932,6 +961,11 @@ module Aws::MediaConnect
|
|
|
932
961
|
# resp.sources[0].gateway_bridge_source.bridge_arn #=> String
|
|
933
962
|
# resp.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
934
963
|
# resp.sources[0].peer_ip_address #=> String
|
|
964
|
+
# resp.sources[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
965
|
+
# resp.sources[0].router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
966
|
+
# resp.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
967
|
+
# resp.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
968
|
+
# resp.sources[0].connected_router_output_arn #=> String
|
|
935
969
|
#
|
|
936
970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddFlowSources AWS API Documentation
|
|
937
971
|
#
|
|
@@ -995,6 +1029,268 @@ module Aws::MediaConnect
|
|
|
995
1029
|
req.send_request(options)
|
|
996
1030
|
end
|
|
997
1031
|
|
|
1032
|
+
# Retrieves information about multiple router inputs in AWS Elemental
|
|
1033
|
+
# MediaConnect.
|
|
1034
|
+
#
|
|
1035
|
+
# @option params [required, Array<String>] :arns
|
|
1036
|
+
# The Amazon Resource Names (ARNs) of the router inputs you want to
|
|
1037
|
+
# retrieve information about.
|
|
1038
|
+
#
|
|
1039
|
+
# @return [Types::BatchGetRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1040
|
+
#
|
|
1041
|
+
# * {Types::BatchGetRouterInputResponse#router_inputs #router_inputs} => Array<Types::RouterInput>
|
|
1042
|
+
# * {Types::BatchGetRouterInputResponse#errors #errors} => Array<Types::BatchGetRouterInputError>
|
|
1043
|
+
#
|
|
1044
|
+
# @example Request syntax with placeholder values
|
|
1045
|
+
#
|
|
1046
|
+
# resp = client.batch_get_router_input({
|
|
1047
|
+
# arns: ["RouterInputArn"], # required
|
|
1048
|
+
# })
|
|
1049
|
+
#
|
|
1050
|
+
# @example Response structure
|
|
1051
|
+
#
|
|
1052
|
+
# resp.router_inputs #=> Array
|
|
1053
|
+
# resp.router_inputs[0].name #=> String
|
|
1054
|
+
# resp.router_inputs[0].arn #=> String
|
|
1055
|
+
# resp.router_inputs[0].id #=> String
|
|
1056
|
+
# resp.router_inputs[0].state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
1057
|
+
# resp.router_inputs[0].input_type #=> String, one of "STANDARD", "FAILOVER", "MERGE", "MEDIACONNECT_FLOW"
|
|
1058
|
+
# resp.router_inputs[0].configuration.standard.network_interface_arn #=> String
|
|
1059
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.rtp.port #=> Integer
|
|
1060
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
1061
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.rist.port #=> Integer
|
|
1062
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.rist.recovery_latency_milliseconds #=> Integer
|
|
1063
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
1064
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
1065
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
1066
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
1067
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_caller.source_address #=> String
|
|
1068
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_caller.source_port #=> Integer
|
|
1069
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
1070
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
1071
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
1072
|
+
# resp.router_inputs[0].configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
1073
|
+
# resp.router_inputs[0].configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
1074
|
+
# resp.router_inputs[0].configuration.failover.network_interface_arn #=> String
|
|
1075
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations #=> Array
|
|
1076
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].rtp.port #=> Integer
|
|
1077
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
1078
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].rist.port #=> Integer
|
|
1079
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
1080
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_listener.port #=> Integer
|
|
1081
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_listener.minimum_latency_milliseconds #=> Integer
|
|
1082
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
1083
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
1084
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_caller.source_address #=> String
|
|
1085
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_caller.source_port #=> Integer
|
|
1086
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_caller.minimum_latency_milliseconds #=> Integer
|
|
1087
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_caller.stream_id #=> String
|
|
1088
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
1089
|
+
# resp.router_inputs[0].configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
1090
|
+
# resp.router_inputs[0].configuration.failover.source_priority_mode #=> String, one of "NO_PRIORITY", "PRIMARY_SECONDARY"
|
|
1091
|
+
# resp.router_inputs[0].configuration.failover.primary_source_index #=> Integer
|
|
1092
|
+
# resp.router_inputs[0].configuration.merge.network_interface_arn #=> String
|
|
1093
|
+
# resp.router_inputs[0].configuration.merge.protocol_configurations #=> Array
|
|
1094
|
+
# resp.router_inputs[0].configuration.merge.protocol_configurations[0].rtp.port #=> Integer
|
|
1095
|
+
# resp.router_inputs[0].configuration.merge.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
1096
|
+
# resp.router_inputs[0].configuration.merge.protocol_configurations[0].rist.port #=> Integer
|
|
1097
|
+
# resp.router_inputs[0].configuration.merge.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
1098
|
+
# resp.router_inputs[0].configuration.merge.merge_recovery_window_milliseconds #=> Integer
|
|
1099
|
+
# resp.router_inputs[0].configuration.media_connect_flow.flow_arn #=> String
|
|
1100
|
+
# resp.router_inputs[0].configuration.media_connect_flow.flow_output_arn #=> String
|
|
1101
|
+
# resp.router_inputs[0].configuration.media_connect_flow.source_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
1102
|
+
# resp.router_inputs[0].configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
1103
|
+
# resp.router_inputs[0].configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
1104
|
+
# resp.router_inputs[0].routed_outputs #=> Integer
|
|
1105
|
+
# resp.router_inputs[0].maximum_routed_outputs #=> Integer
|
|
1106
|
+
# resp.router_inputs[0].region_name #=> String
|
|
1107
|
+
# resp.router_inputs[0].availability_zone #=> String
|
|
1108
|
+
# resp.router_inputs[0].maximum_bitrate #=> Integer
|
|
1109
|
+
# resp.router_inputs[0].tier #=> String, one of "INPUT_100", "INPUT_50", "INPUT_20"
|
|
1110
|
+
# resp.router_inputs[0].routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
1111
|
+
# resp.router_inputs[0].created_at #=> Time
|
|
1112
|
+
# resp.router_inputs[0].updated_at #=> Time
|
|
1113
|
+
# resp.router_inputs[0].messages #=> Array
|
|
1114
|
+
# resp.router_inputs[0].messages[0].code #=> String
|
|
1115
|
+
# resp.router_inputs[0].messages[0].message #=> String
|
|
1116
|
+
# resp.router_inputs[0].transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
1117
|
+
# resp.router_inputs[0].transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
1118
|
+
# resp.router_inputs[0].transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
1119
|
+
# resp.router_inputs[0].tags #=> Hash
|
|
1120
|
+
# resp.router_inputs[0].tags["String"] #=> String
|
|
1121
|
+
# resp.router_inputs[0].stream_details.standard.source_ip_address #=> String
|
|
1122
|
+
# resp.router_inputs[0].stream_details.failover.source_index_zero_stream_details.source_index #=> Integer
|
|
1123
|
+
# resp.router_inputs[0].stream_details.failover.source_index_zero_stream_details.source_ip_address #=> String
|
|
1124
|
+
# resp.router_inputs[0].stream_details.failover.source_index_one_stream_details.source_index #=> Integer
|
|
1125
|
+
# resp.router_inputs[0].stream_details.failover.source_index_one_stream_details.source_ip_address #=> String
|
|
1126
|
+
# resp.router_inputs[0].stream_details.merge.source_index_zero_stream_details.source_index #=> Integer
|
|
1127
|
+
# resp.router_inputs[0].stream_details.merge.source_index_zero_stream_details.source_ip_address #=> String
|
|
1128
|
+
# resp.router_inputs[0].stream_details.merge.source_index_one_stream_details.source_index #=> Integer
|
|
1129
|
+
# resp.router_inputs[0].stream_details.merge.source_index_one_stream_details.source_ip_address #=> String
|
|
1130
|
+
# resp.router_inputs[0].ip_address #=> String
|
|
1131
|
+
# resp.router_inputs[0].maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
1132
|
+
# resp.router_inputs[0].maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
1133
|
+
# resp.router_inputs[0].maintenance_configuration.preferred_day_time.time #=> String
|
|
1134
|
+
# resp.router_inputs[0].maintenance_schedule_type #=> String, one of "WINDOW"
|
|
1135
|
+
# resp.router_inputs[0].maintenance_schedule.window.start #=> Time
|
|
1136
|
+
# resp.router_inputs[0].maintenance_schedule.window.end #=> Time
|
|
1137
|
+
# resp.router_inputs[0].maintenance_schedule.window.scheduled_time #=> Time
|
|
1138
|
+
# resp.errors #=> Array
|
|
1139
|
+
# resp.errors[0].arn #=> String
|
|
1140
|
+
# resp.errors[0].code #=> String
|
|
1141
|
+
# resp.errors[0].message #=> String
|
|
1142
|
+
#
|
|
1143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BatchGetRouterInput AWS API Documentation
|
|
1144
|
+
#
|
|
1145
|
+
# @overload batch_get_router_input(params = {})
|
|
1146
|
+
# @param [Hash] params ({})
|
|
1147
|
+
def batch_get_router_input(params = {}, options = {})
|
|
1148
|
+
req = build_request(:batch_get_router_input, params)
|
|
1149
|
+
req.send_request(options)
|
|
1150
|
+
end
|
|
1151
|
+
|
|
1152
|
+
# Retrieves information about multiple router network interfaces in AWS
|
|
1153
|
+
# Elemental MediaConnect.
|
|
1154
|
+
#
|
|
1155
|
+
# @option params [required, Array<String>] :arns
|
|
1156
|
+
# The Amazon Resource Names (ARNs) of the router network interfaces you
|
|
1157
|
+
# want to retrieve information about.
|
|
1158
|
+
#
|
|
1159
|
+
# @return [Types::BatchGetRouterNetworkInterfaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1160
|
+
#
|
|
1161
|
+
# * {Types::BatchGetRouterNetworkInterfaceResponse#router_network_interfaces #router_network_interfaces} => Array<Types::RouterNetworkInterface>
|
|
1162
|
+
# * {Types::BatchGetRouterNetworkInterfaceResponse#errors #errors} => Array<Types::BatchGetRouterNetworkInterfaceError>
|
|
1163
|
+
#
|
|
1164
|
+
# @example Request syntax with placeholder values
|
|
1165
|
+
#
|
|
1166
|
+
# resp = client.batch_get_router_network_interface({
|
|
1167
|
+
# arns: ["RouterNetworkInterfaceArn"], # required
|
|
1168
|
+
# })
|
|
1169
|
+
#
|
|
1170
|
+
# @example Response structure
|
|
1171
|
+
#
|
|
1172
|
+
# resp.router_network_interfaces #=> Array
|
|
1173
|
+
# resp.router_network_interfaces[0].name #=> String
|
|
1174
|
+
# resp.router_network_interfaces[0].arn #=> String
|
|
1175
|
+
# resp.router_network_interfaces[0].id #=> String
|
|
1176
|
+
# resp.router_network_interfaces[0].state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "ERROR", "RECOVERING"
|
|
1177
|
+
# resp.router_network_interfaces[0].network_interface_type #=> String, one of "PUBLIC", "VPC"
|
|
1178
|
+
# resp.router_network_interfaces[0].configuration.public.allow_rules #=> Array
|
|
1179
|
+
# resp.router_network_interfaces[0].configuration.public.allow_rules[0].cidr #=> String
|
|
1180
|
+
# resp.router_network_interfaces[0].configuration.vpc.security_group_ids #=> Array
|
|
1181
|
+
# resp.router_network_interfaces[0].configuration.vpc.security_group_ids[0] #=> String
|
|
1182
|
+
# resp.router_network_interfaces[0].configuration.vpc.subnet_id #=> String
|
|
1183
|
+
# resp.router_network_interfaces[0].associated_output_count #=> Integer
|
|
1184
|
+
# resp.router_network_interfaces[0].associated_input_count #=> Integer
|
|
1185
|
+
# resp.router_network_interfaces[0].region_name #=> String
|
|
1186
|
+
# resp.router_network_interfaces[0].created_at #=> Time
|
|
1187
|
+
# resp.router_network_interfaces[0].updated_at #=> Time
|
|
1188
|
+
# resp.router_network_interfaces[0].tags #=> Hash
|
|
1189
|
+
# resp.router_network_interfaces[0].tags["String"] #=> String
|
|
1190
|
+
# resp.errors #=> Array
|
|
1191
|
+
# resp.errors[0].arn #=> String
|
|
1192
|
+
# resp.errors[0].code #=> String
|
|
1193
|
+
# resp.errors[0].message #=> String
|
|
1194
|
+
#
|
|
1195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BatchGetRouterNetworkInterface AWS API Documentation
|
|
1196
|
+
#
|
|
1197
|
+
# @overload batch_get_router_network_interface(params = {})
|
|
1198
|
+
# @param [Hash] params ({})
|
|
1199
|
+
def batch_get_router_network_interface(params = {}, options = {})
|
|
1200
|
+
req = build_request(:batch_get_router_network_interface, params)
|
|
1201
|
+
req.send_request(options)
|
|
1202
|
+
end
|
|
1203
|
+
|
|
1204
|
+
# Retrieves information about multiple router outputs in AWS Elemental
|
|
1205
|
+
# MediaConnect.
|
|
1206
|
+
#
|
|
1207
|
+
# @option params [required, Array<String>] :arns
|
|
1208
|
+
# The Amazon Resource Names (ARNs) of the router outputs you want to
|
|
1209
|
+
# retrieve information about.
|
|
1210
|
+
#
|
|
1211
|
+
# @return [Types::BatchGetRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1212
|
+
#
|
|
1213
|
+
# * {Types::BatchGetRouterOutputResponse#router_outputs #router_outputs} => Array<Types::RouterOutput>
|
|
1214
|
+
# * {Types::BatchGetRouterOutputResponse#errors #errors} => Array<Types::BatchGetRouterOutputError>
|
|
1215
|
+
#
|
|
1216
|
+
# @example Request syntax with placeholder values
|
|
1217
|
+
#
|
|
1218
|
+
# resp = client.batch_get_router_output({
|
|
1219
|
+
# arns: ["RouterOutputArn"], # required
|
|
1220
|
+
# })
|
|
1221
|
+
#
|
|
1222
|
+
# @example Response structure
|
|
1223
|
+
#
|
|
1224
|
+
# resp.router_outputs #=> Array
|
|
1225
|
+
# resp.router_outputs[0].name #=> String
|
|
1226
|
+
# resp.router_outputs[0].arn #=> String
|
|
1227
|
+
# resp.router_outputs[0].id #=> String
|
|
1228
|
+
# resp.router_outputs[0].state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
1229
|
+
# resp.router_outputs[0].output_type #=> String, one of "STANDARD", "MEDIACONNECT_FLOW", "MEDIALIVE_INPUT"
|
|
1230
|
+
# resp.router_outputs[0].configuration.standard.network_interface_arn #=> String
|
|
1231
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.rtp.destination_address #=> String
|
|
1232
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.rtp.destination_port #=> Integer
|
|
1233
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
1234
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.rist.destination_address #=> String
|
|
1235
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.rist.destination_port #=> Integer
|
|
1236
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
1237
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
1238
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.secret_arn #=> String
|
|
1239
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.role_arn #=> String
|
|
1240
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_caller.destination_address #=> String
|
|
1241
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_caller.destination_port #=> Integer
|
|
1242
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
1243
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
1244
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.secret_arn #=> String
|
|
1245
|
+
# resp.router_outputs[0].configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.role_arn #=> String
|
|
1246
|
+
# resp.router_outputs[0].configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
1247
|
+
# resp.router_outputs[0].configuration.media_connect_flow.flow_arn #=> String
|
|
1248
|
+
# resp.router_outputs[0].configuration.media_connect_flow.flow_source_arn #=> String
|
|
1249
|
+
# resp.router_outputs[0].configuration.media_connect_flow.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
1250
|
+
# resp.router_outputs[0].configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
1251
|
+
# resp.router_outputs[0].configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
1252
|
+
# resp.router_outputs[0].configuration.media_live_input.media_live_input_arn #=> String
|
|
1253
|
+
# resp.router_outputs[0].configuration.media_live_input.media_live_pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
|
1254
|
+
# resp.router_outputs[0].configuration.media_live_input.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
1255
|
+
# resp.router_outputs[0].configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
1256
|
+
# resp.router_outputs[0].configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
1257
|
+
# resp.router_outputs[0].routed_state #=> String, one of "ROUTED", "ROUTING", "UNROUTED"
|
|
1258
|
+
# resp.router_outputs[0].region_name #=> String
|
|
1259
|
+
# resp.router_outputs[0].availability_zone #=> String
|
|
1260
|
+
# resp.router_outputs[0].maximum_bitrate #=> Integer
|
|
1261
|
+
# resp.router_outputs[0].routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
1262
|
+
# resp.router_outputs[0].tier #=> String, one of "OUTPUT_100", "OUTPUT_50", "OUTPUT_20"
|
|
1263
|
+
# resp.router_outputs[0].created_at #=> Time
|
|
1264
|
+
# resp.router_outputs[0].updated_at #=> Time
|
|
1265
|
+
# resp.router_outputs[0].messages #=> Array
|
|
1266
|
+
# resp.router_outputs[0].messages[0].code #=> String
|
|
1267
|
+
# resp.router_outputs[0].messages[0].message #=> String
|
|
1268
|
+
# resp.router_outputs[0].tags #=> Hash
|
|
1269
|
+
# resp.router_outputs[0].tags["String"] #=> String
|
|
1270
|
+
# resp.router_outputs[0].stream_details.standard.destination_ip_address #=> String
|
|
1271
|
+
# resp.router_outputs[0].ip_address #=> String
|
|
1272
|
+
# resp.router_outputs[0].routed_input_arn #=> String
|
|
1273
|
+
# resp.router_outputs[0].maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
1274
|
+
# resp.router_outputs[0].maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
1275
|
+
# resp.router_outputs[0].maintenance_configuration.preferred_day_time.time #=> String
|
|
1276
|
+
# resp.router_outputs[0].maintenance_schedule_type #=> String, one of "WINDOW"
|
|
1277
|
+
# resp.router_outputs[0].maintenance_schedule.window.start #=> Time
|
|
1278
|
+
# resp.router_outputs[0].maintenance_schedule.window.end #=> Time
|
|
1279
|
+
# resp.router_outputs[0].maintenance_schedule.window.scheduled_time #=> Time
|
|
1280
|
+
# resp.errors #=> Array
|
|
1281
|
+
# resp.errors[0].arn #=> String
|
|
1282
|
+
# resp.errors[0].code #=> String
|
|
1283
|
+
# resp.errors[0].message #=> String
|
|
1284
|
+
#
|
|
1285
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/BatchGetRouterOutput AWS API Documentation
|
|
1286
|
+
#
|
|
1287
|
+
# @overload batch_get_router_output(params = {})
|
|
1288
|
+
# @param [Hash] params ({})
|
|
1289
|
+
def batch_get_router_output(params = {}, options = {})
|
|
1290
|
+
req = build_request(:batch_get_router_output, params)
|
|
1291
|
+
req.send_request(options)
|
|
1292
|
+
end
|
|
1293
|
+
|
|
998
1294
|
# Creates a new bridge. The request must include one source.
|
|
999
1295
|
#
|
|
1000
1296
|
# @option params [Types::AddEgressGatewayBridgeRequest] :egress_gateway_bridge
|
|
@@ -1291,6 +1587,18 @@ module Aws::MediaConnect
|
|
|
1291
1587
|
# output_tags: {
|
|
1292
1588
|
# "String" => "String",
|
|
1293
1589
|
# },
|
|
1590
|
+
# router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
|
|
1591
|
+
# router_integration_transit_encryption: {
|
|
1592
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
1593
|
+
# encryption_key_configuration: { # required
|
|
1594
|
+
# secrets_manager: {
|
|
1595
|
+
# secret_arn: "SecretArn", # required
|
|
1596
|
+
# role_arn: "RoleArn", # required
|
|
1597
|
+
# },
|
|
1598
|
+
# automatic: {
|
|
1599
|
+
# },
|
|
1600
|
+
# },
|
|
1601
|
+
# },
|
|
1294
1602
|
# },
|
|
1295
1603
|
# ],
|
|
1296
1604
|
# source: {
|
|
@@ -1344,6 +1652,18 @@ module Aws::MediaConnect
|
|
|
1344
1652
|
# source_tags: {
|
|
1345
1653
|
# "String" => "String",
|
|
1346
1654
|
# },
|
|
1655
|
+
# router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
|
|
1656
|
+
# router_integration_transit_decryption: {
|
|
1657
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
1658
|
+
# encryption_key_configuration: { # required
|
|
1659
|
+
# secrets_manager: {
|
|
1660
|
+
# secret_arn: "SecretArn", # required
|
|
1661
|
+
# role_arn: "RoleArn", # required
|
|
1662
|
+
# },
|
|
1663
|
+
# automatic: {
|
|
1664
|
+
# },
|
|
1665
|
+
# },
|
|
1666
|
+
# },
|
|
1347
1667
|
# },
|
|
1348
1668
|
# source_failover_config: {
|
|
1349
1669
|
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
|
@@ -1405,6 +1725,18 @@ module Aws::MediaConnect
|
|
|
1405
1725
|
# source_tags: {
|
|
1406
1726
|
# "String" => "String",
|
|
1407
1727
|
# },
|
|
1728
|
+
# router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
|
|
1729
|
+
# router_integration_transit_decryption: {
|
|
1730
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
1731
|
+
# encryption_key_configuration: { # required
|
|
1732
|
+
# secrets_manager: {
|
|
1733
|
+
# secret_arn: "SecretArn", # required
|
|
1734
|
+
# role_arn: "RoleArn", # required
|
|
1735
|
+
# },
|
|
1736
|
+
# automatic: {
|
|
1737
|
+
# },
|
|
1738
|
+
# },
|
|
1739
|
+
# },
|
|
1408
1740
|
# },
|
|
1409
1741
|
# ],
|
|
1410
1742
|
# vpc_interfaces: [
|
|
@@ -1555,6 +1887,11 @@ module Aws::MediaConnect
|
|
|
1555
1887
|
# resp.flow.outputs[0].bridge_ports[0] #=> Integer
|
|
1556
1888
|
# resp.flow.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
|
|
1557
1889
|
# resp.flow.outputs[0].peer_ip_address #=> String
|
|
1890
|
+
# resp.flow.outputs[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
1891
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
1892
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
1893
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
1894
|
+
# resp.flow.outputs[0].connected_router_input_arn #=> String
|
|
1558
1895
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
|
1559
1896
|
# resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
|
|
1560
1897
|
# resp.flow.source.decryption.constant_initialization_vector #=> String
|
|
@@ -1601,6 +1938,11 @@ module Aws::MediaConnect
|
|
|
1601
1938
|
# resp.flow.source.gateway_bridge_source.bridge_arn #=> String
|
|
1602
1939
|
# resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
1603
1940
|
# resp.flow.source.peer_ip_address #=> String
|
|
1941
|
+
# resp.flow.source.router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
1942
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
1943
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
1944
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
1945
|
+
# resp.flow.source.connected_router_output_arn #=> String
|
|
1604
1946
|
# resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
|
1605
1947
|
# resp.flow.source_failover_config.recovery_window #=> Integer
|
|
1606
1948
|
# resp.flow.source_failover_config.source_priority.primary_source #=> String
|
|
@@ -1652,6 +1994,11 @@ module Aws::MediaConnect
|
|
|
1652
1994
|
# resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
|
|
1653
1995
|
# resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
1654
1996
|
# resp.flow.sources[0].peer_ip_address #=> String
|
|
1997
|
+
# resp.flow.sources[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
1998
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
1999
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
2000
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
2001
|
+
# resp.flow.sources[0].connected_router_output_arn #=> String
|
|
1655
2002
|
# resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
|
1656
2003
|
# resp.flow.vpc_interfaces #=> Array
|
|
1657
2004
|
# resp.flow.vpc_interfaces[0].name #=> String
|
|
@@ -1750,6 +2097,578 @@ module Aws::MediaConnect
|
|
|
1750
2097
|
req.send_request(options)
|
|
1751
2098
|
end
|
|
1752
2099
|
|
|
2100
|
+
# Creates a new router input in AWS Elemental MediaConnect.
|
|
2101
|
+
#
|
|
2102
|
+
# @option params [required, String] :name
|
|
2103
|
+
# The name of the router input.
|
|
2104
|
+
#
|
|
2105
|
+
# @option params [required, Types::RouterInputConfiguration] :configuration
|
|
2106
|
+
# The configuration settings for the router input, which can include the
|
|
2107
|
+
# protocol, network interface, and other details.
|
|
2108
|
+
#
|
|
2109
|
+
# @option params [required, Integer] :maximum_bitrate
|
|
2110
|
+
# The maximum bitrate for the router input.
|
|
2111
|
+
#
|
|
2112
|
+
# @option params [required, String] :routing_scope
|
|
2113
|
+
# Specifies whether the router input can be assigned to outputs in
|
|
2114
|
+
# different Regions. REGIONAL (default) - connects only to outputs in
|
|
2115
|
+
# same Region. GLOBAL - connects to outputs in any Region.
|
|
2116
|
+
#
|
|
2117
|
+
# @option params [required, String] :tier
|
|
2118
|
+
# The tier level for the router input.
|
|
2119
|
+
#
|
|
2120
|
+
# @option params [String] :region_name
|
|
2121
|
+
# The AWS Region for the router input. Defaults to the current region if
|
|
2122
|
+
# not specified.
|
|
2123
|
+
#
|
|
2124
|
+
# @option params [String] :availability_zone
|
|
2125
|
+
# The Availability Zone where you want to create the router input. This
|
|
2126
|
+
# must be a valid Availability Zone for the region specified by
|
|
2127
|
+
# `regionName`, or the current region if no `regionName` is provided.
|
|
2128
|
+
#
|
|
2129
|
+
# @option params [Types::RouterInputTransitEncryption] :transit_encryption
|
|
2130
|
+
# The transit encryption settings for the router input.
|
|
2131
|
+
#
|
|
2132
|
+
# @option params [Types::MaintenanceConfiguration] :maintenance_configuration
|
|
2133
|
+
# The maintenance configuration settings for the router input, including
|
|
2134
|
+
# preferred maintenance windows and schedules.
|
|
2135
|
+
#
|
|
2136
|
+
# @option params [Hash<String,String>] :tags
|
|
2137
|
+
# Key-value pairs that can be used to tag and organize this router
|
|
2138
|
+
# input.
|
|
2139
|
+
#
|
|
2140
|
+
# @option params [String] :client_token
|
|
2141
|
+
# A unique identifier for the request to ensure idempotency.
|
|
2142
|
+
#
|
|
2143
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2144
|
+
# not need to pass this option.**
|
|
2145
|
+
#
|
|
2146
|
+
# @return [Types::CreateRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2147
|
+
#
|
|
2148
|
+
# * {Types::CreateRouterInputResponse#router_input #router_input} => Types::RouterInput
|
|
2149
|
+
#
|
|
2150
|
+
# @example Request syntax with placeholder values
|
|
2151
|
+
#
|
|
2152
|
+
# resp = client.create_router_input({
|
|
2153
|
+
# name: "CreateRouterInputRequestNameString", # required
|
|
2154
|
+
# configuration: { # required
|
|
2155
|
+
# standard: {
|
|
2156
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
2157
|
+
# protocol_configuration: { # required
|
|
2158
|
+
# rtp: {
|
|
2159
|
+
# port: 1, # required
|
|
2160
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
2161
|
+
# },
|
|
2162
|
+
# rist: {
|
|
2163
|
+
# port: 1, # required
|
|
2164
|
+
# recovery_latency_milliseconds: 1, # required
|
|
2165
|
+
# },
|
|
2166
|
+
# srt_listener: {
|
|
2167
|
+
# port: 1, # required
|
|
2168
|
+
# minimum_latency_milliseconds: 1, # required
|
|
2169
|
+
# decryption_configuration: {
|
|
2170
|
+
# encryption_key: { # required
|
|
2171
|
+
# secret_arn: "SecretArn", # required
|
|
2172
|
+
# role_arn: "RoleArn", # required
|
|
2173
|
+
# },
|
|
2174
|
+
# },
|
|
2175
|
+
# },
|
|
2176
|
+
# srt_caller: {
|
|
2177
|
+
# source_address: "String", # required
|
|
2178
|
+
# source_port: 1, # required
|
|
2179
|
+
# minimum_latency_milliseconds: 1, # required
|
|
2180
|
+
# stream_id: "String",
|
|
2181
|
+
# decryption_configuration: {
|
|
2182
|
+
# encryption_key: { # required
|
|
2183
|
+
# secret_arn: "SecretArn", # required
|
|
2184
|
+
# role_arn: "RoleArn", # required
|
|
2185
|
+
# },
|
|
2186
|
+
# },
|
|
2187
|
+
# },
|
|
2188
|
+
# },
|
|
2189
|
+
# protocol: "RTP", # accepts RTP, RIST, SRT_CALLER, SRT_LISTENER
|
|
2190
|
+
# },
|
|
2191
|
+
# failover: {
|
|
2192
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
2193
|
+
# protocol_configurations: [ # required
|
|
2194
|
+
# {
|
|
2195
|
+
# rtp: {
|
|
2196
|
+
# port: 1, # required
|
|
2197
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
2198
|
+
# },
|
|
2199
|
+
# rist: {
|
|
2200
|
+
# port: 1, # required
|
|
2201
|
+
# recovery_latency_milliseconds: 1, # required
|
|
2202
|
+
# },
|
|
2203
|
+
# srt_listener: {
|
|
2204
|
+
# port: 1, # required
|
|
2205
|
+
# minimum_latency_milliseconds: 1, # required
|
|
2206
|
+
# decryption_configuration: {
|
|
2207
|
+
# encryption_key: { # required
|
|
2208
|
+
# secret_arn: "SecretArn", # required
|
|
2209
|
+
# role_arn: "RoleArn", # required
|
|
2210
|
+
# },
|
|
2211
|
+
# },
|
|
2212
|
+
# },
|
|
2213
|
+
# srt_caller: {
|
|
2214
|
+
# source_address: "String", # required
|
|
2215
|
+
# source_port: 1, # required
|
|
2216
|
+
# minimum_latency_milliseconds: 1, # required
|
|
2217
|
+
# stream_id: "String",
|
|
2218
|
+
# decryption_configuration: {
|
|
2219
|
+
# encryption_key: { # required
|
|
2220
|
+
# secret_arn: "SecretArn", # required
|
|
2221
|
+
# role_arn: "RoleArn", # required
|
|
2222
|
+
# },
|
|
2223
|
+
# },
|
|
2224
|
+
# },
|
|
2225
|
+
# },
|
|
2226
|
+
# ],
|
|
2227
|
+
# source_priority_mode: "NO_PRIORITY", # required, accepts NO_PRIORITY, PRIMARY_SECONDARY
|
|
2228
|
+
# primary_source_index: 1,
|
|
2229
|
+
# },
|
|
2230
|
+
# merge: {
|
|
2231
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
2232
|
+
# protocol_configurations: [ # required
|
|
2233
|
+
# {
|
|
2234
|
+
# rtp: {
|
|
2235
|
+
# port: 1, # required
|
|
2236
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
2237
|
+
# },
|
|
2238
|
+
# rist: {
|
|
2239
|
+
# port: 1, # required
|
|
2240
|
+
# recovery_latency_milliseconds: 1, # required
|
|
2241
|
+
# },
|
|
2242
|
+
# },
|
|
2243
|
+
# ],
|
|
2244
|
+
# merge_recovery_window_milliseconds: 1, # required
|
|
2245
|
+
# },
|
|
2246
|
+
# media_connect_flow: {
|
|
2247
|
+
# flow_arn: "FlowArn",
|
|
2248
|
+
# flow_output_arn: "FlowOutputArn",
|
|
2249
|
+
# source_transit_decryption: { # required
|
|
2250
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
2251
|
+
# encryption_key_configuration: { # required
|
|
2252
|
+
# secrets_manager: {
|
|
2253
|
+
# secret_arn: "SecretArn", # required
|
|
2254
|
+
# role_arn: "RoleArn", # required
|
|
2255
|
+
# },
|
|
2256
|
+
# automatic: {
|
|
2257
|
+
# },
|
|
2258
|
+
# },
|
|
2259
|
+
# },
|
|
2260
|
+
# },
|
|
2261
|
+
# },
|
|
2262
|
+
# maximum_bitrate: 1, # required
|
|
2263
|
+
# routing_scope: "REGIONAL", # required, accepts REGIONAL, GLOBAL
|
|
2264
|
+
# tier: "INPUT_100", # required, accepts INPUT_100, INPUT_50, INPUT_20
|
|
2265
|
+
# region_name: "String",
|
|
2266
|
+
# availability_zone: "String",
|
|
2267
|
+
# transit_encryption: {
|
|
2268
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
2269
|
+
# encryption_key_configuration: { # required
|
|
2270
|
+
# secrets_manager: {
|
|
2271
|
+
# secret_arn: "SecretArn", # required
|
|
2272
|
+
# role_arn: "RoleArn", # required
|
|
2273
|
+
# },
|
|
2274
|
+
# automatic: {
|
|
2275
|
+
# },
|
|
2276
|
+
# },
|
|
2277
|
+
# },
|
|
2278
|
+
# maintenance_configuration: {
|
|
2279
|
+
# preferred_day_time: {
|
|
2280
|
+
# day: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
|
2281
|
+
# time: "String", # required
|
|
2282
|
+
# },
|
|
2283
|
+
# default: {
|
|
2284
|
+
# },
|
|
2285
|
+
# },
|
|
2286
|
+
# tags: {
|
|
2287
|
+
# "String" => "String",
|
|
2288
|
+
# },
|
|
2289
|
+
# client_token: "String",
|
|
2290
|
+
# })
|
|
2291
|
+
#
|
|
2292
|
+
# @example Response structure
|
|
2293
|
+
#
|
|
2294
|
+
# resp.router_input.name #=> String
|
|
2295
|
+
# resp.router_input.arn #=> String
|
|
2296
|
+
# resp.router_input.id #=> String
|
|
2297
|
+
# resp.router_input.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
2298
|
+
# resp.router_input.input_type #=> String, one of "STANDARD", "FAILOVER", "MERGE", "MEDIACONNECT_FLOW"
|
|
2299
|
+
# resp.router_input.configuration.standard.network_interface_arn #=> String
|
|
2300
|
+
# resp.router_input.configuration.standard.protocol_configuration.rtp.port #=> Integer
|
|
2301
|
+
# resp.router_input.configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
2302
|
+
# resp.router_input.configuration.standard.protocol_configuration.rist.port #=> Integer
|
|
2303
|
+
# resp.router_input.configuration.standard.protocol_configuration.rist.recovery_latency_milliseconds #=> Integer
|
|
2304
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
2305
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
2306
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
2307
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
2308
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.source_address #=> String
|
|
2309
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.source_port #=> Integer
|
|
2310
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
2311
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
2312
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
2313
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
2314
|
+
# resp.router_input.configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
2315
|
+
# resp.router_input.configuration.failover.network_interface_arn #=> String
|
|
2316
|
+
# resp.router_input.configuration.failover.protocol_configurations #=> Array
|
|
2317
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rtp.port #=> Integer
|
|
2318
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
2319
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rist.port #=> Integer
|
|
2320
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
2321
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.port #=> Integer
|
|
2322
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.minimum_latency_milliseconds #=> Integer
|
|
2323
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
2324
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
2325
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.source_address #=> String
|
|
2326
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.source_port #=> Integer
|
|
2327
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.minimum_latency_milliseconds #=> Integer
|
|
2328
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.stream_id #=> String
|
|
2329
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
2330
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
2331
|
+
# resp.router_input.configuration.failover.source_priority_mode #=> String, one of "NO_PRIORITY", "PRIMARY_SECONDARY"
|
|
2332
|
+
# resp.router_input.configuration.failover.primary_source_index #=> Integer
|
|
2333
|
+
# resp.router_input.configuration.merge.network_interface_arn #=> String
|
|
2334
|
+
# resp.router_input.configuration.merge.protocol_configurations #=> Array
|
|
2335
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rtp.port #=> Integer
|
|
2336
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
2337
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rist.port #=> Integer
|
|
2338
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
2339
|
+
# resp.router_input.configuration.merge.merge_recovery_window_milliseconds #=> Integer
|
|
2340
|
+
# resp.router_input.configuration.media_connect_flow.flow_arn #=> String
|
|
2341
|
+
# resp.router_input.configuration.media_connect_flow.flow_output_arn #=> String
|
|
2342
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
2343
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
2344
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
2345
|
+
# resp.router_input.routed_outputs #=> Integer
|
|
2346
|
+
# resp.router_input.maximum_routed_outputs #=> Integer
|
|
2347
|
+
# resp.router_input.region_name #=> String
|
|
2348
|
+
# resp.router_input.availability_zone #=> String
|
|
2349
|
+
# resp.router_input.maximum_bitrate #=> Integer
|
|
2350
|
+
# resp.router_input.tier #=> String, one of "INPUT_100", "INPUT_50", "INPUT_20"
|
|
2351
|
+
# resp.router_input.routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
2352
|
+
# resp.router_input.created_at #=> Time
|
|
2353
|
+
# resp.router_input.updated_at #=> Time
|
|
2354
|
+
# resp.router_input.messages #=> Array
|
|
2355
|
+
# resp.router_input.messages[0].code #=> String
|
|
2356
|
+
# resp.router_input.messages[0].message #=> String
|
|
2357
|
+
# resp.router_input.transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
2358
|
+
# resp.router_input.transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
2359
|
+
# resp.router_input.transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
2360
|
+
# resp.router_input.tags #=> Hash
|
|
2361
|
+
# resp.router_input.tags["String"] #=> String
|
|
2362
|
+
# resp.router_input.stream_details.standard.source_ip_address #=> String
|
|
2363
|
+
# resp.router_input.stream_details.failover.source_index_zero_stream_details.source_index #=> Integer
|
|
2364
|
+
# resp.router_input.stream_details.failover.source_index_zero_stream_details.source_ip_address #=> String
|
|
2365
|
+
# resp.router_input.stream_details.failover.source_index_one_stream_details.source_index #=> Integer
|
|
2366
|
+
# resp.router_input.stream_details.failover.source_index_one_stream_details.source_ip_address #=> String
|
|
2367
|
+
# resp.router_input.stream_details.merge.source_index_zero_stream_details.source_index #=> Integer
|
|
2368
|
+
# resp.router_input.stream_details.merge.source_index_zero_stream_details.source_ip_address #=> String
|
|
2369
|
+
# resp.router_input.stream_details.merge.source_index_one_stream_details.source_index #=> Integer
|
|
2370
|
+
# resp.router_input.stream_details.merge.source_index_one_stream_details.source_ip_address #=> String
|
|
2371
|
+
# resp.router_input.ip_address #=> String
|
|
2372
|
+
# resp.router_input.maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
2373
|
+
# resp.router_input.maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
2374
|
+
# resp.router_input.maintenance_configuration.preferred_day_time.time #=> String
|
|
2375
|
+
# resp.router_input.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
2376
|
+
# resp.router_input.maintenance_schedule.window.start #=> Time
|
|
2377
|
+
# resp.router_input.maintenance_schedule.window.end #=> Time
|
|
2378
|
+
# resp.router_input.maintenance_schedule.window.scheduled_time #=> Time
|
|
2379
|
+
#
|
|
2380
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateRouterInput AWS API Documentation
|
|
2381
|
+
#
|
|
2382
|
+
# @overload create_router_input(params = {})
|
|
2383
|
+
# @param [Hash] params ({})
|
|
2384
|
+
def create_router_input(params = {}, options = {})
|
|
2385
|
+
req = build_request(:create_router_input, params)
|
|
2386
|
+
req.send_request(options)
|
|
2387
|
+
end
|
|
2388
|
+
|
|
2389
|
+
# Creates a new router network interface in AWS Elemental MediaConnect.
|
|
2390
|
+
#
|
|
2391
|
+
# @option params [required, String] :name
|
|
2392
|
+
# The name of the router network interface.
|
|
2393
|
+
#
|
|
2394
|
+
# @option params [required, Types::RouterNetworkInterfaceConfiguration] :configuration
|
|
2395
|
+
# The configuration settings for the router network interface.
|
|
2396
|
+
#
|
|
2397
|
+
# @option params [String] :region_name
|
|
2398
|
+
# The AWS Region for the router network interface. Defaults to the
|
|
2399
|
+
# current region if not specified.
|
|
2400
|
+
#
|
|
2401
|
+
# @option params [Hash<String,String>] :tags
|
|
2402
|
+
# Key-value pairs that can be used to tag and organize this router
|
|
2403
|
+
# network interface.
|
|
2404
|
+
#
|
|
2405
|
+
# @option params [String] :client_token
|
|
2406
|
+
# A unique identifier for the request to ensure idempotency.
|
|
2407
|
+
#
|
|
2408
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2409
|
+
# not need to pass this option.**
|
|
2410
|
+
#
|
|
2411
|
+
# @return [Types::CreateRouterNetworkInterfaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2412
|
+
#
|
|
2413
|
+
# * {Types::CreateRouterNetworkInterfaceResponse#router_network_interface #router_network_interface} => Types::RouterNetworkInterface
|
|
2414
|
+
#
|
|
2415
|
+
# @example Request syntax with placeholder values
|
|
2416
|
+
#
|
|
2417
|
+
# resp = client.create_router_network_interface({
|
|
2418
|
+
# name: "CreateRouterNetworkInterfaceRequestNameString", # required
|
|
2419
|
+
# configuration: { # required
|
|
2420
|
+
# public: {
|
|
2421
|
+
# allow_rules: [ # required
|
|
2422
|
+
# {
|
|
2423
|
+
# cidr: "String", # required
|
|
2424
|
+
# },
|
|
2425
|
+
# ],
|
|
2426
|
+
# },
|
|
2427
|
+
# vpc: {
|
|
2428
|
+
# security_group_ids: ["String"], # required
|
|
2429
|
+
# subnet_id: "String", # required
|
|
2430
|
+
# },
|
|
2431
|
+
# },
|
|
2432
|
+
# region_name: "String",
|
|
2433
|
+
# tags: {
|
|
2434
|
+
# "String" => "String",
|
|
2435
|
+
# },
|
|
2436
|
+
# client_token: "String",
|
|
2437
|
+
# })
|
|
2438
|
+
#
|
|
2439
|
+
# @example Response structure
|
|
2440
|
+
#
|
|
2441
|
+
# resp.router_network_interface.name #=> String
|
|
2442
|
+
# resp.router_network_interface.arn #=> String
|
|
2443
|
+
# resp.router_network_interface.id #=> String
|
|
2444
|
+
# resp.router_network_interface.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "ERROR", "RECOVERING"
|
|
2445
|
+
# resp.router_network_interface.network_interface_type #=> String, one of "PUBLIC", "VPC"
|
|
2446
|
+
# resp.router_network_interface.configuration.public.allow_rules #=> Array
|
|
2447
|
+
# resp.router_network_interface.configuration.public.allow_rules[0].cidr #=> String
|
|
2448
|
+
# resp.router_network_interface.configuration.vpc.security_group_ids #=> Array
|
|
2449
|
+
# resp.router_network_interface.configuration.vpc.security_group_ids[0] #=> String
|
|
2450
|
+
# resp.router_network_interface.configuration.vpc.subnet_id #=> String
|
|
2451
|
+
# resp.router_network_interface.associated_output_count #=> Integer
|
|
2452
|
+
# resp.router_network_interface.associated_input_count #=> Integer
|
|
2453
|
+
# resp.router_network_interface.region_name #=> String
|
|
2454
|
+
# resp.router_network_interface.created_at #=> Time
|
|
2455
|
+
# resp.router_network_interface.updated_at #=> Time
|
|
2456
|
+
# resp.router_network_interface.tags #=> Hash
|
|
2457
|
+
# resp.router_network_interface.tags["String"] #=> String
|
|
2458
|
+
#
|
|
2459
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateRouterNetworkInterface AWS API Documentation
|
|
2460
|
+
#
|
|
2461
|
+
# @overload create_router_network_interface(params = {})
|
|
2462
|
+
# @param [Hash] params ({})
|
|
2463
|
+
def create_router_network_interface(params = {}, options = {})
|
|
2464
|
+
req = build_request(:create_router_network_interface, params)
|
|
2465
|
+
req.send_request(options)
|
|
2466
|
+
end
|
|
2467
|
+
|
|
2468
|
+
# Creates a new router output in AWS Elemental MediaConnect.
|
|
2469
|
+
#
|
|
2470
|
+
# @option params [required, String] :name
|
|
2471
|
+
# The name of the router output.
|
|
2472
|
+
#
|
|
2473
|
+
# @option params [required, Types::RouterOutputConfiguration] :configuration
|
|
2474
|
+
# The configuration settings for the router output.
|
|
2475
|
+
#
|
|
2476
|
+
# @option params [required, Integer] :maximum_bitrate
|
|
2477
|
+
# The maximum bitrate for the router output.
|
|
2478
|
+
#
|
|
2479
|
+
# @option params [required, String] :routing_scope
|
|
2480
|
+
# Specifies whether the router output can take inputs that are in
|
|
2481
|
+
# different Regions. REGIONAL (default) - can only take inputs from same
|
|
2482
|
+
# Region. GLOBAL - can take inputs from any Region.
|
|
2483
|
+
#
|
|
2484
|
+
# @option params [required, String] :tier
|
|
2485
|
+
# The tier level for the router output.
|
|
2486
|
+
#
|
|
2487
|
+
# @option params [String] :region_name
|
|
2488
|
+
# The AWS Region for the router output. Defaults to the current region
|
|
2489
|
+
# if not specified.
|
|
2490
|
+
#
|
|
2491
|
+
# @option params [String] :availability_zone
|
|
2492
|
+
# The Availability Zone where you want to create the router output. This
|
|
2493
|
+
# must be a valid Availability Zone for the region specified by
|
|
2494
|
+
# `regionName`, or the current region if no `regionName` is provided.
|
|
2495
|
+
#
|
|
2496
|
+
# @option params [Types::MaintenanceConfiguration] :maintenance_configuration
|
|
2497
|
+
# The maintenance configuration settings for the router output,
|
|
2498
|
+
# including preferred maintenance windows and schedules.
|
|
2499
|
+
#
|
|
2500
|
+
# @option params [Hash<String,String>] :tags
|
|
2501
|
+
# Key-value pairs that can be used to tag this router output.
|
|
2502
|
+
#
|
|
2503
|
+
# @option params [String] :client_token
|
|
2504
|
+
# A unique identifier for the request to ensure idempotency.
|
|
2505
|
+
#
|
|
2506
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2507
|
+
# not need to pass this option.**
|
|
2508
|
+
#
|
|
2509
|
+
# @return [Types::CreateRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2510
|
+
#
|
|
2511
|
+
# * {Types::CreateRouterOutputResponse#router_output #router_output} => Types::RouterOutput
|
|
2512
|
+
#
|
|
2513
|
+
# @example Request syntax with placeholder values
|
|
2514
|
+
#
|
|
2515
|
+
# resp = client.create_router_output({
|
|
2516
|
+
# name: "CreateRouterOutputRequestNameString", # required
|
|
2517
|
+
# configuration: { # required
|
|
2518
|
+
# standard: {
|
|
2519
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
2520
|
+
# protocol_configuration: { # required
|
|
2521
|
+
# rtp: {
|
|
2522
|
+
# destination_address: "String", # required
|
|
2523
|
+
# destination_port: 1, # required
|
|
2524
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
2525
|
+
# },
|
|
2526
|
+
# rist: {
|
|
2527
|
+
# destination_address: "String", # required
|
|
2528
|
+
# destination_port: 1, # required
|
|
2529
|
+
# },
|
|
2530
|
+
# srt_listener: {
|
|
2531
|
+
# port: 1, # required
|
|
2532
|
+
# minimum_latency_milliseconds: 1, # required
|
|
2533
|
+
# encryption_configuration: {
|
|
2534
|
+
# encryption_key: { # required
|
|
2535
|
+
# secret_arn: "SecretArn", # required
|
|
2536
|
+
# role_arn: "RoleArn", # required
|
|
2537
|
+
# },
|
|
2538
|
+
# },
|
|
2539
|
+
# },
|
|
2540
|
+
# srt_caller: {
|
|
2541
|
+
# destination_address: "String", # required
|
|
2542
|
+
# destination_port: 1, # required
|
|
2543
|
+
# minimum_latency_milliseconds: 1, # required
|
|
2544
|
+
# stream_id: "String",
|
|
2545
|
+
# encryption_configuration: {
|
|
2546
|
+
# encryption_key: { # required
|
|
2547
|
+
# secret_arn: "SecretArn", # required
|
|
2548
|
+
# role_arn: "RoleArn", # required
|
|
2549
|
+
# },
|
|
2550
|
+
# },
|
|
2551
|
+
# },
|
|
2552
|
+
# },
|
|
2553
|
+
# protocol: "RTP", # accepts RTP, RIST, SRT_CALLER, SRT_LISTENER
|
|
2554
|
+
# },
|
|
2555
|
+
# media_connect_flow: {
|
|
2556
|
+
# flow_arn: "FlowArn",
|
|
2557
|
+
# flow_source_arn: "FlowSourceArn",
|
|
2558
|
+
# destination_transit_encryption: { # required
|
|
2559
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
2560
|
+
# encryption_key_configuration: { # required
|
|
2561
|
+
# secrets_manager: {
|
|
2562
|
+
# secret_arn: "SecretArn", # required
|
|
2563
|
+
# role_arn: "RoleArn", # required
|
|
2564
|
+
# },
|
|
2565
|
+
# automatic: {
|
|
2566
|
+
# },
|
|
2567
|
+
# },
|
|
2568
|
+
# },
|
|
2569
|
+
# },
|
|
2570
|
+
# media_live_input: {
|
|
2571
|
+
# media_live_input_arn: "MediaLiveInputArn",
|
|
2572
|
+
# media_live_pipeline_id: "PIPELINE_0", # accepts PIPELINE_0, PIPELINE_1
|
|
2573
|
+
# destination_transit_encryption: { # required
|
|
2574
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
2575
|
+
# encryption_key_configuration: { # required
|
|
2576
|
+
# secrets_manager: {
|
|
2577
|
+
# secret_arn: "SecretArn", # required
|
|
2578
|
+
# role_arn: "RoleArn", # required
|
|
2579
|
+
# },
|
|
2580
|
+
# automatic: {
|
|
2581
|
+
# },
|
|
2582
|
+
# },
|
|
2583
|
+
# },
|
|
2584
|
+
# },
|
|
2585
|
+
# },
|
|
2586
|
+
# maximum_bitrate: 1, # required
|
|
2587
|
+
# routing_scope: "REGIONAL", # required, accepts REGIONAL, GLOBAL
|
|
2588
|
+
# tier: "OUTPUT_100", # required, accepts OUTPUT_100, OUTPUT_50, OUTPUT_20
|
|
2589
|
+
# region_name: "String",
|
|
2590
|
+
# availability_zone: "String",
|
|
2591
|
+
# maintenance_configuration: {
|
|
2592
|
+
# preferred_day_time: {
|
|
2593
|
+
# day: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
|
2594
|
+
# time: "String", # required
|
|
2595
|
+
# },
|
|
2596
|
+
# default: {
|
|
2597
|
+
# },
|
|
2598
|
+
# },
|
|
2599
|
+
# tags: {
|
|
2600
|
+
# "String" => "String",
|
|
2601
|
+
# },
|
|
2602
|
+
# client_token: "String",
|
|
2603
|
+
# })
|
|
2604
|
+
#
|
|
2605
|
+
# @example Response structure
|
|
2606
|
+
#
|
|
2607
|
+
# resp.router_output.name #=> String
|
|
2608
|
+
# resp.router_output.arn #=> String
|
|
2609
|
+
# resp.router_output.id #=> String
|
|
2610
|
+
# resp.router_output.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
2611
|
+
# resp.router_output.output_type #=> String, one of "STANDARD", "MEDIACONNECT_FLOW", "MEDIALIVE_INPUT"
|
|
2612
|
+
# resp.router_output.configuration.standard.network_interface_arn #=> String
|
|
2613
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.destination_address #=> String
|
|
2614
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.destination_port #=> Integer
|
|
2615
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
2616
|
+
# resp.router_output.configuration.standard.protocol_configuration.rist.destination_address #=> String
|
|
2617
|
+
# resp.router_output.configuration.standard.protocol_configuration.rist.destination_port #=> Integer
|
|
2618
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
2619
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
2620
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.secret_arn #=> String
|
|
2621
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.role_arn #=> String
|
|
2622
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.destination_address #=> String
|
|
2623
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.destination_port #=> Integer
|
|
2624
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
2625
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
2626
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.secret_arn #=> String
|
|
2627
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.role_arn #=> String
|
|
2628
|
+
# resp.router_output.configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
2629
|
+
# resp.router_output.configuration.media_connect_flow.flow_arn #=> String
|
|
2630
|
+
# resp.router_output.configuration.media_connect_flow.flow_source_arn #=> String
|
|
2631
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
2632
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
2633
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
2634
|
+
# resp.router_output.configuration.media_live_input.media_live_input_arn #=> String
|
|
2635
|
+
# resp.router_output.configuration.media_live_input.media_live_pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
|
2636
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
2637
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
2638
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
2639
|
+
# resp.router_output.routed_state #=> String, one of "ROUTED", "ROUTING", "UNROUTED"
|
|
2640
|
+
# resp.router_output.region_name #=> String
|
|
2641
|
+
# resp.router_output.availability_zone #=> String
|
|
2642
|
+
# resp.router_output.maximum_bitrate #=> Integer
|
|
2643
|
+
# resp.router_output.routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
2644
|
+
# resp.router_output.tier #=> String, one of "OUTPUT_100", "OUTPUT_50", "OUTPUT_20"
|
|
2645
|
+
# resp.router_output.created_at #=> Time
|
|
2646
|
+
# resp.router_output.updated_at #=> Time
|
|
2647
|
+
# resp.router_output.messages #=> Array
|
|
2648
|
+
# resp.router_output.messages[0].code #=> String
|
|
2649
|
+
# resp.router_output.messages[0].message #=> String
|
|
2650
|
+
# resp.router_output.tags #=> Hash
|
|
2651
|
+
# resp.router_output.tags["String"] #=> String
|
|
2652
|
+
# resp.router_output.stream_details.standard.destination_ip_address #=> String
|
|
2653
|
+
# resp.router_output.ip_address #=> String
|
|
2654
|
+
# resp.router_output.routed_input_arn #=> String
|
|
2655
|
+
# resp.router_output.maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
2656
|
+
# resp.router_output.maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
2657
|
+
# resp.router_output.maintenance_configuration.preferred_day_time.time #=> String
|
|
2658
|
+
# resp.router_output.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
2659
|
+
# resp.router_output.maintenance_schedule.window.start #=> Time
|
|
2660
|
+
# resp.router_output.maintenance_schedule.window.end #=> Time
|
|
2661
|
+
# resp.router_output.maintenance_schedule.window.scheduled_time #=> Time
|
|
2662
|
+
#
|
|
2663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateRouterOutput AWS API Documentation
|
|
2664
|
+
#
|
|
2665
|
+
# @overload create_router_output(params = {})
|
|
2666
|
+
# @param [Hash] params ({})
|
|
2667
|
+
def create_router_output(params = {}, options = {})
|
|
2668
|
+
req = build_request(:create_router_output, params)
|
|
2669
|
+
req.send_request(options)
|
|
2670
|
+
end
|
|
2671
|
+
|
|
1753
2672
|
# Deletes a bridge. Before you can delete a bridge, you must stop the
|
|
1754
2673
|
# bridge.
|
|
1755
2674
|
#
|
|
@@ -1838,69 +2757,168 @@ module Aws::MediaConnect
|
|
|
1838
2757
|
req.send_request(options)
|
|
1839
2758
|
end
|
|
1840
2759
|
|
|
1841
|
-
#
|
|
1842
|
-
# bridges running on the instance must be stopped. If you want to
|
|
1843
|
-
# deregister an instance without stopping the bridges, you must use the
|
|
1844
|
-
# --force option.
|
|
1845
|
-
#
|
|
1846
|
-
# @option params [Boolean] :force
|
|
1847
|
-
# Force the deregistration of an instance. Force will deregister an
|
|
1848
|
-
# instance, even if there are bridges running on it.
|
|
2760
|
+
# Deletes a router input from AWS Elemental MediaConnect.
|
|
1849
2761
|
#
|
|
1850
|
-
# @option params [required, String] :
|
|
1851
|
-
# The Amazon Resource Name (ARN) of the
|
|
1852
|
-
#
|
|
2762
|
+
# @option params [required, String] :arn
|
|
2763
|
+
# The Amazon Resource Name (ARN) of the router input that you want to
|
|
2764
|
+
# delete.
|
|
1853
2765
|
#
|
|
1854
|
-
# @return [Types::
|
|
2766
|
+
# @return [Types::DeleteRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1855
2767
|
#
|
|
1856
|
-
# * {Types::
|
|
1857
|
-
# * {Types::
|
|
2768
|
+
# * {Types::DeleteRouterInputResponse#arn #arn} => String
|
|
2769
|
+
# * {Types::DeleteRouterInputResponse#name #name} => String
|
|
2770
|
+
# * {Types::DeleteRouterInputResponse#state #state} => String
|
|
1858
2771
|
#
|
|
1859
2772
|
# @example Request syntax with placeholder values
|
|
1860
2773
|
#
|
|
1861
|
-
# resp = client.
|
|
1862
|
-
#
|
|
1863
|
-
# gateway_instance_arn: "DeregisterGatewayInstanceRequestGatewayInstanceArnString", # required
|
|
2774
|
+
# resp = client.delete_router_input({
|
|
2775
|
+
# arn: "RouterInputArn", # required
|
|
1864
2776
|
# })
|
|
1865
2777
|
#
|
|
1866
2778
|
# @example Response structure
|
|
1867
2779
|
#
|
|
1868
|
-
# resp.
|
|
1869
|
-
# resp.
|
|
2780
|
+
# resp.arn #=> String
|
|
2781
|
+
# resp.name #=> String
|
|
2782
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
1870
2783
|
#
|
|
1871
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/
|
|
2784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteRouterInput AWS API Documentation
|
|
1872
2785
|
#
|
|
1873
|
-
# @overload
|
|
2786
|
+
# @overload delete_router_input(params = {})
|
|
1874
2787
|
# @param [Hash] params ({})
|
|
1875
|
-
def
|
|
1876
|
-
req = build_request(:
|
|
2788
|
+
def delete_router_input(params = {}, options = {})
|
|
2789
|
+
req = build_request(:delete_router_input, params)
|
|
1877
2790
|
req.send_request(options)
|
|
1878
2791
|
end
|
|
1879
2792
|
|
|
1880
|
-
#
|
|
2793
|
+
# Deletes a router network interface from AWS Elemental MediaConnect.
|
|
1881
2794
|
#
|
|
1882
|
-
# @option params [required, String] :
|
|
1883
|
-
# The Amazon Resource Name (ARN) of the
|
|
1884
|
-
#
|
|
2795
|
+
# @option params [required, String] :arn
|
|
2796
|
+
# The Amazon Resource Name (ARN) of the router network interface that
|
|
2797
|
+
# you want to delete.
|
|
1885
2798
|
#
|
|
1886
|
-
# @return [Types::
|
|
2799
|
+
# @return [Types::DeleteRouterNetworkInterfaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1887
2800
|
#
|
|
1888
|
-
# * {Types::
|
|
2801
|
+
# * {Types::DeleteRouterNetworkInterfaceResponse#arn #arn} => String
|
|
2802
|
+
# * {Types::DeleteRouterNetworkInterfaceResponse#name #name} => String
|
|
2803
|
+
# * {Types::DeleteRouterNetworkInterfaceResponse#state #state} => String
|
|
1889
2804
|
#
|
|
1890
2805
|
# @example Request syntax with placeholder values
|
|
1891
2806
|
#
|
|
1892
|
-
# resp = client.
|
|
1893
|
-
#
|
|
2807
|
+
# resp = client.delete_router_network_interface({
|
|
2808
|
+
# arn: "RouterNetworkInterfaceArn", # required
|
|
1894
2809
|
# })
|
|
1895
2810
|
#
|
|
1896
2811
|
# @example Response structure
|
|
1897
2812
|
#
|
|
1898
|
-
# resp.
|
|
1899
|
-
# resp.
|
|
1900
|
-
# resp.
|
|
1901
|
-
#
|
|
1902
|
-
#
|
|
1903
|
-
#
|
|
2813
|
+
# resp.arn #=> String
|
|
2814
|
+
# resp.name #=> String
|
|
2815
|
+
# resp.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "ERROR", "RECOVERING"
|
|
2816
|
+
#
|
|
2817
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteRouterNetworkInterface AWS API Documentation
|
|
2818
|
+
#
|
|
2819
|
+
# @overload delete_router_network_interface(params = {})
|
|
2820
|
+
# @param [Hash] params ({})
|
|
2821
|
+
def delete_router_network_interface(params = {}, options = {})
|
|
2822
|
+
req = build_request(:delete_router_network_interface, params)
|
|
2823
|
+
req.send_request(options)
|
|
2824
|
+
end
|
|
2825
|
+
|
|
2826
|
+
# Deletes a router output from AWS Elemental MediaConnect.
|
|
2827
|
+
#
|
|
2828
|
+
# @option params [required, String] :arn
|
|
2829
|
+
# The Amazon Resource Name (ARN) of the router output that you want to
|
|
2830
|
+
# delete.
|
|
2831
|
+
#
|
|
2832
|
+
# @return [Types::DeleteRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2833
|
+
#
|
|
2834
|
+
# * {Types::DeleteRouterOutputResponse#arn #arn} => String
|
|
2835
|
+
# * {Types::DeleteRouterOutputResponse#name #name} => String
|
|
2836
|
+
# * {Types::DeleteRouterOutputResponse#state #state} => String
|
|
2837
|
+
#
|
|
2838
|
+
# @example Request syntax with placeholder values
|
|
2839
|
+
#
|
|
2840
|
+
# resp = client.delete_router_output({
|
|
2841
|
+
# arn: "RouterOutputArn", # required
|
|
2842
|
+
# })
|
|
2843
|
+
#
|
|
2844
|
+
# @example Response structure
|
|
2845
|
+
#
|
|
2846
|
+
# resp.arn #=> String
|
|
2847
|
+
# resp.name #=> String
|
|
2848
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
2849
|
+
#
|
|
2850
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeleteRouterOutput AWS API Documentation
|
|
2851
|
+
#
|
|
2852
|
+
# @overload delete_router_output(params = {})
|
|
2853
|
+
# @param [Hash] params ({})
|
|
2854
|
+
def delete_router_output(params = {}, options = {})
|
|
2855
|
+
req = build_request(:delete_router_output, params)
|
|
2856
|
+
req.send_request(options)
|
|
2857
|
+
end
|
|
2858
|
+
|
|
2859
|
+
# Deregisters an instance. Before you deregister an instance, all
|
|
2860
|
+
# bridges running on the instance must be stopped. If you want to
|
|
2861
|
+
# deregister an instance without stopping the bridges, you must use the
|
|
2862
|
+
# --force option.
|
|
2863
|
+
#
|
|
2864
|
+
# @option params [Boolean] :force
|
|
2865
|
+
# Force the deregistration of an instance. Force will deregister an
|
|
2866
|
+
# instance, even if there are bridges running on it.
|
|
2867
|
+
#
|
|
2868
|
+
# @option params [required, String] :gateway_instance_arn
|
|
2869
|
+
# The Amazon Resource Name (ARN) of the gateway that contains the
|
|
2870
|
+
# instance that you want to deregister.
|
|
2871
|
+
#
|
|
2872
|
+
# @return [Types::DeregisterGatewayInstanceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2873
|
+
#
|
|
2874
|
+
# * {Types::DeregisterGatewayInstanceResponse#gateway_instance_arn #gateway_instance_arn} => String
|
|
2875
|
+
# * {Types::DeregisterGatewayInstanceResponse#instance_state #instance_state} => String
|
|
2876
|
+
#
|
|
2877
|
+
# @example Request syntax with placeholder values
|
|
2878
|
+
#
|
|
2879
|
+
# resp = client.deregister_gateway_instance({
|
|
2880
|
+
# force: false,
|
|
2881
|
+
# gateway_instance_arn: "DeregisterGatewayInstanceRequestGatewayInstanceArnString", # required
|
|
2882
|
+
# })
|
|
2883
|
+
#
|
|
2884
|
+
# @example Response structure
|
|
2885
|
+
#
|
|
2886
|
+
# resp.gateway_instance_arn #=> String
|
|
2887
|
+
# resp.instance_state #=> String, one of "REGISTERING", "ACTIVE", "DEREGISTERING", "DEREGISTERED", "REGISTRATION_ERROR", "DEREGISTRATION_ERROR"
|
|
2888
|
+
#
|
|
2889
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/DeregisterGatewayInstance AWS API Documentation
|
|
2890
|
+
#
|
|
2891
|
+
# @overload deregister_gateway_instance(params = {})
|
|
2892
|
+
# @param [Hash] params ({})
|
|
2893
|
+
def deregister_gateway_instance(params = {}, options = {})
|
|
2894
|
+
req = build_request(:deregister_gateway_instance, params)
|
|
2895
|
+
req.send_request(options)
|
|
2896
|
+
end
|
|
2897
|
+
|
|
2898
|
+
# Displays the details of a bridge.
|
|
2899
|
+
#
|
|
2900
|
+
# @option params [required, String] :bridge_arn
|
|
2901
|
+
# The Amazon Resource Name (ARN) of the bridge that you want to
|
|
2902
|
+
# describe.
|
|
2903
|
+
#
|
|
2904
|
+
# @return [Types::DescribeBridgeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2905
|
+
#
|
|
2906
|
+
# * {Types::DescribeBridgeResponse#bridge #bridge} => Types::Bridge
|
|
2907
|
+
#
|
|
2908
|
+
# @example Request syntax with placeholder values
|
|
2909
|
+
#
|
|
2910
|
+
# resp = client.describe_bridge({
|
|
2911
|
+
# bridge_arn: "DescribeBridgeRequestBridgeArnString", # required
|
|
2912
|
+
# })
|
|
2913
|
+
#
|
|
2914
|
+
# @example Response structure
|
|
2915
|
+
#
|
|
2916
|
+
# resp.bridge.bridge_arn #=> String
|
|
2917
|
+
# resp.bridge.bridge_messages #=> Array
|
|
2918
|
+
# resp.bridge.bridge_messages[0].code #=> String
|
|
2919
|
+
# resp.bridge.bridge_messages[0].message #=> String
|
|
2920
|
+
# resp.bridge.bridge_messages[0].resource_name #=> String
|
|
2921
|
+
# resp.bridge.bridge_state #=> String, one of "CREATING", "STANDBY", "STARTING", "DEPLOYING", "ACTIVE", "STOPPING", "DELETING", "DELETED", "START_FAILED", "START_PENDING", "STOP_FAILED", "UPDATING"
|
|
1904
2922
|
# resp.bridge.egress_gateway_bridge.instance_id #=> String
|
|
1905
2923
|
# resp.bridge.egress_gateway_bridge.max_bitrate #=> Integer
|
|
1906
2924
|
# resp.bridge.ingress_gateway_bridge.instance_id #=> String
|
|
@@ -2052,6 +3070,11 @@ module Aws::MediaConnect
|
|
|
2052
3070
|
# resp.flow.outputs[0].bridge_ports[0] #=> Integer
|
|
2053
3071
|
# resp.flow.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
|
|
2054
3072
|
# resp.flow.outputs[0].peer_ip_address #=> String
|
|
3073
|
+
# resp.flow.outputs[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
3074
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
3075
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
3076
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
3077
|
+
# resp.flow.outputs[0].connected_router_input_arn #=> String
|
|
2055
3078
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
|
2056
3079
|
# resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
|
|
2057
3080
|
# resp.flow.source.decryption.constant_initialization_vector #=> String
|
|
@@ -2098,6 +3121,11 @@ module Aws::MediaConnect
|
|
|
2098
3121
|
# resp.flow.source.gateway_bridge_source.bridge_arn #=> String
|
|
2099
3122
|
# resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
2100
3123
|
# resp.flow.source.peer_ip_address #=> String
|
|
3124
|
+
# resp.flow.source.router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
3125
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
3126
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
3127
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
3128
|
+
# resp.flow.source.connected_router_output_arn #=> String
|
|
2101
3129
|
# resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
|
2102
3130
|
# resp.flow.source_failover_config.recovery_window #=> Integer
|
|
2103
3131
|
# resp.flow.source_failover_config.source_priority.primary_source #=> String
|
|
@@ -2149,6 +3177,11 @@ module Aws::MediaConnect
|
|
|
2149
3177
|
# resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
|
|
2150
3178
|
# resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
2151
3179
|
# resp.flow.sources[0].peer_ip_address #=> String
|
|
3180
|
+
# resp.flow.sources[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
3181
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
3182
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
3183
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
3184
|
+
# resp.flow.sources[0].connected_router_output_arn #=> String
|
|
2152
3185
|
# resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
|
2153
3186
|
# resp.flow.vpc_interfaces #=> Array
|
|
2154
3187
|
# resp.flow.vpc_interfaces[0].name #=> String
|
|
@@ -2450,6 +3483,356 @@ module Aws::MediaConnect
|
|
|
2450
3483
|
req.send_request(options)
|
|
2451
3484
|
end
|
|
2452
3485
|
|
|
3486
|
+
# Retrieves information about a specific router input in AWS Elemental
|
|
3487
|
+
# MediaConnect.
|
|
3488
|
+
#
|
|
3489
|
+
# @option params [required, String] :arn
|
|
3490
|
+
# The Amazon Resource Name (ARN) of the router input to retrieve
|
|
3491
|
+
# information about.
|
|
3492
|
+
#
|
|
3493
|
+
# @return [Types::GetRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3494
|
+
#
|
|
3495
|
+
# * {Types::GetRouterInputResponse#router_input #router_input} => Types::RouterInput
|
|
3496
|
+
#
|
|
3497
|
+
# @example Request syntax with placeholder values
|
|
3498
|
+
#
|
|
3499
|
+
# resp = client.get_router_input({
|
|
3500
|
+
# arn: "RouterInputArn", # required
|
|
3501
|
+
# })
|
|
3502
|
+
#
|
|
3503
|
+
# @example Response structure
|
|
3504
|
+
#
|
|
3505
|
+
# resp.router_input.name #=> String
|
|
3506
|
+
# resp.router_input.arn #=> String
|
|
3507
|
+
# resp.router_input.id #=> String
|
|
3508
|
+
# resp.router_input.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
3509
|
+
# resp.router_input.input_type #=> String, one of "STANDARD", "FAILOVER", "MERGE", "MEDIACONNECT_FLOW"
|
|
3510
|
+
# resp.router_input.configuration.standard.network_interface_arn #=> String
|
|
3511
|
+
# resp.router_input.configuration.standard.protocol_configuration.rtp.port #=> Integer
|
|
3512
|
+
# resp.router_input.configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
3513
|
+
# resp.router_input.configuration.standard.protocol_configuration.rist.port #=> Integer
|
|
3514
|
+
# resp.router_input.configuration.standard.protocol_configuration.rist.recovery_latency_milliseconds #=> Integer
|
|
3515
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
3516
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
3517
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
3518
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
3519
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.source_address #=> String
|
|
3520
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.source_port #=> Integer
|
|
3521
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
3522
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
3523
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
3524
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
3525
|
+
# resp.router_input.configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
3526
|
+
# resp.router_input.configuration.failover.network_interface_arn #=> String
|
|
3527
|
+
# resp.router_input.configuration.failover.protocol_configurations #=> Array
|
|
3528
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rtp.port #=> Integer
|
|
3529
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
3530
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rist.port #=> Integer
|
|
3531
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
3532
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.port #=> Integer
|
|
3533
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.minimum_latency_milliseconds #=> Integer
|
|
3534
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
3535
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
3536
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.source_address #=> String
|
|
3537
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.source_port #=> Integer
|
|
3538
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.minimum_latency_milliseconds #=> Integer
|
|
3539
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.stream_id #=> String
|
|
3540
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
3541
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
3542
|
+
# resp.router_input.configuration.failover.source_priority_mode #=> String, one of "NO_PRIORITY", "PRIMARY_SECONDARY"
|
|
3543
|
+
# resp.router_input.configuration.failover.primary_source_index #=> Integer
|
|
3544
|
+
# resp.router_input.configuration.merge.network_interface_arn #=> String
|
|
3545
|
+
# resp.router_input.configuration.merge.protocol_configurations #=> Array
|
|
3546
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rtp.port #=> Integer
|
|
3547
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
3548
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rist.port #=> Integer
|
|
3549
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
3550
|
+
# resp.router_input.configuration.merge.merge_recovery_window_milliseconds #=> Integer
|
|
3551
|
+
# resp.router_input.configuration.media_connect_flow.flow_arn #=> String
|
|
3552
|
+
# resp.router_input.configuration.media_connect_flow.flow_output_arn #=> String
|
|
3553
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
3554
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
3555
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
3556
|
+
# resp.router_input.routed_outputs #=> Integer
|
|
3557
|
+
# resp.router_input.maximum_routed_outputs #=> Integer
|
|
3558
|
+
# resp.router_input.region_name #=> String
|
|
3559
|
+
# resp.router_input.availability_zone #=> String
|
|
3560
|
+
# resp.router_input.maximum_bitrate #=> Integer
|
|
3561
|
+
# resp.router_input.tier #=> String, one of "INPUT_100", "INPUT_50", "INPUT_20"
|
|
3562
|
+
# resp.router_input.routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
3563
|
+
# resp.router_input.created_at #=> Time
|
|
3564
|
+
# resp.router_input.updated_at #=> Time
|
|
3565
|
+
# resp.router_input.messages #=> Array
|
|
3566
|
+
# resp.router_input.messages[0].code #=> String
|
|
3567
|
+
# resp.router_input.messages[0].message #=> String
|
|
3568
|
+
# resp.router_input.transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
3569
|
+
# resp.router_input.transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
3570
|
+
# resp.router_input.transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
3571
|
+
# resp.router_input.tags #=> Hash
|
|
3572
|
+
# resp.router_input.tags["String"] #=> String
|
|
3573
|
+
# resp.router_input.stream_details.standard.source_ip_address #=> String
|
|
3574
|
+
# resp.router_input.stream_details.failover.source_index_zero_stream_details.source_index #=> Integer
|
|
3575
|
+
# resp.router_input.stream_details.failover.source_index_zero_stream_details.source_ip_address #=> String
|
|
3576
|
+
# resp.router_input.stream_details.failover.source_index_one_stream_details.source_index #=> Integer
|
|
3577
|
+
# resp.router_input.stream_details.failover.source_index_one_stream_details.source_ip_address #=> String
|
|
3578
|
+
# resp.router_input.stream_details.merge.source_index_zero_stream_details.source_index #=> Integer
|
|
3579
|
+
# resp.router_input.stream_details.merge.source_index_zero_stream_details.source_ip_address #=> String
|
|
3580
|
+
# resp.router_input.stream_details.merge.source_index_one_stream_details.source_index #=> Integer
|
|
3581
|
+
# resp.router_input.stream_details.merge.source_index_one_stream_details.source_ip_address #=> String
|
|
3582
|
+
# resp.router_input.ip_address #=> String
|
|
3583
|
+
# resp.router_input.maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
3584
|
+
# resp.router_input.maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
3585
|
+
# resp.router_input.maintenance_configuration.preferred_day_time.time #=> String
|
|
3586
|
+
# resp.router_input.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
3587
|
+
# resp.router_input.maintenance_schedule.window.start #=> Time
|
|
3588
|
+
# resp.router_input.maintenance_schedule.window.end #=> Time
|
|
3589
|
+
# resp.router_input.maintenance_schedule.window.scheduled_time #=> Time
|
|
3590
|
+
#
|
|
3591
|
+
#
|
|
3592
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
3593
|
+
#
|
|
3594
|
+
# * input_active
|
|
3595
|
+
# * input_deleted
|
|
3596
|
+
# * input_standby
|
|
3597
|
+
#
|
|
3598
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GetRouterInput AWS API Documentation
|
|
3599
|
+
#
|
|
3600
|
+
# @overload get_router_input(params = {})
|
|
3601
|
+
# @param [Hash] params ({})
|
|
3602
|
+
def get_router_input(params = {}, options = {})
|
|
3603
|
+
req = build_request(:get_router_input, params)
|
|
3604
|
+
req.send_request(options)
|
|
3605
|
+
end
|
|
3606
|
+
|
|
3607
|
+
# Retrieves detailed metadata information about a specific router input
|
|
3608
|
+
# source, including stream details and connection state.
|
|
3609
|
+
#
|
|
3610
|
+
# @option params [required, String] :arn
|
|
3611
|
+
# The Amazon Resource Name (ARN) of the router input to retrieve
|
|
3612
|
+
# metadata for.
|
|
3613
|
+
#
|
|
3614
|
+
# @return [Types::GetRouterInputSourceMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3615
|
+
#
|
|
3616
|
+
# * {Types::GetRouterInputSourceMetadataResponse#arn #arn} => String
|
|
3617
|
+
# * {Types::GetRouterInputSourceMetadataResponse#name #name} => String
|
|
3618
|
+
# * {Types::GetRouterInputSourceMetadataResponse#source_metadata_details #source_metadata_details} => Types::RouterInputSourceMetadataDetails
|
|
3619
|
+
#
|
|
3620
|
+
# @example Request syntax with placeholder values
|
|
3621
|
+
#
|
|
3622
|
+
# resp = client.get_router_input_source_metadata({
|
|
3623
|
+
# arn: "RouterInputArn", # required
|
|
3624
|
+
# })
|
|
3625
|
+
#
|
|
3626
|
+
# @example Response structure
|
|
3627
|
+
#
|
|
3628
|
+
# resp.arn #=> String
|
|
3629
|
+
# resp.name #=> String
|
|
3630
|
+
# resp.source_metadata_details.source_metadata_messages #=> Array
|
|
3631
|
+
# resp.source_metadata_details.source_metadata_messages[0].code #=> String
|
|
3632
|
+
# resp.source_metadata_details.source_metadata_messages[0].message #=> String
|
|
3633
|
+
# resp.source_metadata_details.timestamp #=> Time
|
|
3634
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs #=> Array
|
|
3635
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].pcr_pid #=> Integer
|
|
3636
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].program_name #=> String
|
|
3637
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].program_number #=> Integer
|
|
3638
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].program_pid #=> Integer
|
|
3639
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams #=> Array
|
|
3640
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].channels #=> Integer
|
|
3641
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].codec #=> String
|
|
3642
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].frame_rate #=> String
|
|
3643
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].frame_resolution.frame_height #=> Integer
|
|
3644
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].frame_resolution.frame_width #=> Integer
|
|
3645
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].pid #=> Integer
|
|
3646
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].sample_rate #=> Integer
|
|
3647
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].sample_size #=> Integer
|
|
3648
|
+
# resp.source_metadata_details.router_input_metadata.transport_stream_media_info.programs[0].streams[0].stream_type #=> String
|
|
3649
|
+
#
|
|
3650
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GetRouterInputSourceMetadata AWS API Documentation
|
|
3651
|
+
#
|
|
3652
|
+
# @overload get_router_input_source_metadata(params = {})
|
|
3653
|
+
# @param [Hash] params ({})
|
|
3654
|
+
def get_router_input_source_metadata(params = {}, options = {})
|
|
3655
|
+
req = build_request(:get_router_input_source_metadata, params)
|
|
3656
|
+
req.send_request(options)
|
|
3657
|
+
end
|
|
3658
|
+
|
|
3659
|
+
# Retrieves the thumbnail for a router input in AWS Elemental
|
|
3660
|
+
# MediaConnect.
|
|
3661
|
+
#
|
|
3662
|
+
# @option params [required, String] :arn
|
|
3663
|
+
# The Amazon Resource Name (ARN) of the router input that you want to
|
|
3664
|
+
# see a thumbnail of.
|
|
3665
|
+
#
|
|
3666
|
+
# @return [Types::GetRouterInputThumbnailResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3667
|
+
#
|
|
3668
|
+
# * {Types::GetRouterInputThumbnailResponse#arn #arn} => String
|
|
3669
|
+
# * {Types::GetRouterInputThumbnailResponse#name #name} => String
|
|
3670
|
+
# * {Types::GetRouterInputThumbnailResponse#thumbnail_details #thumbnail_details} => Types::RouterInputThumbnailDetails
|
|
3671
|
+
#
|
|
3672
|
+
# @example Request syntax with placeholder values
|
|
3673
|
+
#
|
|
3674
|
+
# resp = client.get_router_input_thumbnail({
|
|
3675
|
+
# arn: "RouterInputArn", # required
|
|
3676
|
+
# })
|
|
3677
|
+
#
|
|
3678
|
+
# @example Response structure
|
|
3679
|
+
#
|
|
3680
|
+
# resp.arn #=> String
|
|
3681
|
+
# resp.name #=> String
|
|
3682
|
+
# resp.thumbnail_details.thumbnail_messages #=> Array
|
|
3683
|
+
# resp.thumbnail_details.thumbnail_messages[0].code #=> String
|
|
3684
|
+
# resp.thumbnail_details.thumbnail_messages[0].message #=> String
|
|
3685
|
+
# resp.thumbnail_details.thumbnail #=> String
|
|
3686
|
+
# resp.thumbnail_details.timecode #=> String
|
|
3687
|
+
# resp.thumbnail_details.timestamp #=> Time
|
|
3688
|
+
#
|
|
3689
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GetRouterInputThumbnail AWS API Documentation
|
|
3690
|
+
#
|
|
3691
|
+
# @overload get_router_input_thumbnail(params = {})
|
|
3692
|
+
# @param [Hash] params ({})
|
|
3693
|
+
def get_router_input_thumbnail(params = {}, options = {})
|
|
3694
|
+
req = build_request(:get_router_input_thumbnail, params)
|
|
3695
|
+
req.send_request(options)
|
|
3696
|
+
end
|
|
3697
|
+
|
|
3698
|
+
# Retrieves information about a specific router network interface in AWS
|
|
3699
|
+
# Elemental MediaConnect.
|
|
3700
|
+
#
|
|
3701
|
+
# @option params [required, String] :arn
|
|
3702
|
+
# The Amazon Resource Name (ARN) of the router network interface that
|
|
3703
|
+
# you want to retrieve information about.
|
|
3704
|
+
#
|
|
3705
|
+
# @return [Types::GetRouterNetworkInterfaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3706
|
+
#
|
|
3707
|
+
# * {Types::GetRouterNetworkInterfaceResponse#router_network_interface #router_network_interface} => Types::RouterNetworkInterface
|
|
3708
|
+
#
|
|
3709
|
+
# @example Request syntax with placeholder values
|
|
3710
|
+
#
|
|
3711
|
+
# resp = client.get_router_network_interface({
|
|
3712
|
+
# arn: "RouterNetworkInterfaceArn", # required
|
|
3713
|
+
# })
|
|
3714
|
+
#
|
|
3715
|
+
# @example Response structure
|
|
3716
|
+
#
|
|
3717
|
+
# resp.router_network_interface.name #=> String
|
|
3718
|
+
# resp.router_network_interface.arn #=> String
|
|
3719
|
+
# resp.router_network_interface.id #=> String
|
|
3720
|
+
# resp.router_network_interface.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "ERROR", "RECOVERING"
|
|
3721
|
+
# resp.router_network_interface.network_interface_type #=> String, one of "PUBLIC", "VPC"
|
|
3722
|
+
# resp.router_network_interface.configuration.public.allow_rules #=> Array
|
|
3723
|
+
# resp.router_network_interface.configuration.public.allow_rules[0].cidr #=> String
|
|
3724
|
+
# resp.router_network_interface.configuration.vpc.security_group_ids #=> Array
|
|
3725
|
+
# resp.router_network_interface.configuration.vpc.security_group_ids[0] #=> String
|
|
3726
|
+
# resp.router_network_interface.configuration.vpc.subnet_id #=> String
|
|
3727
|
+
# resp.router_network_interface.associated_output_count #=> Integer
|
|
3728
|
+
# resp.router_network_interface.associated_input_count #=> Integer
|
|
3729
|
+
# resp.router_network_interface.region_name #=> String
|
|
3730
|
+
# resp.router_network_interface.created_at #=> Time
|
|
3731
|
+
# resp.router_network_interface.updated_at #=> Time
|
|
3732
|
+
# resp.router_network_interface.tags #=> Hash
|
|
3733
|
+
# resp.router_network_interface.tags["String"] #=> String
|
|
3734
|
+
#
|
|
3735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GetRouterNetworkInterface AWS API Documentation
|
|
3736
|
+
#
|
|
3737
|
+
# @overload get_router_network_interface(params = {})
|
|
3738
|
+
# @param [Hash] params ({})
|
|
3739
|
+
def get_router_network_interface(params = {}, options = {})
|
|
3740
|
+
req = build_request(:get_router_network_interface, params)
|
|
3741
|
+
req.send_request(options)
|
|
3742
|
+
end
|
|
3743
|
+
|
|
3744
|
+
# Retrieves information about a specific router output in AWS Elemental
|
|
3745
|
+
# MediaConnect.
|
|
3746
|
+
#
|
|
3747
|
+
# @option params [required, String] :arn
|
|
3748
|
+
# The Amazon Resource Name (ARN) of the router output that you want to
|
|
3749
|
+
# retrieve information about.
|
|
3750
|
+
#
|
|
3751
|
+
# @return [Types::GetRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3752
|
+
#
|
|
3753
|
+
# * {Types::GetRouterOutputResponse#router_output #router_output} => Types::RouterOutput
|
|
3754
|
+
#
|
|
3755
|
+
# @example Request syntax with placeholder values
|
|
3756
|
+
#
|
|
3757
|
+
# resp = client.get_router_output({
|
|
3758
|
+
# arn: "RouterOutputArn", # required
|
|
3759
|
+
# })
|
|
3760
|
+
#
|
|
3761
|
+
# @example Response structure
|
|
3762
|
+
#
|
|
3763
|
+
# resp.router_output.name #=> String
|
|
3764
|
+
# resp.router_output.arn #=> String
|
|
3765
|
+
# resp.router_output.id #=> String
|
|
3766
|
+
# resp.router_output.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
3767
|
+
# resp.router_output.output_type #=> String, one of "STANDARD", "MEDIACONNECT_FLOW", "MEDIALIVE_INPUT"
|
|
3768
|
+
# resp.router_output.configuration.standard.network_interface_arn #=> String
|
|
3769
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.destination_address #=> String
|
|
3770
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.destination_port #=> Integer
|
|
3771
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
3772
|
+
# resp.router_output.configuration.standard.protocol_configuration.rist.destination_address #=> String
|
|
3773
|
+
# resp.router_output.configuration.standard.protocol_configuration.rist.destination_port #=> Integer
|
|
3774
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
3775
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
3776
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.secret_arn #=> String
|
|
3777
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.role_arn #=> String
|
|
3778
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.destination_address #=> String
|
|
3779
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.destination_port #=> Integer
|
|
3780
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
3781
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
3782
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.secret_arn #=> String
|
|
3783
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.role_arn #=> String
|
|
3784
|
+
# resp.router_output.configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
3785
|
+
# resp.router_output.configuration.media_connect_flow.flow_arn #=> String
|
|
3786
|
+
# resp.router_output.configuration.media_connect_flow.flow_source_arn #=> String
|
|
3787
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
3788
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
3789
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
3790
|
+
# resp.router_output.configuration.media_live_input.media_live_input_arn #=> String
|
|
3791
|
+
# resp.router_output.configuration.media_live_input.media_live_pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
|
3792
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
3793
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
3794
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
3795
|
+
# resp.router_output.routed_state #=> String, one of "ROUTED", "ROUTING", "UNROUTED"
|
|
3796
|
+
# resp.router_output.region_name #=> String
|
|
3797
|
+
# resp.router_output.availability_zone #=> String
|
|
3798
|
+
# resp.router_output.maximum_bitrate #=> Integer
|
|
3799
|
+
# resp.router_output.routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
3800
|
+
# resp.router_output.tier #=> String, one of "OUTPUT_100", "OUTPUT_50", "OUTPUT_20"
|
|
3801
|
+
# resp.router_output.created_at #=> Time
|
|
3802
|
+
# resp.router_output.updated_at #=> Time
|
|
3803
|
+
# resp.router_output.messages #=> Array
|
|
3804
|
+
# resp.router_output.messages[0].code #=> String
|
|
3805
|
+
# resp.router_output.messages[0].message #=> String
|
|
3806
|
+
# resp.router_output.tags #=> Hash
|
|
3807
|
+
# resp.router_output.tags["String"] #=> String
|
|
3808
|
+
# resp.router_output.stream_details.standard.destination_ip_address #=> String
|
|
3809
|
+
# resp.router_output.ip_address #=> String
|
|
3810
|
+
# resp.router_output.routed_input_arn #=> String
|
|
3811
|
+
# resp.router_output.maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
3812
|
+
# resp.router_output.maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
3813
|
+
# resp.router_output.maintenance_configuration.preferred_day_time.time #=> String
|
|
3814
|
+
# resp.router_output.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
3815
|
+
# resp.router_output.maintenance_schedule.window.start #=> Time
|
|
3816
|
+
# resp.router_output.maintenance_schedule.window.end #=> Time
|
|
3817
|
+
# resp.router_output.maintenance_schedule.window.scheduled_time #=> Time
|
|
3818
|
+
#
|
|
3819
|
+
#
|
|
3820
|
+
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
3821
|
+
#
|
|
3822
|
+
# * output_active
|
|
3823
|
+
# * output_deleted
|
|
3824
|
+
# * output_routed
|
|
3825
|
+
# * output_standby
|
|
3826
|
+
#
|
|
3827
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GetRouterOutput AWS API Documentation
|
|
3828
|
+
#
|
|
3829
|
+
# @overload get_router_output(params = {})
|
|
3830
|
+
# @param [Hash] params ({})
|
|
3831
|
+
def get_router_output(params = {}, options = {})
|
|
3832
|
+
req = build_request(:get_router_output, params)
|
|
3833
|
+
req.send_request(options)
|
|
3834
|
+
end
|
|
3835
|
+
|
|
2453
3836
|
# Grants entitlements to an existing flow.
|
|
2454
3837
|
#
|
|
2455
3838
|
# @option params [required, Array<Types::GrantEntitlementRequest>] :entitlements
|
|
@@ -2952,7 +4335,232 @@ module Aws::MediaConnect
|
|
|
2952
4335
|
req.send_request(options)
|
|
2953
4336
|
end
|
|
2954
4337
|
|
|
2955
|
-
#
|
|
4338
|
+
# Retrieves a list of router inputs in AWS Elemental MediaConnect.
|
|
4339
|
+
#
|
|
4340
|
+
# @option params [Integer] :max_results
|
|
4341
|
+
# The maximum number of router inputs to return in the response.
|
|
4342
|
+
#
|
|
4343
|
+
# @option params [String] :next_token
|
|
4344
|
+
# A token used to retrieve the next page of results.
|
|
4345
|
+
#
|
|
4346
|
+
# @option params [Array<Types::RouterInputFilter>] :filters
|
|
4347
|
+
# The filters to apply when retrieving the list of router inputs.
|
|
4348
|
+
#
|
|
4349
|
+
# @return [Types::ListRouterInputsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4350
|
+
#
|
|
4351
|
+
# * {Types::ListRouterInputsResponse#router_inputs #router_inputs} => Array<Types::ListedRouterInput>
|
|
4352
|
+
# * {Types::ListRouterInputsResponse#next_token #next_token} => String
|
|
4353
|
+
#
|
|
4354
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
4355
|
+
#
|
|
4356
|
+
# @example Request syntax with placeholder values
|
|
4357
|
+
#
|
|
4358
|
+
# resp = client.list_router_inputs({
|
|
4359
|
+
# max_results: 1,
|
|
4360
|
+
# next_token: "String",
|
|
4361
|
+
# filters: [
|
|
4362
|
+
# {
|
|
4363
|
+
# region_names: ["String"],
|
|
4364
|
+
# input_types: ["STANDARD"], # accepts STANDARD, FAILOVER, MERGE, MEDIACONNECT_FLOW
|
|
4365
|
+
# name_contains: ["String"],
|
|
4366
|
+
# network_interface_arns: ["RouterNetworkInterfaceArn"],
|
|
4367
|
+
# routing_scopes: ["REGIONAL"], # accepts REGIONAL, GLOBAL
|
|
4368
|
+
# },
|
|
4369
|
+
# ],
|
|
4370
|
+
# })
|
|
4371
|
+
#
|
|
4372
|
+
# @example Response structure
|
|
4373
|
+
#
|
|
4374
|
+
# resp.router_inputs #=> Array
|
|
4375
|
+
# resp.router_inputs[0].name #=> String
|
|
4376
|
+
# resp.router_inputs[0].arn #=> String
|
|
4377
|
+
# resp.router_inputs[0].id #=> String
|
|
4378
|
+
# resp.router_inputs[0].input_type #=> String, one of "STANDARD", "FAILOVER", "MERGE", "MEDIACONNECT_FLOW"
|
|
4379
|
+
# resp.router_inputs[0].state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
4380
|
+
# resp.router_inputs[0].routed_outputs #=> Integer
|
|
4381
|
+
# resp.router_inputs[0].region_name #=> String
|
|
4382
|
+
# resp.router_inputs[0].availability_zone #=> String
|
|
4383
|
+
# resp.router_inputs[0].maximum_bitrate #=> Integer
|
|
4384
|
+
# resp.router_inputs[0].routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
4385
|
+
# resp.router_inputs[0].created_at #=> Time
|
|
4386
|
+
# resp.router_inputs[0].updated_at #=> Time
|
|
4387
|
+
# resp.router_inputs[0].message_count #=> Integer
|
|
4388
|
+
# resp.router_inputs[0].network_interface_arn #=> String
|
|
4389
|
+
# resp.router_inputs[0].maintenance_schedule_type #=> String, one of "WINDOW"
|
|
4390
|
+
# resp.router_inputs[0].maintenance_schedule.window.start #=> Time
|
|
4391
|
+
# resp.router_inputs[0].maintenance_schedule.window.end #=> Time
|
|
4392
|
+
# resp.router_inputs[0].maintenance_schedule.window.scheduled_time #=> Time
|
|
4393
|
+
# resp.next_token #=> String
|
|
4394
|
+
#
|
|
4395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListRouterInputs AWS API Documentation
|
|
4396
|
+
#
|
|
4397
|
+
# @overload list_router_inputs(params = {})
|
|
4398
|
+
# @param [Hash] params ({})
|
|
4399
|
+
def list_router_inputs(params = {}, options = {})
|
|
4400
|
+
req = build_request(:list_router_inputs, params)
|
|
4401
|
+
req.send_request(options)
|
|
4402
|
+
end
|
|
4403
|
+
|
|
4404
|
+
# Retrieves a list of router network interfaces in AWS Elemental
|
|
4405
|
+
# MediaConnect.
|
|
4406
|
+
#
|
|
4407
|
+
# @option params [Integer] :max_results
|
|
4408
|
+
# The maximum number of router network interfaces to return in the
|
|
4409
|
+
# response.
|
|
4410
|
+
#
|
|
4411
|
+
# @option params [String] :next_token
|
|
4412
|
+
# A token used to retrieve the next page of results.
|
|
4413
|
+
#
|
|
4414
|
+
# @option params [Array<Types::RouterNetworkInterfaceFilter>] :filters
|
|
4415
|
+
# The filters to apply when retrieving the list of router network
|
|
4416
|
+
# interfaces.
|
|
4417
|
+
#
|
|
4418
|
+
# @return [Types::ListRouterNetworkInterfacesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4419
|
+
#
|
|
4420
|
+
# * {Types::ListRouterNetworkInterfacesResponse#router_network_interfaces #router_network_interfaces} => Array<Types::ListedRouterNetworkInterface>
|
|
4421
|
+
# * {Types::ListRouterNetworkInterfacesResponse#next_token #next_token} => String
|
|
4422
|
+
#
|
|
4423
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
4424
|
+
#
|
|
4425
|
+
# @example Request syntax with placeholder values
|
|
4426
|
+
#
|
|
4427
|
+
# resp = client.list_router_network_interfaces({
|
|
4428
|
+
# max_results: 1,
|
|
4429
|
+
# next_token: "String",
|
|
4430
|
+
# filters: [
|
|
4431
|
+
# {
|
|
4432
|
+
# region_names: ["String"],
|
|
4433
|
+
# network_interface_types: ["PUBLIC"], # accepts PUBLIC, VPC
|
|
4434
|
+
# name_contains: ["String"],
|
|
4435
|
+
# },
|
|
4436
|
+
# ],
|
|
4437
|
+
# })
|
|
4438
|
+
#
|
|
4439
|
+
# @example Response structure
|
|
4440
|
+
#
|
|
4441
|
+
# resp.router_network_interfaces #=> Array
|
|
4442
|
+
# resp.router_network_interfaces[0].name #=> String
|
|
4443
|
+
# resp.router_network_interfaces[0].arn #=> String
|
|
4444
|
+
# resp.router_network_interfaces[0].id #=> String
|
|
4445
|
+
# resp.router_network_interfaces[0].network_interface_type #=> String, one of "PUBLIC", "VPC"
|
|
4446
|
+
# resp.router_network_interfaces[0].associated_output_count #=> Integer
|
|
4447
|
+
# resp.router_network_interfaces[0].associated_input_count #=> Integer
|
|
4448
|
+
# resp.router_network_interfaces[0].state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "ERROR", "RECOVERING"
|
|
4449
|
+
# resp.router_network_interfaces[0].region_name #=> String
|
|
4450
|
+
# resp.router_network_interfaces[0].created_at #=> Time
|
|
4451
|
+
# resp.router_network_interfaces[0].updated_at #=> Time
|
|
4452
|
+
# resp.next_token #=> String
|
|
4453
|
+
#
|
|
4454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListRouterNetworkInterfaces AWS API Documentation
|
|
4455
|
+
#
|
|
4456
|
+
# @overload list_router_network_interfaces(params = {})
|
|
4457
|
+
# @param [Hash] params ({})
|
|
4458
|
+
def list_router_network_interfaces(params = {}, options = {})
|
|
4459
|
+
req = build_request(:list_router_network_interfaces, params)
|
|
4460
|
+
req.send_request(options)
|
|
4461
|
+
end
|
|
4462
|
+
|
|
4463
|
+
# Retrieves a list of router outputs in AWS Elemental MediaConnect.
|
|
4464
|
+
#
|
|
4465
|
+
# @option params [Integer] :max_results
|
|
4466
|
+
# The maximum number of router outputs to return in the response.
|
|
4467
|
+
#
|
|
4468
|
+
# @option params [String] :next_token
|
|
4469
|
+
# A token used to retrieve the next page of results.
|
|
4470
|
+
#
|
|
4471
|
+
# @option params [Array<Types::RouterOutputFilter>] :filters
|
|
4472
|
+
# The filters to apply when retrieving the list of router outputs.
|
|
4473
|
+
#
|
|
4474
|
+
# @return [Types::ListRouterOutputsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4475
|
+
#
|
|
4476
|
+
# * {Types::ListRouterOutputsResponse#router_outputs #router_outputs} => Array<Types::ListedRouterOutput>
|
|
4477
|
+
# * {Types::ListRouterOutputsResponse#next_token #next_token} => String
|
|
4478
|
+
#
|
|
4479
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
4480
|
+
#
|
|
4481
|
+
# @example Request syntax with placeholder values
|
|
4482
|
+
#
|
|
4483
|
+
# resp = client.list_router_outputs({
|
|
4484
|
+
# max_results: 1,
|
|
4485
|
+
# next_token: "String",
|
|
4486
|
+
# filters: [
|
|
4487
|
+
# {
|
|
4488
|
+
# region_names: ["String"],
|
|
4489
|
+
# output_types: ["STANDARD"], # accepts STANDARD, MEDIACONNECT_FLOW, MEDIALIVE_INPUT
|
|
4490
|
+
# name_contains: ["String"],
|
|
4491
|
+
# network_interface_arns: ["RouterNetworkInterfaceArn"],
|
|
4492
|
+
# routed_input_arns: ["RouterInputArn"],
|
|
4493
|
+
# routing_scopes: ["REGIONAL"], # accepts REGIONAL, GLOBAL
|
|
4494
|
+
# },
|
|
4495
|
+
# ],
|
|
4496
|
+
# })
|
|
4497
|
+
#
|
|
4498
|
+
# @example Response structure
|
|
4499
|
+
#
|
|
4500
|
+
# resp.router_outputs #=> Array
|
|
4501
|
+
# resp.router_outputs[0].name #=> String
|
|
4502
|
+
# resp.router_outputs[0].arn #=> String
|
|
4503
|
+
# resp.router_outputs[0].id #=> String
|
|
4504
|
+
# resp.router_outputs[0].output_type #=> String, one of "STANDARD", "MEDIACONNECT_FLOW", "MEDIALIVE_INPUT"
|
|
4505
|
+
# resp.router_outputs[0].state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
4506
|
+
# resp.router_outputs[0].routed_state #=> String, one of "ROUTED", "ROUTING", "UNROUTED"
|
|
4507
|
+
# resp.router_outputs[0].region_name #=> String
|
|
4508
|
+
# resp.router_outputs[0].availability_zone #=> String
|
|
4509
|
+
# resp.router_outputs[0].maximum_bitrate #=> Integer
|
|
4510
|
+
# resp.router_outputs[0].routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
4511
|
+
# resp.router_outputs[0].created_at #=> Time
|
|
4512
|
+
# resp.router_outputs[0].updated_at #=> Time
|
|
4513
|
+
# resp.router_outputs[0].message_count #=> Integer
|
|
4514
|
+
# resp.router_outputs[0].routed_input_arn #=> String
|
|
4515
|
+
# resp.router_outputs[0].network_interface_arn #=> String
|
|
4516
|
+
# resp.router_outputs[0].maintenance_schedule_type #=> String, one of "WINDOW"
|
|
4517
|
+
# resp.router_outputs[0].maintenance_schedule.window.start #=> Time
|
|
4518
|
+
# resp.router_outputs[0].maintenance_schedule.window.end #=> Time
|
|
4519
|
+
# resp.router_outputs[0].maintenance_schedule.window.scheduled_time #=> Time
|
|
4520
|
+
# resp.next_token #=> String
|
|
4521
|
+
#
|
|
4522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListRouterOutputs AWS API Documentation
|
|
4523
|
+
#
|
|
4524
|
+
# @overload list_router_outputs(params = {})
|
|
4525
|
+
# @param [Hash] params ({})
|
|
4526
|
+
def list_router_outputs(params = {}, options = {})
|
|
4527
|
+
req = build_request(:list_router_outputs, params)
|
|
4528
|
+
req.send_request(options)
|
|
4529
|
+
end
|
|
4530
|
+
|
|
4531
|
+
# Lists the tags associated with a global resource in AWS Elemental
|
|
4532
|
+
# MediaConnect. The API supports the following global resources: router
|
|
4533
|
+
# inputs, router outputs and router network interfaces.
|
|
4534
|
+
#
|
|
4535
|
+
# @option params [required, String] :resource_arn
|
|
4536
|
+
# The Amazon Resource Name (ARN) of the global resource whose tags you
|
|
4537
|
+
# want to list.
|
|
4538
|
+
#
|
|
4539
|
+
# @return [Types::ListTagsForGlobalResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4540
|
+
#
|
|
4541
|
+
# * {Types::ListTagsForGlobalResourceResponse#tags #tags} => Hash<String,String>
|
|
4542
|
+
#
|
|
4543
|
+
# @example Request syntax with placeholder values
|
|
4544
|
+
#
|
|
4545
|
+
# resp = client.list_tags_for_global_resource({
|
|
4546
|
+
# resource_arn: "String", # required
|
|
4547
|
+
# })
|
|
4548
|
+
#
|
|
4549
|
+
# @example Response structure
|
|
4550
|
+
#
|
|
4551
|
+
# resp.tags #=> Hash
|
|
4552
|
+
# resp.tags["String"] #=> String
|
|
4553
|
+
#
|
|
4554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/ListTagsForGlobalResource AWS API Documentation
|
|
4555
|
+
#
|
|
4556
|
+
# @overload list_tags_for_global_resource(params = {})
|
|
4557
|
+
# @param [Hash] params ({})
|
|
4558
|
+
def list_tags_for_global_resource(params = {}, options = {})
|
|
4559
|
+
req = build_request(:list_tags_for_global_resource, params)
|
|
4560
|
+
req.send_request(options)
|
|
4561
|
+
end
|
|
4562
|
+
|
|
4563
|
+
# List all tags on a MediaConnect resource in the current region.
|
|
2956
4564
|
#
|
|
2957
4565
|
# @option params [required, String] :resource_arn
|
|
2958
4566
|
# The Amazon Resource Name (ARN) that identifies the MediaConnect
|
|
@@ -3260,6 +4868,74 @@ module Aws::MediaConnect
|
|
|
3260
4868
|
req.send_request(options)
|
|
3261
4869
|
end
|
|
3262
4870
|
|
|
4871
|
+
# Restarts a router input. This operation can be used to recover from
|
|
4872
|
+
# errors or refresh the input state.
|
|
4873
|
+
#
|
|
4874
|
+
# @option params [required, String] :arn
|
|
4875
|
+
# The Amazon Resource Name (ARN) of the router input that you want to
|
|
4876
|
+
# restart.
|
|
4877
|
+
#
|
|
4878
|
+
# @return [Types::RestartRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4879
|
+
#
|
|
4880
|
+
# * {Types::RestartRouterInputResponse#arn #arn} => String
|
|
4881
|
+
# * {Types::RestartRouterInputResponse#name #name} => String
|
|
4882
|
+
# * {Types::RestartRouterInputResponse#state #state} => String
|
|
4883
|
+
#
|
|
4884
|
+
# @example Request syntax with placeholder values
|
|
4885
|
+
#
|
|
4886
|
+
# resp = client.restart_router_input({
|
|
4887
|
+
# arn: "RouterInputArn", # required
|
|
4888
|
+
# })
|
|
4889
|
+
#
|
|
4890
|
+
# @example Response structure
|
|
4891
|
+
#
|
|
4892
|
+
# resp.arn #=> String
|
|
4893
|
+
# resp.name #=> String
|
|
4894
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
4895
|
+
#
|
|
4896
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RestartRouterInput AWS API Documentation
|
|
4897
|
+
#
|
|
4898
|
+
# @overload restart_router_input(params = {})
|
|
4899
|
+
# @param [Hash] params ({})
|
|
4900
|
+
def restart_router_input(params = {}, options = {})
|
|
4901
|
+
req = build_request(:restart_router_input, params)
|
|
4902
|
+
req.send_request(options)
|
|
4903
|
+
end
|
|
4904
|
+
|
|
4905
|
+
# Restarts a router output. This operation can be used to recover from
|
|
4906
|
+
# errors or refresh the output state.
|
|
4907
|
+
#
|
|
4908
|
+
# @option params [required, String] :arn
|
|
4909
|
+
# The Amazon Resource Name (ARN) of the router output that you want to
|
|
4910
|
+
# restart.
|
|
4911
|
+
#
|
|
4912
|
+
# @return [Types::RestartRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4913
|
+
#
|
|
4914
|
+
# * {Types::RestartRouterOutputResponse#arn #arn} => String
|
|
4915
|
+
# * {Types::RestartRouterOutputResponse#name #name} => String
|
|
4916
|
+
# * {Types::RestartRouterOutputResponse#state #state} => String
|
|
4917
|
+
#
|
|
4918
|
+
# @example Request syntax with placeholder values
|
|
4919
|
+
#
|
|
4920
|
+
# resp = client.restart_router_output({
|
|
4921
|
+
# arn: "RouterOutputArn", # required
|
|
4922
|
+
# })
|
|
4923
|
+
#
|
|
4924
|
+
# @example Response structure
|
|
4925
|
+
#
|
|
4926
|
+
# resp.arn #=> String
|
|
4927
|
+
# resp.name #=> String
|
|
4928
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
4929
|
+
#
|
|
4930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RestartRouterOutput AWS API Documentation
|
|
4931
|
+
#
|
|
4932
|
+
# @overload restart_router_output(params = {})
|
|
4933
|
+
# @param [Hash] params ({})
|
|
4934
|
+
def restart_router_output(params = {}, options = {})
|
|
4935
|
+
req = build_request(:restart_router_output, params)
|
|
4936
|
+
req.send_request(options)
|
|
4937
|
+
end
|
|
4938
|
+
|
|
3263
4939
|
# Revokes an entitlement from a flow. Once an entitlement is revoked,
|
|
3264
4940
|
# the content becomes unavailable to the subscriber and the associated
|
|
3265
4941
|
# output is removed.
|
|
@@ -3285,45 +4961,123 @@ module Aws::MediaConnect
|
|
|
3285
4961
|
#
|
|
3286
4962
|
# @example Response structure
|
|
3287
4963
|
#
|
|
3288
|
-
# resp.entitlement_arn #=> String
|
|
3289
|
-
# resp.flow_arn #=> String
|
|
4964
|
+
# resp.entitlement_arn #=> String
|
|
4965
|
+
# resp.flow_arn #=> String
|
|
4966
|
+
#
|
|
4967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/RevokeFlowEntitlement AWS API Documentation
|
|
4968
|
+
#
|
|
4969
|
+
# @overload revoke_flow_entitlement(params = {})
|
|
4970
|
+
# @param [Hash] params ({})
|
|
4971
|
+
def revoke_flow_entitlement(params = {}, options = {})
|
|
4972
|
+
req = build_request(:revoke_flow_entitlement, params)
|
|
4973
|
+
req.send_request(options)
|
|
4974
|
+
end
|
|
4975
|
+
|
|
4976
|
+
# Starts a flow.
|
|
4977
|
+
#
|
|
4978
|
+
# @option params [required, String] :flow_arn
|
|
4979
|
+
# The Amazon Resource Name (ARN) of the flow that you want to start.
|
|
4980
|
+
#
|
|
4981
|
+
# @return [Types::StartFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4982
|
+
#
|
|
4983
|
+
# * {Types::StartFlowResponse#flow_arn #flow_arn} => String
|
|
4984
|
+
# * {Types::StartFlowResponse#status #status} => String
|
|
4985
|
+
#
|
|
4986
|
+
# @example Request syntax with placeholder values
|
|
4987
|
+
#
|
|
4988
|
+
# resp = client.start_flow({
|
|
4989
|
+
# flow_arn: "StartFlowRequestFlowArnString", # required
|
|
4990
|
+
# })
|
|
4991
|
+
#
|
|
4992
|
+
# @example Response structure
|
|
4993
|
+
#
|
|
4994
|
+
# resp.flow_arn #=> String
|
|
4995
|
+
# resp.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
|
4996
|
+
#
|
|
4997
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StartFlow AWS API Documentation
|
|
4998
|
+
#
|
|
4999
|
+
# @overload start_flow(params = {})
|
|
5000
|
+
# @param [Hash] params ({})
|
|
5001
|
+
def start_flow(params = {}, options = {})
|
|
5002
|
+
req = build_request(:start_flow, params)
|
|
5003
|
+
req.send_request(options)
|
|
5004
|
+
end
|
|
5005
|
+
|
|
5006
|
+
# Starts a router input in AWS Elemental MediaConnect.
|
|
5007
|
+
#
|
|
5008
|
+
# @option params [required, String] :arn
|
|
5009
|
+
# The Amazon Resource Name (ARN) of the router input that you want to
|
|
5010
|
+
# start.
|
|
5011
|
+
#
|
|
5012
|
+
# @return [Types::StartRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5013
|
+
#
|
|
5014
|
+
# * {Types::StartRouterInputResponse#arn #arn} => String
|
|
5015
|
+
# * {Types::StartRouterInputResponse#name #name} => String
|
|
5016
|
+
# * {Types::StartRouterInputResponse#state #state} => String
|
|
5017
|
+
# * {Types::StartRouterInputResponse#maintenance_schedule_type #maintenance_schedule_type} => String
|
|
5018
|
+
# * {Types::StartRouterInputResponse#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
5019
|
+
#
|
|
5020
|
+
# @example Request syntax with placeholder values
|
|
5021
|
+
#
|
|
5022
|
+
# resp = client.start_router_input({
|
|
5023
|
+
# arn: "RouterInputArn", # required
|
|
5024
|
+
# })
|
|
5025
|
+
#
|
|
5026
|
+
# @example Response structure
|
|
5027
|
+
#
|
|
5028
|
+
# resp.arn #=> String
|
|
5029
|
+
# resp.name #=> String
|
|
5030
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
5031
|
+
# resp.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
5032
|
+
# resp.maintenance_schedule.window.start #=> Time
|
|
5033
|
+
# resp.maintenance_schedule.window.end #=> Time
|
|
5034
|
+
# resp.maintenance_schedule.window.scheduled_time #=> Time
|
|
3290
5035
|
#
|
|
3291
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/
|
|
5036
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StartRouterInput AWS API Documentation
|
|
3292
5037
|
#
|
|
3293
|
-
# @overload
|
|
5038
|
+
# @overload start_router_input(params = {})
|
|
3294
5039
|
# @param [Hash] params ({})
|
|
3295
|
-
def
|
|
3296
|
-
req = build_request(:
|
|
5040
|
+
def start_router_input(params = {}, options = {})
|
|
5041
|
+
req = build_request(:start_router_input, params)
|
|
3297
5042
|
req.send_request(options)
|
|
3298
5043
|
end
|
|
3299
5044
|
|
|
3300
|
-
# Starts a
|
|
5045
|
+
# Starts a router output in AWS Elemental MediaConnect.
|
|
3301
5046
|
#
|
|
3302
|
-
# @option params [required, String] :
|
|
3303
|
-
# The Amazon Resource Name (ARN) of the
|
|
5047
|
+
# @option params [required, String] :arn
|
|
5048
|
+
# The Amazon Resource Name (ARN) of the router output that you want to
|
|
5049
|
+
# start.
|
|
3304
5050
|
#
|
|
3305
|
-
# @return [Types::
|
|
5051
|
+
# @return [Types::StartRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3306
5052
|
#
|
|
3307
|
-
# * {Types::
|
|
3308
|
-
# * {Types::
|
|
5053
|
+
# * {Types::StartRouterOutputResponse#arn #arn} => String
|
|
5054
|
+
# * {Types::StartRouterOutputResponse#name #name} => String
|
|
5055
|
+
# * {Types::StartRouterOutputResponse#state #state} => String
|
|
5056
|
+
# * {Types::StartRouterOutputResponse#maintenance_schedule_type #maintenance_schedule_type} => String
|
|
5057
|
+
# * {Types::StartRouterOutputResponse#maintenance_schedule #maintenance_schedule} => Types::MaintenanceSchedule
|
|
3309
5058
|
#
|
|
3310
5059
|
# @example Request syntax with placeholder values
|
|
3311
5060
|
#
|
|
3312
|
-
# resp = client.
|
|
3313
|
-
#
|
|
5061
|
+
# resp = client.start_router_output({
|
|
5062
|
+
# arn: "RouterOutputArn", # required
|
|
3314
5063
|
# })
|
|
3315
5064
|
#
|
|
3316
5065
|
# @example Response structure
|
|
3317
5066
|
#
|
|
3318
|
-
# resp.
|
|
3319
|
-
# resp.
|
|
5067
|
+
# resp.arn #=> String
|
|
5068
|
+
# resp.name #=> String
|
|
5069
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
5070
|
+
# resp.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
5071
|
+
# resp.maintenance_schedule.window.start #=> Time
|
|
5072
|
+
# resp.maintenance_schedule.window.end #=> Time
|
|
5073
|
+
# resp.maintenance_schedule.window.scheduled_time #=> Time
|
|
3320
5074
|
#
|
|
3321
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/
|
|
5075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StartRouterOutput AWS API Documentation
|
|
3322
5076
|
#
|
|
3323
|
-
# @overload
|
|
5077
|
+
# @overload start_router_output(params = {})
|
|
3324
5078
|
# @param [Hash] params ({})
|
|
3325
|
-
def
|
|
3326
|
-
req = build_request(:
|
|
5079
|
+
def start_router_output(params = {}, options = {})
|
|
5080
|
+
req = build_request(:start_router_output, params)
|
|
3327
5081
|
req.send_request(options)
|
|
3328
5082
|
end
|
|
3329
5083
|
|
|
@@ -3357,10 +5111,107 @@ module Aws::MediaConnect
|
|
|
3357
5111
|
req.send_request(options)
|
|
3358
5112
|
end
|
|
3359
5113
|
|
|
5114
|
+
# Stops a router input in AWS Elemental MediaConnect.
|
|
5115
|
+
#
|
|
5116
|
+
# @option params [required, String] :arn
|
|
5117
|
+
# The Amazon Resource Name (ARN) of the router input that you want to
|
|
5118
|
+
# stop.
|
|
5119
|
+
#
|
|
5120
|
+
# @return [Types::StopRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5121
|
+
#
|
|
5122
|
+
# * {Types::StopRouterInputResponse#arn #arn} => String
|
|
5123
|
+
# * {Types::StopRouterInputResponse#name #name} => String
|
|
5124
|
+
# * {Types::StopRouterInputResponse#state #state} => String
|
|
5125
|
+
#
|
|
5126
|
+
# @example Request syntax with placeholder values
|
|
5127
|
+
#
|
|
5128
|
+
# resp = client.stop_router_input({
|
|
5129
|
+
# arn: "RouterInputArn", # required
|
|
5130
|
+
# })
|
|
5131
|
+
#
|
|
5132
|
+
# @example Response structure
|
|
5133
|
+
#
|
|
5134
|
+
# resp.arn #=> String
|
|
5135
|
+
# resp.name #=> String
|
|
5136
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
5137
|
+
#
|
|
5138
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StopRouterInput AWS API Documentation
|
|
5139
|
+
#
|
|
5140
|
+
# @overload stop_router_input(params = {})
|
|
5141
|
+
# @param [Hash] params ({})
|
|
5142
|
+
def stop_router_input(params = {}, options = {})
|
|
5143
|
+
req = build_request(:stop_router_input, params)
|
|
5144
|
+
req.send_request(options)
|
|
5145
|
+
end
|
|
5146
|
+
|
|
5147
|
+
# Stops a router output in AWS Elemental MediaConnect.
|
|
5148
|
+
#
|
|
5149
|
+
# @option params [required, String] :arn
|
|
5150
|
+
# The Amazon Resource Name (ARN) of the router output that you want to
|
|
5151
|
+
# stop.
|
|
5152
|
+
#
|
|
5153
|
+
# @return [Types::StopRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5154
|
+
#
|
|
5155
|
+
# * {Types::StopRouterOutputResponse#arn #arn} => String
|
|
5156
|
+
# * {Types::StopRouterOutputResponse#name #name} => String
|
|
5157
|
+
# * {Types::StopRouterOutputResponse#state #state} => String
|
|
5158
|
+
#
|
|
5159
|
+
# @example Request syntax with placeholder values
|
|
5160
|
+
#
|
|
5161
|
+
# resp = client.stop_router_output({
|
|
5162
|
+
# arn: "RouterOutputArn", # required
|
|
5163
|
+
# })
|
|
5164
|
+
#
|
|
5165
|
+
# @example Response structure
|
|
5166
|
+
#
|
|
5167
|
+
# resp.arn #=> String
|
|
5168
|
+
# resp.name #=> String
|
|
5169
|
+
# resp.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
5170
|
+
#
|
|
5171
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/StopRouterOutput AWS API Documentation
|
|
5172
|
+
#
|
|
5173
|
+
# @overload stop_router_output(params = {})
|
|
5174
|
+
# @param [Hash] params ({})
|
|
5175
|
+
def stop_router_output(params = {}, options = {})
|
|
5176
|
+
req = build_request(:stop_router_output, params)
|
|
5177
|
+
req.send_request(options)
|
|
5178
|
+
end
|
|
5179
|
+
|
|
5180
|
+
# Adds tags to a global resource in AWS Elemental MediaConnect. The API
|
|
5181
|
+
# supports the following global resources: router inputs, router outputs
|
|
5182
|
+
# and router network interfaces.
|
|
5183
|
+
#
|
|
5184
|
+
# @option params [required, String] :resource_arn
|
|
5185
|
+
# The Amazon Resource Name (ARN) of the global resource to tag.
|
|
5186
|
+
#
|
|
5187
|
+
# @option params [required, Hash<String,String>] :tags
|
|
5188
|
+
# A map of tag keys and values to add to the global resource.
|
|
5189
|
+
#
|
|
5190
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
5191
|
+
#
|
|
5192
|
+
# @example Request syntax with placeholder values
|
|
5193
|
+
#
|
|
5194
|
+
# resp = client.tag_global_resource({
|
|
5195
|
+
# resource_arn: "String", # required
|
|
5196
|
+
# tags: { # required
|
|
5197
|
+
# "String" => "String",
|
|
5198
|
+
# },
|
|
5199
|
+
# })
|
|
5200
|
+
#
|
|
5201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/TagGlobalResource AWS API Documentation
|
|
5202
|
+
#
|
|
5203
|
+
# @overload tag_global_resource(params = {})
|
|
5204
|
+
# @param [Hash] params ({})
|
|
5205
|
+
def tag_global_resource(params = {}, options = {})
|
|
5206
|
+
req = build_request(:tag_global_resource, params)
|
|
5207
|
+
req.send_request(options)
|
|
5208
|
+
end
|
|
5209
|
+
|
|
3360
5210
|
# Associates the specified tags to a resource with the specified
|
|
3361
|
-
# `resourceArn
|
|
3362
|
-
# request parameters, they are not changed.
|
|
3363
|
-
# the tags associated with that resource are
|
|
5211
|
+
# `resourceArn` in the current region. If existing tags on a resource
|
|
5212
|
+
# are not specified in the request parameters, they are not changed.
|
|
5213
|
+
# When a resource is deleted, the tags associated with that resource are
|
|
5214
|
+
# deleted as well.
|
|
3364
5215
|
#
|
|
3365
5216
|
# @option params [required, String] :resource_arn
|
|
3366
5217
|
# The Amazon Resource Name (ARN) that identifies the MediaConnect
|
|
@@ -3391,7 +5242,79 @@ module Aws::MediaConnect
|
|
|
3391
5242
|
req.send_request(options)
|
|
3392
5243
|
end
|
|
3393
5244
|
|
|
3394
|
-
#
|
|
5245
|
+
# Associates a router input with a router output in AWS Elemental
|
|
5246
|
+
# MediaConnect.
|
|
5247
|
+
#
|
|
5248
|
+
# @option params [required, String] :router_output_arn
|
|
5249
|
+
# The Amazon Resource Name (ARN) of the router output that you want to
|
|
5250
|
+
# associate with a router input.
|
|
5251
|
+
#
|
|
5252
|
+
# @option params [String] :router_input_arn
|
|
5253
|
+
# The Amazon Resource Name (ARN) of the router input that you want to
|
|
5254
|
+
# associate with a router output.
|
|
5255
|
+
#
|
|
5256
|
+
# @return [Types::TakeRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
5257
|
+
#
|
|
5258
|
+
# * {Types::TakeRouterInputResponse#routed_state #routed_state} => String
|
|
5259
|
+
# * {Types::TakeRouterInputResponse#router_output_arn #router_output_arn} => String
|
|
5260
|
+
# * {Types::TakeRouterInputResponse#router_output_name #router_output_name} => String
|
|
5261
|
+
# * {Types::TakeRouterInputResponse#router_input_arn #router_input_arn} => String
|
|
5262
|
+
# * {Types::TakeRouterInputResponse#router_input_name #router_input_name} => String
|
|
5263
|
+
#
|
|
5264
|
+
# @example Request syntax with placeholder values
|
|
5265
|
+
#
|
|
5266
|
+
# resp = client.take_router_input({
|
|
5267
|
+
# router_output_arn: "RouterOutputArn", # required
|
|
5268
|
+
# router_input_arn: "RouterInputArn",
|
|
5269
|
+
# })
|
|
5270
|
+
#
|
|
5271
|
+
# @example Response structure
|
|
5272
|
+
#
|
|
5273
|
+
# resp.routed_state #=> String, one of "ROUTED", "ROUTING", "UNROUTED"
|
|
5274
|
+
# resp.router_output_arn #=> String
|
|
5275
|
+
# resp.router_output_name #=> String
|
|
5276
|
+
# resp.router_input_arn #=> String
|
|
5277
|
+
# resp.router_input_name #=> String
|
|
5278
|
+
#
|
|
5279
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/TakeRouterInput AWS API Documentation
|
|
5280
|
+
#
|
|
5281
|
+
# @overload take_router_input(params = {})
|
|
5282
|
+
# @param [Hash] params ({})
|
|
5283
|
+
def take_router_input(params = {}, options = {})
|
|
5284
|
+
req = build_request(:take_router_input, params)
|
|
5285
|
+
req.send_request(options)
|
|
5286
|
+
end
|
|
5287
|
+
|
|
5288
|
+
# Removes tags from a global resource in AWS Elemental MediaConnect. The
|
|
5289
|
+
# API supports the following global resources: router inputs, router
|
|
5290
|
+
# outputs and router network interfaces.
|
|
5291
|
+
#
|
|
5292
|
+
# @option params [required, String] :resource_arn
|
|
5293
|
+
# The Amazon Resource Name (ARN) of the global resource to remove tags
|
|
5294
|
+
# from.
|
|
5295
|
+
#
|
|
5296
|
+
# @option params [required, Array<String>] :tag_keys
|
|
5297
|
+
# The keys of the tags to remove from the global resource.
|
|
5298
|
+
#
|
|
5299
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
5300
|
+
#
|
|
5301
|
+
# @example Request syntax with placeholder values
|
|
5302
|
+
#
|
|
5303
|
+
# resp = client.untag_global_resource({
|
|
5304
|
+
# resource_arn: "String", # required
|
|
5305
|
+
# tag_keys: ["String"], # required
|
|
5306
|
+
# })
|
|
5307
|
+
#
|
|
5308
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UntagGlobalResource AWS API Documentation
|
|
5309
|
+
#
|
|
5310
|
+
# @overload untag_global_resource(params = {})
|
|
5311
|
+
# @param [Hash] params ({})
|
|
5312
|
+
def untag_global_resource(params = {}, options = {})
|
|
5313
|
+
req = build_request(:untag_global_resource, params)
|
|
5314
|
+
req.send_request(options)
|
|
5315
|
+
end
|
|
5316
|
+
|
|
5317
|
+
# Deletes specified tags from a resource in the current region.
|
|
3395
5318
|
#
|
|
3396
5319
|
# @option params [required, String] :resource_arn
|
|
3397
5320
|
# The Amazon Resource Name (ARN) of the resource that you want to untag.
|
|
@@ -3830,6 +5753,11 @@ module Aws::MediaConnect
|
|
|
3830
5753
|
# resp.flow.outputs[0].bridge_ports[0] #=> Integer
|
|
3831
5754
|
# resp.flow.outputs[0].output_status #=> String, one of "ENABLED", "DISABLED"
|
|
3832
5755
|
# resp.flow.outputs[0].peer_ip_address #=> String
|
|
5756
|
+
# resp.flow.outputs[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
5757
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
5758
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
5759
|
+
# resp.flow.outputs[0].router_integration_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
5760
|
+
# resp.flow.outputs[0].connected_router_input_arn #=> String
|
|
3833
5761
|
# resp.flow.source.data_transfer_subscriber_fee_percent #=> Integer
|
|
3834
5762
|
# resp.flow.source.decryption.algorithm #=> String, one of "aes128", "aes192", "aes256"
|
|
3835
5763
|
# resp.flow.source.decryption.constant_initialization_vector #=> String
|
|
@@ -3876,6 +5804,11 @@ module Aws::MediaConnect
|
|
|
3876
5804
|
# resp.flow.source.gateway_bridge_source.bridge_arn #=> String
|
|
3877
5805
|
# resp.flow.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
3878
5806
|
# resp.flow.source.peer_ip_address #=> String
|
|
5807
|
+
# resp.flow.source.router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
5808
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
5809
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
5810
|
+
# resp.flow.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
5811
|
+
# resp.flow.source.connected_router_output_arn #=> String
|
|
3879
5812
|
# resp.flow.source_failover_config.failover_mode #=> String, one of "MERGE", "FAILOVER"
|
|
3880
5813
|
# resp.flow.source_failover_config.recovery_window #=> Integer
|
|
3881
5814
|
# resp.flow.source_failover_config.source_priority.primary_source #=> String
|
|
@@ -3927,6 +5860,11 @@ module Aws::MediaConnect
|
|
|
3927
5860
|
# resp.flow.sources[0].gateway_bridge_source.bridge_arn #=> String
|
|
3928
5861
|
# resp.flow.sources[0].gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
3929
5862
|
# resp.flow.sources[0].peer_ip_address #=> String
|
|
5863
|
+
# resp.flow.sources[0].router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
5864
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
5865
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
5866
|
+
# resp.flow.sources[0].router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
5867
|
+
# resp.flow.sources[0].connected_router_output_arn #=> String
|
|
3930
5868
|
# resp.flow.status #=> String, one of "STANDBY", "ACTIVE", "UPDATING", "DELETING", "STARTING", "STOPPING", "ERROR"
|
|
3931
5869
|
# resp.flow.vpc_interfaces #=> Array
|
|
3932
5870
|
# resp.flow.vpc_interfaces[0].name #=> String
|
|
@@ -4224,6 +6162,14 @@ module Aws::MediaConnect
|
|
|
4224
6162
|
# @option params [Integer] :ndi_speed_hq_quality
|
|
4225
6163
|
# A quality setting for the NDI Speed HQ encoder.
|
|
4226
6164
|
#
|
|
6165
|
+
# @option params [String] :router_integration_state
|
|
6166
|
+
# Indicates whether to enable or disable router integration for this
|
|
6167
|
+
# flow output.
|
|
6168
|
+
#
|
|
6169
|
+
# @option params [Types::FlowTransitEncryption] :router_integration_transit_encryption
|
|
6170
|
+
# The configuration that defines how content is encrypted during transit
|
|
6171
|
+
# between the MediaConnect router and a MediaConnect flow.
|
|
6172
|
+
#
|
|
4227
6173
|
# @return [Types::UpdateFlowOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4228
6174
|
#
|
|
4229
6175
|
# * {Types::UpdateFlowOutputResponse#flow_arn #flow_arn} => String
|
|
@@ -4282,6 +6228,18 @@ module Aws::MediaConnect
|
|
|
4282
6228
|
# output_status: "ENABLED", # accepts ENABLED, DISABLED
|
|
4283
6229
|
# ndi_program_name: "String",
|
|
4284
6230
|
# ndi_speed_hq_quality: 1,
|
|
6231
|
+
# router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
|
|
6232
|
+
# router_integration_transit_encryption: {
|
|
6233
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
6234
|
+
# encryption_key_configuration: { # required
|
|
6235
|
+
# secrets_manager: {
|
|
6236
|
+
# secret_arn: "SecretArn", # required
|
|
6237
|
+
# role_arn: "RoleArn", # required
|
|
6238
|
+
# },
|
|
6239
|
+
# automatic: {
|
|
6240
|
+
# },
|
|
6241
|
+
# },
|
|
6242
|
+
# },
|
|
4285
6243
|
# })
|
|
4286
6244
|
#
|
|
4287
6245
|
# @example Response structure
|
|
@@ -4337,6 +6295,11 @@ module Aws::MediaConnect
|
|
|
4337
6295
|
# resp.output.bridge_ports[0] #=> Integer
|
|
4338
6296
|
# resp.output.output_status #=> String, one of "ENABLED", "DISABLED"
|
|
4339
6297
|
# resp.output.peer_ip_address #=> String
|
|
6298
|
+
# resp.output.router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
6299
|
+
# resp.output.router_integration_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
6300
|
+
# resp.output.router_integration_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
6301
|
+
# resp.output.router_integration_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
6302
|
+
# resp.output.connected_router_input_arn #=> String
|
|
4340
6303
|
#
|
|
4341
6304
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowOutput AWS API Documentation
|
|
4342
6305
|
#
|
|
@@ -4435,6 +6398,14 @@ module Aws::MediaConnect
|
|
|
4435
6398
|
# The source configuration for cloud flows receiving a stream from a
|
|
4436
6399
|
# bridge.
|
|
4437
6400
|
#
|
|
6401
|
+
# @option params [String] :router_integration_state
|
|
6402
|
+
# Indicates whether to enable or disable router integration for this
|
|
6403
|
+
# flow source.
|
|
6404
|
+
#
|
|
6405
|
+
# @option params [Types::FlowTransitEncryption] :router_integration_transit_decryption
|
|
6406
|
+
# The encryption configuration for the flow source when router
|
|
6407
|
+
# integration is enabled.
|
|
6408
|
+
#
|
|
4438
6409
|
# @return [Types::UpdateFlowSourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4439
6410
|
#
|
|
4440
6411
|
# * {Types::UpdateFlowSourceResponse#flow_arn #flow_arn} => String
|
|
@@ -4491,6 +6462,18 @@ module Aws::MediaConnect
|
|
|
4491
6462
|
# vpc_interface_name: "String",
|
|
4492
6463
|
# },
|
|
4493
6464
|
# },
|
|
6465
|
+
# router_integration_state: "ENABLED", # accepts ENABLED, DISABLED
|
|
6466
|
+
# router_integration_transit_decryption: {
|
|
6467
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
6468
|
+
# encryption_key_configuration: { # required
|
|
6469
|
+
# secrets_manager: {
|
|
6470
|
+
# secret_arn: "SecretArn", # required
|
|
6471
|
+
# role_arn: "RoleArn", # required
|
|
6472
|
+
# },
|
|
6473
|
+
# automatic: {
|
|
6474
|
+
# },
|
|
6475
|
+
# },
|
|
6476
|
+
# },
|
|
4494
6477
|
# })
|
|
4495
6478
|
#
|
|
4496
6479
|
# @example Response structure
|
|
@@ -4542,6 +6525,11 @@ module Aws::MediaConnect
|
|
|
4542
6525
|
# resp.source.gateway_bridge_source.bridge_arn #=> String
|
|
4543
6526
|
# resp.source.gateway_bridge_source.vpc_interface_attachment.vpc_interface_name #=> String
|
|
4544
6527
|
# resp.source.peer_ip_address #=> String
|
|
6528
|
+
# resp.source.router_integration_state #=> String, one of "ENABLED", "DISABLED"
|
|
6529
|
+
# resp.source.router_integration_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
6530
|
+
# resp.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
6531
|
+
# resp.source.router_integration_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
6532
|
+
# resp.source.connected_router_output_arn #=> String
|
|
4545
6533
|
#
|
|
4546
6534
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowSource AWS API Documentation
|
|
4547
6535
|
#
|
|
@@ -4587,6 +6575,531 @@ module Aws::MediaConnect
|
|
|
4587
6575
|
req.send_request(options)
|
|
4588
6576
|
end
|
|
4589
6577
|
|
|
6578
|
+
# Updates the configuration of an existing router input in AWS Elemental
|
|
6579
|
+
# MediaConnect.
|
|
6580
|
+
#
|
|
6581
|
+
# @option params [required, String] :arn
|
|
6582
|
+
# The Amazon Resource Name (ARN) of the router input that you want to
|
|
6583
|
+
# update.
|
|
6584
|
+
#
|
|
6585
|
+
# @option params [String] :name
|
|
6586
|
+
# The updated name for the router input.
|
|
6587
|
+
#
|
|
6588
|
+
# @option params [Types::RouterInputConfiguration] :configuration
|
|
6589
|
+
# The updated configuration settings for the router input. Changing the
|
|
6590
|
+
# type of the configuration is not supported.
|
|
6591
|
+
#
|
|
6592
|
+
# @option params [Integer] :maximum_bitrate
|
|
6593
|
+
# The updated maximum bitrate for the router input.
|
|
6594
|
+
#
|
|
6595
|
+
# @option params [String] :routing_scope
|
|
6596
|
+
# Specifies whether the router input can be assigned to outputs in
|
|
6597
|
+
# different Regions. REGIONAL (default) - can be assigned only to
|
|
6598
|
+
# outputs in the same Region. GLOBAL - can be assigned to outputs in any
|
|
6599
|
+
# Region.
|
|
6600
|
+
#
|
|
6601
|
+
# @option params [String] :tier
|
|
6602
|
+
# The updated tier level for the router input.
|
|
6603
|
+
#
|
|
6604
|
+
# @option params [Types::RouterInputTransitEncryption] :transit_encryption
|
|
6605
|
+
# The updated transit encryption settings for the router input.
|
|
6606
|
+
#
|
|
6607
|
+
# @option params [Types::MaintenanceConfiguration] :maintenance_configuration
|
|
6608
|
+
# The updated maintenance configuration settings for the router input,
|
|
6609
|
+
# including any changes to preferred maintenance windows and schedules.
|
|
6610
|
+
#
|
|
6611
|
+
# @return [Types::UpdateRouterInputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6612
|
+
#
|
|
6613
|
+
# * {Types::UpdateRouterInputResponse#router_input #router_input} => Types::RouterInput
|
|
6614
|
+
#
|
|
6615
|
+
# @example Request syntax with placeholder values
|
|
6616
|
+
#
|
|
6617
|
+
# resp = client.update_router_input({
|
|
6618
|
+
# arn: "RouterInputArn", # required
|
|
6619
|
+
# name: "UpdateRouterInputRequestNameString",
|
|
6620
|
+
# configuration: {
|
|
6621
|
+
# standard: {
|
|
6622
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
6623
|
+
# protocol_configuration: { # required
|
|
6624
|
+
# rtp: {
|
|
6625
|
+
# port: 1, # required
|
|
6626
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
6627
|
+
# },
|
|
6628
|
+
# rist: {
|
|
6629
|
+
# port: 1, # required
|
|
6630
|
+
# recovery_latency_milliseconds: 1, # required
|
|
6631
|
+
# },
|
|
6632
|
+
# srt_listener: {
|
|
6633
|
+
# port: 1, # required
|
|
6634
|
+
# minimum_latency_milliseconds: 1, # required
|
|
6635
|
+
# decryption_configuration: {
|
|
6636
|
+
# encryption_key: { # required
|
|
6637
|
+
# secret_arn: "SecretArn", # required
|
|
6638
|
+
# role_arn: "RoleArn", # required
|
|
6639
|
+
# },
|
|
6640
|
+
# },
|
|
6641
|
+
# },
|
|
6642
|
+
# srt_caller: {
|
|
6643
|
+
# source_address: "String", # required
|
|
6644
|
+
# source_port: 1, # required
|
|
6645
|
+
# minimum_latency_milliseconds: 1, # required
|
|
6646
|
+
# stream_id: "String",
|
|
6647
|
+
# decryption_configuration: {
|
|
6648
|
+
# encryption_key: { # required
|
|
6649
|
+
# secret_arn: "SecretArn", # required
|
|
6650
|
+
# role_arn: "RoleArn", # required
|
|
6651
|
+
# },
|
|
6652
|
+
# },
|
|
6653
|
+
# },
|
|
6654
|
+
# },
|
|
6655
|
+
# protocol: "RTP", # accepts RTP, RIST, SRT_CALLER, SRT_LISTENER
|
|
6656
|
+
# },
|
|
6657
|
+
# failover: {
|
|
6658
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
6659
|
+
# protocol_configurations: [ # required
|
|
6660
|
+
# {
|
|
6661
|
+
# rtp: {
|
|
6662
|
+
# port: 1, # required
|
|
6663
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
6664
|
+
# },
|
|
6665
|
+
# rist: {
|
|
6666
|
+
# port: 1, # required
|
|
6667
|
+
# recovery_latency_milliseconds: 1, # required
|
|
6668
|
+
# },
|
|
6669
|
+
# srt_listener: {
|
|
6670
|
+
# port: 1, # required
|
|
6671
|
+
# minimum_latency_milliseconds: 1, # required
|
|
6672
|
+
# decryption_configuration: {
|
|
6673
|
+
# encryption_key: { # required
|
|
6674
|
+
# secret_arn: "SecretArn", # required
|
|
6675
|
+
# role_arn: "RoleArn", # required
|
|
6676
|
+
# },
|
|
6677
|
+
# },
|
|
6678
|
+
# },
|
|
6679
|
+
# srt_caller: {
|
|
6680
|
+
# source_address: "String", # required
|
|
6681
|
+
# source_port: 1, # required
|
|
6682
|
+
# minimum_latency_milliseconds: 1, # required
|
|
6683
|
+
# stream_id: "String",
|
|
6684
|
+
# decryption_configuration: {
|
|
6685
|
+
# encryption_key: { # required
|
|
6686
|
+
# secret_arn: "SecretArn", # required
|
|
6687
|
+
# role_arn: "RoleArn", # required
|
|
6688
|
+
# },
|
|
6689
|
+
# },
|
|
6690
|
+
# },
|
|
6691
|
+
# },
|
|
6692
|
+
# ],
|
|
6693
|
+
# source_priority_mode: "NO_PRIORITY", # required, accepts NO_PRIORITY, PRIMARY_SECONDARY
|
|
6694
|
+
# primary_source_index: 1,
|
|
6695
|
+
# },
|
|
6696
|
+
# merge: {
|
|
6697
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
6698
|
+
# protocol_configurations: [ # required
|
|
6699
|
+
# {
|
|
6700
|
+
# rtp: {
|
|
6701
|
+
# port: 1, # required
|
|
6702
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
6703
|
+
# },
|
|
6704
|
+
# rist: {
|
|
6705
|
+
# port: 1, # required
|
|
6706
|
+
# recovery_latency_milliseconds: 1, # required
|
|
6707
|
+
# },
|
|
6708
|
+
# },
|
|
6709
|
+
# ],
|
|
6710
|
+
# merge_recovery_window_milliseconds: 1, # required
|
|
6711
|
+
# },
|
|
6712
|
+
# media_connect_flow: {
|
|
6713
|
+
# flow_arn: "FlowArn",
|
|
6714
|
+
# flow_output_arn: "FlowOutputArn",
|
|
6715
|
+
# source_transit_decryption: { # required
|
|
6716
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
6717
|
+
# encryption_key_configuration: { # required
|
|
6718
|
+
# secrets_manager: {
|
|
6719
|
+
# secret_arn: "SecretArn", # required
|
|
6720
|
+
# role_arn: "RoleArn", # required
|
|
6721
|
+
# },
|
|
6722
|
+
# automatic: {
|
|
6723
|
+
# },
|
|
6724
|
+
# },
|
|
6725
|
+
# },
|
|
6726
|
+
# },
|
|
6727
|
+
# },
|
|
6728
|
+
# maximum_bitrate: 1,
|
|
6729
|
+
# routing_scope: "REGIONAL", # accepts REGIONAL, GLOBAL
|
|
6730
|
+
# tier: "INPUT_100", # accepts INPUT_100, INPUT_50, INPUT_20
|
|
6731
|
+
# transit_encryption: {
|
|
6732
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
6733
|
+
# encryption_key_configuration: { # required
|
|
6734
|
+
# secrets_manager: {
|
|
6735
|
+
# secret_arn: "SecretArn", # required
|
|
6736
|
+
# role_arn: "RoleArn", # required
|
|
6737
|
+
# },
|
|
6738
|
+
# automatic: {
|
|
6739
|
+
# },
|
|
6740
|
+
# },
|
|
6741
|
+
# },
|
|
6742
|
+
# maintenance_configuration: {
|
|
6743
|
+
# preferred_day_time: {
|
|
6744
|
+
# day: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
|
6745
|
+
# time: "String", # required
|
|
6746
|
+
# },
|
|
6747
|
+
# default: {
|
|
6748
|
+
# },
|
|
6749
|
+
# },
|
|
6750
|
+
# })
|
|
6751
|
+
#
|
|
6752
|
+
# @example Response structure
|
|
6753
|
+
#
|
|
6754
|
+
# resp.router_input.name #=> String
|
|
6755
|
+
# resp.router_input.arn #=> String
|
|
6756
|
+
# resp.router_input.id #=> String
|
|
6757
|
+
# resp.router_input.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
6758
|
+
# resp.router_input.input_type #=> String, one of "STANDARD", "FAILOVER", "MERGE", "MEDIACONNECT_FLOW"
|
|
6759
|
+
# resp.router_input.configuration.standard.network_interface_arn #=> String
|
|
6760
|
+
# resp.router_input.configuration.standard.protocol_configuration.rtp.port #=> Integer
|
|
6761
|
+
# resp.router_input.configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
6762
|
+
# resp.router_input.configuration.standard.protocol_configuration.rist.port #=> Integer
|
|
6763
|
+
# resp.router_input.configuration.standard.protocol_configuration.rist.recovery_latency_milliseconds #=> Integer
|
|
6764
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
6765
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
6766
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
6767
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
6768
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.source_address #=> String
|
|
6769
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.source_port #=> Integer
|
|
6770
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
6771
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
6772
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
6773
|
+
# resp.router_input.configuration.standard.protocol_configuration.srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
6774
|
+
# resp.router_input.configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
6775
|
+
# resp.router_input.configuration.failover.network_interface_arn #=> String
|
|
6776
|
+
# resp.router_input.configuration.failover.protocol_configurations #=> Array
|
|
6777
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rtp.port #=> Integer
|
|
6778
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
6779
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rist.port #=> Integer
|
|
6780
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
6781
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.port #=> Integer
|
|
6782
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.minimum_latency_milliseconds #=> Integer
|
|
6783
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.secret_arn #=> String
|
|
6784
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_listener.decryption_configuration.encryption_key.role_arn #=> String
|
|
6785
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.source_address #=> String
|
|
6786
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.source_port #=> Integer
|
|
6787
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.minimum_latency_milliseconds #=> Integer
|
|
6788
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.stream_id #=> String
|
|
6789
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.secret_arn #=> String
|
|
6790
|
+
# resp.router_input.configuration.failover.protocol_configurations[0].srt_caller.decryption_configuration.encryption_key.role_arn #=> String
|
|
6791
|
+
# resp.router_input.configuration.failover.source_priority_mode #=> String, one of "NO_PRIORITY", "PRIMARY_SECONDARY"
|
|
6792
|
+
# resp.router_input.configuration.failover.primary_source_index #=> Integer
|
|
6793
|
+
# resp.router_input.configuration.merge.network_interface_arn #=> String
|
|
6794
|
+
# resp.router_input.configuration.merge.protocol_configurations #=> Array
|
|
6795
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rtp.port #=> Integer
|
|
6796
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
6797
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rist.port #=> Integer
|
|
6798
|
+
# resp.router_input.configuration.merge.protocol_configurations[0].rist.recovery_latency_milliseconds #=> Integer
|
|
6799
|
+
# resp.router_input.configuration.merge.merge_recovery_window_milliseconds #=> Integer
|
|
6800
|
+
# resp.router_input.configuration.media_connect_flow.flow_arn #=> String
|
|
6801
|
+
# resp.router_input.configuration.media_connect_flow.flow_output_arn #=> String
|
|
6802
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
6803
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
6804
|
+
# resp.router_input.configuration.media_connect_flow.source_transit_decryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
6805
|
+
# resp.router_input.routed_outputs #=> Integer
|
|
6806
|
+
# resp.router_input.maximum_routed_outputs #=> Integer
|
|
6807
|
+
# resp.router_input.region_name #=> String
|
|
6808
|
+
# resp.router_input.availability_zone #=> String
|
|
6809
|
+
# resp.router_input.maximum_bitrate #=> Integer
|
|
6810
|
+
# resp.router_input.tier #=> String, one of "INPUT_100", "INPUT_50", "INPUT_20"
|
|
6811
|
+
# resp.router_input.routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
6812
|
+
# resp.router_input.created_at #=> Time
|
|
6813
|
+
# resp.router_input.updated_at #=> Time
|
|
6814
|
+
# resp.router_input.messages #=> Array
|
|
6815
|
+
# resp.router_input.messages[0].code #=> String
|
|
6816
|
+
# resp.router_input.messages[0].message #=> String
|
|
6817
|
+
# resp.router_input.transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
6818
|
+
# resp.router_input.transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
6819
|
+
# resp.router_input.transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
6820
|
+
# resp.router_input.tags #=> Hash
|
|
6821
|
+
# resp.router_input.tags["String"] #=> String
|
|
6822
|
+
# resp.router_input.stream_details.standard.source_ip_address #=> String
|
|
6823
|
+
# resp.router_input.stream_details.failover.source_index_zero_stream_details.source_index #=> Integer
|
|
6824
|
+
# resp.router_input.stream_details.failover.source_index_zero_stream_details.source_ip_address #=> String
|
|
6825
|
+
# resp.router_input.stream_details.failover.source_index_one_stream_details.source_index #=> Integer
|
|
6826
|
+
# resp.router_input.stream_details.failover.source_index_one_stream_details.source_ip_address #=> String
|
|
6827
|
+
# resp.router_input.stream_details.merge.source_index_zero_stream_details.source_index #=> Integer
|
|
6828
|
+
# resp.router_input.stream_details.merge.source_index_zero_stream_details.source_ip_address #=> String
|
|
6829
|
+
# resp.router_input.stream_details.merge.source_index_one_stream_details.source_index #=> Integer
|
|
6830
|
+
# resp.router_input.stream_details.merge.source_index_one_stream_details.source_ip_address #=> String
|
|
6831
|
+
# resp.router_input.ip_address #=> String
|
|
6832
|
+
# resp.router_input.maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
6833
|
+
# resp.router_input.maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
6834
|
+
# resp.router_input.maintenance_configuration.preferred_day_time.time #=> String
|
|
6835
|
+
# resp.router_input.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
6836
|
+
# resp.router_input.maintenance_schedule.window.start #=> Time
|
|
6837
|
+
# resp.router_input.maintenance_schedule.window.end #=> Time
|
|
6838
|
+
# resp.router_input.maintenance_schedule.window.scheduled_time #=> Time
|
|
6839
|
+
#
|
|
6840
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateRouterInput AWS API Documentation
|
|
6841
|
+
#
|
|
6842
|
+
# @overload update_router_input(params = {})
|
|
6843
|
+
# @param [Hash] params ({})
|
|
6844
|
+
def update_router_input(params = {}, options = {})
|
|
6845
|
+
req = build_request(:update_router_input, params)
|
|
6846
|
+
req.send_request(options)
|
|
6847
|
+
end
|
|
6848
|
+
|
|
6849
|
+
# Updates the configuration of an existing router network interface in
|
|
6850
|
+
# AWS Elemental MediaConnect.
|
|
6851
|
+
#
|
|
6852
|
+
# @option params [required, String] :arn
|
|
6853
|
+
# The Amazon Resource Name (ARN) of the router network interface that
|
|
6854
|
+
# you want to update.
|
|
6855
|
+
#
|
|
6856
|
+
# @option params [String] :name
|
|
6857
|
+
# The updated name for the router network interface.
|
|
6858
|
+
#
|
|
6859
|
+
# @option params [Types::RouterNetworkInterfaceConfiguration] :configuration
|
|
6860
|
+
# The updated configuration settings for the router network interface.
|
|
6861
|
+
# Changing the type of the configuration is not supported.
|
|
6862
|
+
#
|
|
6863
|
+
# @return [Types::UpdateRouterNetworkInterfaceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6864
|
+
#
|
|
6865
|
+
# * {Types::UpdateRouterNetworkInterfaceResponse#router_network_interface #router_network_interface} => Types::RouterNetworkInterface
|
|
6866
|
+
#
|
|
6867
|
+
# @example Request syntax with placeholder values
|
|
6868
|
+
#
|
|
6869
|
+
# resp = client.update_router_network_interface({
|
|
6870
|
+
# arn: "RouterNetworkInterfaceArn", # required
|
|
6871
|
+
# name: "UpdateRouterNetworkInterfaceRequestNameString",
|
|
6872
|
+
# configuration: {
|
|
6873
|
+
# public: {
|
|
6874
|
+
# allow_rules: [ # required
|
|
6875
|
+
# {
|
|
6876
|
+
# cidr: "String", # required
|
|
6877
|
+
# },
|
|
6878
|
+
# ],
|
|
6879
|
+
# },
|
|
6880
|
+
# vpc: {
|
|
6881
|
+
# security_group_ids: ["String"], # required
|
|
6882
|
+
# subnet_id: "String", # required
|
|
6883
|
+
# },
|
|
6884
|
+
# },
|
|
6885
|
+
# })
|
|
6886
|
+
#
|
|
6887
|
+
# @example Response structure
|
|
6888
|
+
#
|
|
6889
|
+
# resp.router_network_interface.name #=> String
|
|
6890
|
+
# resp.router_network_interface.arn #=> String
|
|
6891
|
+
# resp.router_network_interface.id #=> String
|
|
6892
|
+
# resp.router_network_interface.state #=> String, one of "CREATING", "ACTIVE", "UPDATING", "DELETING", "ERROR", "RECOVERING"
|
|
6893
|
+
# resp.router_network_interface.network_interface_type #=> String, one of "PUBLIC", "VPC"
|
|
6894
|
+
# resp.router_network_interface.configuration.public.allow_rules #=> Array
|
|
6895
|
+
# resp.router_network_interface.configuration.public.allow_rules[0].cidr #=> String
|
|
6896
|
+
# resp.router_network_interface.configuration.vpc.security_group_ids #=> Array
|
|
6897
|
+
# resp.router_network_interface.configuration.vpc.security_group_ids[0] #=> String
|
|
6898
|
+
# resp.router_network_interface.configuration.vpc.subnet_id #=> String
|
|
6899
|
+
# resp.router_network_interface.associated_output_count #=> Integer
|
|
6900
|
+
# resp.router_network_interface.associated_input_count #=> Integer
|
|
6901
|
+
# resp.router_network_interface.region_name #=> String
|
|
6902
|
+
# resp.router_network_interface.created_at #=> Time
|
|
6903
|
+
# resp.router_network_interface.updated_at #=> Time
|
|
6904
|
+
# resp.router_network_interface.tags #=> Hash
|
|
6905
|
+
# resp.router_network_interface.tags["String"] #=> String
|
|
6906
|
+
#
|
|
6907
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateRouterNetworkInterface AWS API Documentation
|
|
6908
|
+
#
|
|
6909
|
+
# @overload update_router_network_interface(params = {})
|
|
6910
|
+
# @param [Hash] params ({})
|
|
6911
|
+
def update_router_network_interface(params = {}, options = {})
|
|
6912
|
+
req = build_request(:update_router_network_interface, params)
|
|
6913
|
+
req.send_request(options)
|
|
6914
|
+
end
|
|
6915
|
+
|
|
6916
|
+
# Updates the configuration of an existing router output in AWS
|
|
6917
|
+
# Elemental MediaConnect.
|
|
6918
|
+
#
|
|
6919
|
+
# @option params [required, String] :arn
|
|
6920
|
+
# The Amazon Resource Name (ARN) of the router output that you want to
|
|
6921
|
+
# update.
|
|
6922
|
+
#
|
|
6923
|
+
# @option params [String] :name
|
|
6924
|
+
# The updated name for the router output.
|
|
6925
|
+
#
|
|
6926
|
+
# @option params [Types::RouterOutputConfiguration] :configuration
|
|
6927
|
+
# The updated configuration settings for the router output. Changing the
|
|
6928
|
+
# type of the configuration is not supported.
|
|
6929
|
+
#
|
|
6930
|
+
# @option params [Integer] :maximum_bitrate
|
|
6931
|
+
# The updated maximum bitrate for the router output.
|
|
6932
|
+
#
|
|
6933
|
+
# @option params [String] :routing_scope
|
|
6934
|
+
# Specifies whether the router output can take inputs that are in
|
|
6935
|
+
# different Regions. REGIONAL (default) - can only take inputs from same
|
|
6936
|
+
# Region. GLOBAL - can take inputs from any Region.
|
|
6937
|
+
#
|
|
6938
|
+
# @option params [String] :tier
|
|
6939
|
+
# The updated tier level for the router output.
|
|
6940
|
+
#
|
|
6941
|
+
# @option params [Types::MaintenanceConfiguration] :maintenance_configuration
|
|
6942
|
+
# The updated maintenance configuration settings for the router output,
|
|
6943
|
+
# including any changes to preferred maintenance windows and schedules.
|
|
6944
|
+
#
|
|
6945
|
+
# @return [Types::UpdateRouterOutputResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6946
|
+
#
|
|
6947
|
+
# * {Types::UpdateRouterOutputResponse#router_output #router_output} => Types::RouterOutput
|
|
6948
|
+
#
|
|
6949
|
+
# @example Request syntax with placeholder values
|
|
6950
|
+
#
|
|
6951
|
+
# resp = client.update_router_output({
|
|
6952
|
+
# arn: "RouterOutputArn", # required
|
|
6953
|
+
# name: "UpdateRouterOutputRequestNameString",
|
|
6954
|
+
# configuration: {
|
|
6955
|
+
# standard: {
|
|
6956
|
+
# network_interface_arn: "RouterNetworkInterfaceArn", # required
|
|
6957
|
+
# protocol_configuration: { # required
|
|
6958
|
+
# rtp: {
|
|
6959
|
+
# destination_address: "String", # required
|
|
6960
|
+
# destination_port: 1, # required
|
|
6961
|
+
# forward_error_correction: "ENABLED", # accepts ENABLED, DISABLED
|
|
6962
|
+
# },
|
|
6963
|
+
# rist: {
|
|
6964
|
+
# destination_address: "String", # required
|
|
6965
|
+
# destination_port: 1, # required
|
|
6966
|
+
# },
|
|
6967
|
+
# srt_listener: {
|
|
6968
|
+
# port: 1, # required
|
|
6969
|
+
# minimum_latency_milliseconds: 1, # required
|
|
6970
|
+
# encryption_configuration: {
|
|
6971
|
+
# encryption_key: { # required
|
|
6972
|
+
# secret_arn: "SecretArn", # required
|
|
6973
|
+
# role_arn: "RoleArn", # required
|
|
6974
|
+
# },
|
|
6975
|
+
# },
|
|
6976
|
+
# },
|
|
6977
|
+
# srt_caller: {
|
|
6978
|
+
# destination_address: "String", # required
|
|
6979
|
+
# destination_port: 1, # required
|
|
6980
|
+
# minimum_latency_milliseconds: 1, # required
|
|
6981
|
+
# stream_id: "String",
|
|
6982
|
+
# encryption_configuration: {
|
|
6983
|
+
# encryption_key: { # required
|
|
6984
|
+
# secret_arn: "SecretArn", # required
|
|
6985
|
+
# role_arn: "RoleArn", # required
|
|
6986
|
+
# },
|
|
6987
|
+
# },
|
|
6988
|
+
# },
|
|
6989
|
+
# },
|
|
6990
|
+
# protocol: "RTP", # accepts RTP, RIST, SRT_CALLER, SRT_LISTENER
|
|
6991
|
+
# },
|
|
6992
|
+
# media_connect_flow: {
|
|
6993
|
+
# flow_arn: "FlowArn",
|
|
6994
|
+
# flow_source_arn: "FlowSourceArn",
|
|
6995
|
+
# destination_transit_encryption: { # required
|
|
6996
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
6997
|
+
# encryption_key_configuration: { # required
|
|
6998
|
+
# secrets_manager: {
|
|
6999
|
+
# secret_arn: "SecretArn", # required
|
|
7000
|
+
# role_arn: "RoleArn", # required
|
|
7001
|
+
# },
|
|
7002
|
+
# automatic: {
|
|
7003
|
+
# },
|
|
7004
|
+
# },
|
|
7005
|
+
# },
|
|
7006
|
+
# },
|
|
7007
|
+
# media_live_input: {
|
|
7008
|
+
# media_live_input_arn: "MediaLiveInputArn",
|
|
7009
|
+
# media_live_pipeline_id: "PIPELINE_0", # accepts PIPELINE_0, PIPELINE_1
|
|
7010
|
+
# destination_transit_encryption: { # required
|
|
7011
|
+
# encryption_key_type: "SECRETS_MANAGER", # accepts SECRETS_MANAGER, AUTOMATIC
|
|
7012
|
+
# encryption_key_configuration: { # required
|
|
7013
|
+
# secrets_manager: {
|
|
7014
|
+
# secret_arn: "SecretArn", # required
|
|
7015
|
+
# role_arn: "RoleArn", # required
|
|
7016
|
+
# },
|
|
7017
|
+
# automatic: {
|
|
7018
|
+
# },
|
|
7019
|
+
# },
|
|
7020
|
+
# },
|
|
7021
|
+
# },
|
|
7022
|
+
# },
|
|
7023
|
+
# maximum_bitrate: 1,
|
|
7024
|
+
# routing_scope: "REGIONAL", # accepts REGIONAL, GLOBAL
|
|
7025
|
+
# tier: "OUTPUT_100", # accepts OUTPUT_100, OUTPUT_50, OUTPUT_20
|
|
7026
|
+
# maintenance_configuration: {
|
|
7027
|
+
# preferred_day_time: {
|
|
7028
|
+
# day: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
|
7029
|
+
# time: "String", # required
|
|
7030
|
+
# },
|
|
7031
|
+
# default: {
|
|
7032
|
+
# },
|
|
7033
|
+
# },
|
|
7034
|
+
# })
|
|
7035
|
+
#
|
|
7036
|
+
# @example Response structure
|
|
7037
|
+
#
|
|
7038
|
+
# resp.router_output.name #=> String
|
|
7039
|
+
# resp.router_output.arn #=> String
|
|
7040
|
+
# resp.router_output.id #=> String
|
|
7041
|
+
# resp.router_output.state #=> String, one of "CREATING", "STANDBY", "STARTING", "ACTIVE", "STOPPING", "DELETING", "UPDATING", "ERROR", "RECOVERING", "MIGRATING"
|
|
7042
|
+
# resp.router_output.output_type #=> String, one of "STANDARD", "MEDIACONNECT_FLOW", "MEDIALIVE_INPUT"
|
|
7043
|
+
# resp.router_output.configuration.standard.network_interface_arn #=> String
|
|
7044
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.destination_address #=> String
|
|
7045
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.destination_port #=> Integer
|
|
7046
|
+
# resp.router_output.configuration.standard.protocol_configuration.rtp.forward_error_correction #=> String, one of "ENABLED", "DISABLED"
|
|
7047
|
+
# resp.router_output.configuration.standard.protocol_configuration.rist.destination_address #=> String
|
|
7048
|
+
# resp.router_output.configuration.standard.protocol_configuration.rist.destination_port #=> Integer
|
|
7049
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.port #=> Integer
|
|
7050
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.minimum_latency_milliseconds #=> Integer
|
|
7051
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.secret_arn #=> String
|
|
7052
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_listener.encryption_configuration.encryption_key.role_arn #=> String
|
|
7053
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.destination_address #=> String
|
|
7054
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.destination_port #=> Integer
|
|
7055
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.minimum_latency_milliseconds #=> Integer
|
|
7056
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.stream_id #=> String
|
|
7057
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.secret_arn #=> String
|
|
7058
|
+
# resp.router_output.configuration.standard.protocol_configuration.srt_caller.encryption_configuration.encryption_key.role_arn #=> String
|
|
7059
|
+
# resp.router_output.configuration.standard.protocol #=> String, one of "RTP", "RIST", "SRT_CALLER", "SRT_LISTENER"
|
|
7060
|
+
# resp.router_output.configuration.media_connect_flow.flow_arn #=> String
|
|
7061
|
+
# resp.router_output.configuration.media_connect_flow.flow_source_arn #=> String
|
|
7062
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
7063
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
7064
|
+
# resp.router_output.configuration.media_connect_flow.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
7065
|
+
# resp.router_output.configuration.media_live_input.media_live_input_arn #=> String
|
|
7066
|
+
# resp.router_output.configuration.media_live_input.media_live_pipeline_id #=> String, one of "PIPELINE_0", "PIPELINE_1"
|
|
7067
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_type #=> String, one of "SECRETS_MANAGER", "AUTOMATIC"
|
|
7068
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.secret_arn #=> String
|
|
7069
|
+
# resp.router_output.configuration.media_live_input.destination_transit_encryption.encryption_key_configuration.secrets_manager.role_arn #=> String
|
|
7070
|
+
# resp.router_output.routed_state #=> String, one of "ROUTED", "ROUTING", "UNROUTED"
|
|
7071
|
+
# resp.router_output.region_name #=> String
|
|
7072
|
+
# resp.router_output.availability_zone #=> String
|
|
7073
|
+
# resp.router_output.maximum_bitrate #=> Integer
|
|
7074
|
+
# resp.router_output.routing_scope #=> String, one of "REGIONAL", "GLOBAL"
|
|
7075
|
+
# resp.router_output.tier #=> String, one of "OUTPUT_100", "OUTPUT_50", "OUTPUT_20"
|
|
7076
|
+
# resp.router_output.created_at #=> Time
|
|
7077
|
+
# resp.router_output.updated_at #=> Time
|
|
7078
|
+
# resp.router_output.messages #=> Array
|
|
7079
|
+
# resp.router_output.messages[0].code #=> String
|
|
7080
|
+
# resp.router_output.messages[0].message #=> String
|
|
7081
|
+
# resp.router_output.tags #=> Hash
|
|
7082
|
+
# resp.router_output.tags["String"] #=> String
|
|
7083
|
+
# resp.router_output.stream_details.standard.destination_ip_address #=> String
|
|
7084
|
+
# resp.router_output.ip_address #=> String
|
|
7085
|
+
# resp.router_output.routed_input_arn #=> String
|
|
7086
|
+
# resp.router_output.maintenance_type #=> String, one of "PREFERRED_DAY_TIME", "DEFAULT"
|
|
7087
|
+
# resp.router_output.maintenance_configuration.preferred_day_time.day #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
|
7088
|
+
# resp.router_output.maintenance_configuration.preferred_day_time.time #=> String
|
|
7089
|
+
# resp.router_output.maintenance_schedule_type #=> String, one of "WINDOW"
|
|
7090
|
+
# resp.router_output.maintenance_schedule.window.start #=> Time
|
|
7091
|
+
# resp.router_output.maintenance_schedule.window.end #=> Time
|
|
7092
|
+
# resp.router_output.maintenance_schedule.window.scheduled_time #=> Time
|
|
7093
|
+
#
|
|
7094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateRouterOutput AWS API Documentation
|
|
7095
|
+
#
|
|
7096
|
+
# @overload update_router_output(params = {})
|
|
7097
|
+
# @param [Hash] params ({})
|
|
7098
|
+
def update_router_output(params = {}, options = {})
|
|
7099
|
+
req = build_request(:update_router_output, params)
|
|
7100
|
+
req.send_request(options)
|
|
7101
|
+
end
|
|
7102
|
+
|
|
4590
7103
|
# @!endgroup
|
|
4591
7104
|
|
|
4592
7105
|
# @param params ({})
|
|
@@ -4605,7 +7118,7 @@ module Aws::MediaConnect
|
|
|
4605
7118
|
tracer: tracer
|
|
4606
7119
|
)
|
|
4607
7120
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
|
4608
|
-
context[:gem_version] = '1.
|
|
7121
|
+
context[:gem_version] = '1.91.0'
|
|
4609
7122
|
Seahorse::Client::Request.new(handlers, context)
|
|
4610
7123
|
end
|
|
4611
7124
|
|
|
@@ -4671,11 +7184,18 @@ module Aws::MediaConnect
|
|
|
4671
7184
|
# The following table lists the valid waiter names, the operations they call,
|
|
4672
7185
|
# and the default `:delay` and `:max_attempts` values.
|
|
4673
7186
|
#
|
|
4674
|
-
# | waiter_name
|
|
4675
|
-
# |
|
|
4676
|
-
# | flow_active
|
|
4677
|
-
# | flow_deleted
|
|
4678
|
-
# | flow_standby
|
|
7187
|
+
# | waiter_name | params | :delay | :max_attempts |
|
|
7188
|
+
# | -------------- | -------------------------- | -------- | ------------- |
|
|
7189
|
+
# | flow_active | {Client#describe_flow} | 3 | 40 |
|
|
7190
|
+
# | flow_deleted | {Client#describe_flow} | 3 | 40 |
|
|
7191
|
+
# | flow_standby | {Client#describe_flow} | 3 | 40 |
|
|
7192
|
+
# | input_active | {Client#get_router_input} | 3 | 40 |
|
|
7193
|
+
# | input_deleted | {Client#get_router_input} | 3 | 40 |
|
|
7194
|
+
# | input_standby | {Client#get_router_input} | 3 | 40 |
|
|
7195
|
+
# | output_active | {Client#get_router_output} | 3 | 40 |
|
|
7196
|
+
# | output_deleted | {Client#get_router_output} | 3 | 40 |
|
|
7197
|
+
# | output_routed | {Client#get_router_output} | 3 | 40 |
|
|
7198
|
+
# | output_standby | {Client#get_router_output} | 3 | 40 |
|
|
4679
7199
|
#
|
|
4680
7200
|
# @raise [Errors::FailureStateError] Raised when the waiter terminates
|
|
4681
7201
|
# because the waiter has entered a state that it will not transition
|
|
@@ -4728,7 +7248,14 @@ module Aws::MediaConnect
|
|
|
4728
7248
|
{
|
|
4729
7249
|
flow_active: Waiters::FlowActive,
|
|
4730
7250
|
flow_deleted: Waiters::FlowDeleted,
|
|
4731
|
-
flow_standby: Waiters::FlowStandby
|
|
7251
|
+
flow_standby: Waiters::FlowStandby,
|
|
7252
|
+
input_active: Waiters::InputActive,
|
|
7253
|
+
input_deleted: Waiters::InputDeleted,
|
|
7254
|
+
input_standby: Waiters::InputStandby,
|
|
7255
|
+
output_active: Waiters::OutputActive,
|
|
7256
|
+
output_deleted: Waiters::OutputDeleted,
|
|
7257
|
+
output_routed: Waiters::OutputRouted,
|
|
7258
|
+
output_standby: Waiters::OutputStandby
|
|
4732
7259
|
}
|
|
4733
7260
|
end
|
|
4734
7261
|
|