aws-sdk-kinesisvideo 1.41.0 → 1.43.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kinesisvideo/client.rb +213 -21
- data/lib/aws-sdk-kinesisvideo/client_api.rb +131 -0
- data/lib/aws-sdk-kinesisvideo/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-kinesisvideo/endpoint_provider.rb +112 -0
- data/lib/aws-sdk-kinesisvideo/endpoints.rb +337 -0
- data/lib/aws-sdk-kinesisvideo/errors.rb +16 -0
- data/lib/aws-sdk-kinesisvideo/plugins/endpoints.rb +114 -0
- data/lib/aws-sdk-kinesisvideo/types.rb +404 -11
- data/lib/aws-sdk-kinesisvideo.rb +5 -1
- metadata +8 -4
@@ -24,7 +24,7 @@ module Aws::KinesisVideo
|
|
24
24
|
end
|
25
25
|
|
26
26
|
# You have reached the maximum limit of active signaling channels for
|
27
|
-
# this
|
27
|
+
# this Amazon Web Services account in this region.
|
28
28
|
#
|
29
29
|
# @!attribute [rw] message
|
30
30
|
# @return [String]
|
@@ -147,7 +147,7 @@ module Aws::KinesisVideo
|
|
147
147
|
#
|
148
148
|
# {
|
149
149
|
# channel_name: "ChannelName", # required
|
150
|
-
# channel_type: "SINGLE_MASTER", # accepts SINGLE_MASTER
|
150
|
+
# channel_type: "SINGLE_MASTER", # accepts SINGLE_MASTER, FULL_MESH
|
151
151
|
# single_master_configuration: {
|
152
152
|
# message_ttl_seconds: 1,
|
153
153
|
# },
|
@@ -161,7 +161,8 @@ module Aws::KinesisVideo
|
|
161
161
|
#
|
162
162
|
# @!attribute [rw] channel_name
|
163
163
|
# A name for the signaling channel that you are creating. It must be
|
164
|
-
# unique for each
|
164
|
+
# unique for each Amazon Web Services account and Amazon Web Services
|
165
|
+
# Region.
|
165
166
|
# @return [String]
|
166
167
|
#
|
167
168
|
# @!attribute [rw] channel_type
|
@@ -251,8 +252,8 @@ module Aws::KinesisVideo
|
|
251
252
|
# @return [String]
|
252
253
|
#
|
253
254
|
# @!attribute [rw] kms_key_id
|
254
|
-
# The ID of the
|
255
|
-
#
|
255
|
+
# The ID of the Key Management Service (KMS) key that you want Kinesis
|
256
|
+
# Video Streams to use to encrypt stream data.
|
256
257
|
#
|
257
258
|
# If no key ID is specified, the default, Kinesis Video-managed key
|
258
259
|
# (`aws/kinesisvideo`) is used.
|
@@ -379,6 +380,92 @@ module Aws::KinesisVideo
|
|
379
380
|
#
|
380
381
|
class DeleteStreamOutput < Aws::EmptyStructure; end
|
381
382
|
|
383
|
+
# @note When making an API call, you may pass DescribeImageGenerationConfigurationInput
|
384
|
+
# data as a hash:
|
385
|
+
#
|
386
|
+
# {
|
387
|
+
# stream_name: "StreamName",
|
388
|
+
# stream_arn: "ResourceARN",
|
389
|
+
# }
|
390
|
+
#
|
391
|
+
# @!attribute [rw] stream_name
|
392
|
+
# The name of the stream from which to retrieve the image generation
|
393
|
+
# configuration. You must specify either the `StreamName` or the
|
394
|
+
# `StreamARN`.
|
395
|
+
# @return [String]
|
396
|
+
#
|
397
|
+
# @!attribute [rw] stream_arn
|
398
|
+
# The Amazon Resource Name (ARN) of the Kinesis video stream from
|
399
|
+
# which to retrieve the image generation configuration. You must
|
400
|
+
# specify either the `StreamName` or the `StreamARN`.
|
401
|
+
# @return [String]
|
402
|
+
#
|
403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/DescribeImageGenerationConfigurationInput AWS API Documentation
|
404
|
+
#
|
405
|
+
class DescribeImageGenerationConfigurationInput < Struct.new(
|
406
|
+
:stream_name,
|
407
|
+
:stream_arn)
|
408
|
+
SENSITIVE = []
|
409
|
+
include Aws::Structure
|
410
|
+
end
|
411
|
+
|
412
|
+
# @!attribute [rw] image_generation_configuration
|
413
|
+
# The structure that contains the information required for the Kinesis
|
414
|
+
# video stream (KVS) images delivery. If this structure is null, the
|
415
|
+
# configuration will be deleted from the stream.
|
416
|
+
# @return [Types::ImageGenerationConfiguration]
|
417
|
+
#
|
418
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/DescribeImageGenerationConfigurationOutput AWS API Documentation
|
419
|
+
#
|
420
|
+
class DescribeImageGenerationConfigurationOutput < Struct.new(
|
421
|
+
:image_generation_configuration)
|
422
|
+
SENSITIVE = []
|
423
|
+
include Aws::Structure
|
424
|
+
end
|
425
|
+
|
426
|
+
# @note When making an API call, you may pass DescribeNotificationConfigurationInput
|
427
|
+
# data as a hash:
|
428
|
+
#
|
429
|
+
# {
|
430
|
+
# stream_name: "StreamName",
|
431
|
+
# stream_arn: "ResourceARN",
|
432
|
+
# }
|
433
|
+
#
|
434
|
+
# @!attribute [rw] stream_name
|
435
|
+
# The name of the stream from which to retrieve the notification
|
436
|
+
# configuration. You must specify either the `StreamName` or the
|
437
|
+
# `StreamARN`.
|
438
|
+
# @return [String]
|
439
|
+
#
|
440
|
+
# @!attribute [rw] stream_arn
|
441
|
+
# The Amazon Resource Name (ARN) of the Kinesis video stream from
|
442
|
+
# where you want to retrieve the notification configuration. You must
|
443
|
+
# specify either the `StreamName` or the StreamARN.
|
444
|
+
# @return [String]
|
445
|
+
#
|
446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/DescribeNotificationConfigurationInput AWS API Documentation
|
447
|
+
#
|
448
|
+
class DescribeNotificationConfigurationInput < Struct.new(
|
449
|
+
:stream_name,
|
450
|
+
:stream_arn)
|
451
|
+
SENSITIVE = []
|
452
|
+
include Aws::Structure
|
453
|
+
end
|
454
|
+
|
455
|
+
# @!attribute [rw] notification_configuration
|
456
|
+
# The structure that contains the information required for
|
457
|
+
# notifications. If the structure is null, the configuration will be
|
458
|
+
# deleted from the stream.
|
459
|
+
# @return [Types::NotificationConfiguration]
|
460
|
+
#
|
461
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/DescribeNotificationConfigurationOutput AWS API Documentation
|
462
|
+
#
|
463
|
+
class DescribeNotificationConfigurationOutput < Struct.new(
|
464
|
+
:notification_configuration)
|
465
|
+
SENSITIVE = []
|
466
|
+
include Aws::Structure
|
467
|
+
end
|
468
|
+
|
382
469
|
# @note When making an API call, you may pass DescribeSignalingChannelInput
|
383
470
|
# data as a hash:
|
384
471
|
#
|
@@ -473,7 +560,7 @@ module Aws::KinesisVideo
|
|
473
560
|
# {
|
474
561
|
# stream_name: "StreamName",
|
475
562
|
# stream_arn: "ResourceARN",
|
476
|
-
# api_name: "PUT_MEDIA", # required, accepts PUT_MEDIA, GET_MEDIA, LIST_FRAGMENTS, GET_MEDIA_FOR_FRAGMENT_LIST, GET_HLS_STREAMING_SESSION_URL, GET_DASH_STREAMING_SESSION_URL, GET_CLIP
|
563
|
+
# api_name: "PUT_MEDIA", # required, accepts PUT_MEDIA, GET_MEDIA, LIST_FRAGMENTS, GET_MEDIA_FOR_FRAGMENT_LIST, GET_HLS_STREAMING_SESSION_URL, GET_DASH_STREAMING_SESSION_URL, GET_CLIP, GET_IMAGES
|
477
564
|
# }
|
478
565
|
#
|
479
566
|
# @!attribute [rw] stream_name
|
@@ -556,6 +643,135 @@ module Aws::KinesisVideo
|
|
556
643
|
include Aws::Structure
|
557
644
|
end
|
558
645
|
|
646
|
+
# The structure that contains the information required for the KVS
|
647
|
+
# images delivery. If null, the configuration will be deleted from the
|
648
|
+
# stream.
|
649
|
+
#
|
650
|
+
# @note When making an API call, you may pass ImageGenerationConfiguration
|
651
|
+
# data as a hash:
|
652
|
+
#
|
653
|
+
# {
|
654
|
+
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
655
|
+
# image_selector_type: "SERVER_TIMESTAMP", # required, accepts SERVER_TIMESTAMP, PRODUCER_TIMESTAMP
|
656
|
+
# destination_config: { # required
|
657
|
+
# uri: "DestinationUri", # required
|
658
|
+
# destination_region: "DestinationRegion", # required
|
659
|
+
# },
|
660
|
+
# sampling_interval: 1, # required
|
661
|
+
# format: "JPEG", # required, accepts JPEG, PNG
|
662
|
+
# format_config: {
|
663
|
+
# "JPEGQuality" => "FormatConfigValue",
|
664
|
+
# },
|
665
|
+
# width_pixels: 1,
|
666
|
+
# height_pixels: 1,
|
667
|
+
# }
|
668
|
+
#
|
669
|
+
# @!attribute [rw] status
|
670
|
+
# Indicates whether the `ContinuousImageGenerationConfigurations` API
|
671
|
+
# is enabled or disabled.
|
672
|
+
# @return [String]
|
673
|
+
#
|
674
|
+
# @!attribute [rw] image_selector_type
|
675
|
+
# The origin of the Server or Producer timestamps to use to generate
|
676
|
+
# the images.
|
677
|
+
# @return [String]
|
678
|
+
#
|
679
|
+
# @!attribute [rw] destination_config
|
680
|
+
# The structure that contains the information required to deliver
|
681
|
+
# images to a customer.
|
682
|
+
# @return [Types::ImageGenerationDestinationConfig]
|
683
|
+
#
|
684
|
+
# @!attribute [rw] sampling_interval
|
685
|
+
# The time interval in milliseconds (ms) at which the images need to
|
686
|
+
# be generated from the stream. The minimum value that can be provided
|
687
|
+
# is 33 ms, because a camera that generates content at 30 FPS would
|
688
|
+
# create a frame every 33.3 ms. If the timestamp range is less than
|
689
|
+
# the sampling interval, the Image from the `StartTimestamp` will be
|
690
|
+
# returned if available.
|
691
|
+
# @return [Integer]
|
692
|
+
#
|
693
|
+
# @!attribute [rw] format
|
694
|
+
# The accepted image format.
|
695
|
+
# @return [String]
|
696
|
+
#
|
697
|
+
# @!attribute [rw] format_config
|
698
|
+
# The list of a key-value pair structure that contains extra
|
699
|
+
# parameters that can be applied when the image is generated. The
|
700
|
+
# `FormatConfig` key is the `JPEGQuality`, which indicates the JPEG
|
701
|
+
# quality key to be used to generate the image. The `FormatConfig`
|
702
|
+
# value accepts ints from 1 to 100. If the value is 1, the image will
|
703
|
+
# be generated with less quality and the best compression. If the
|
704
|
+
# value is 100, the image will be generated with the best quality and
|
705
|
+
# less compression. If no value is provided, the default value of the
|
706
|
+
# `JPEGQuality` key will be set to 80.
|
707
|
+
# @return [Hash<String,String>]
|
708
|
+
#
|
709
|
+
# @!attribute [rw] width_pixels
|
710
|
+
# The width of the output image that is used in conjunction with the
|
711
|
+
# `HeightPixels` parameter. When both `WidthPixels` and `HeightPixels`
|
712
|
+
# parameters are provided, the image will be stretched to fit the
|
713
|
+
# specified aspect ratio. If only the `WidthPixels` parameter is
|
714
|
+
# provided, its original aspect ratio will be used to calculate the
|
715
|
+
# `HeightPixels` ratio. If neither parameter is provided, the original
|
716
|
+
# image size will be returned.
|
717
|
+
# @return [Integer]
|
718
|
+
#
|
719
|
+
# @!attribute [rw] height_pixels
|
720
|
+
# The height of the output image that is used in conjunction with the
|
721
|
+
# `WidthPixels` parameter. When both `HeightPixels` and `WidthPixels`
|
722
|
+
# parameters are provided, the image will be stretched to fit the
|
723
|
+
# specified aspect ratio. If only the `HeightPixels` parameter is
|
724
|
+
# provided, its original aspect ratio will be used to calculate the
|
725
|
+
# `WidthPixels` ratio. If neither parameter is provided, the original
|
726
|
+
# image size will be returned.
|
727
|
+
# @return [Integer]
|
728
|
+
#
|
729
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/ImageGenerationConfiguration AWS API Documentation
|
730
|
+
#
|
731
|
+
class ImageGenerationConfiguration < Struct.new(
|
732
|
+
:status,
|
733
|
+
:image_selector_type,
|
734
|
+
:destination_config,
|
735
|
+
:sampling_interval,
|
736
|
+
:format,
|
737
|
+
:format_config,
|
738
|
+
:width_pixels,
|
739
|
+
:height_pixels)
|
740
|
+
SENSITIVE = []
|
741
|
+
include Aws::Structure
|
742
|
+
end
|
743
|
+
|
744
|
+
# The structure that contains the information required to deliver images
|
745
|
+
# to a customer.
|
746
|
+
#
|
747
|
+
# @note When making an API call, you may pass ImageGenerationDestinationConfig
|
748
|
+
# data as a hash:
|
749
|
+
#
|
750
|
+
# {
|
751
|
+
# uri: "DestinationUri", # required
|
752
|
+
# destination_region: "DestinationRegion", # required
|
753
|
+
# }
|
754
|
+
#
|
755
|
+
# @!attribute [rw] uri
|
756
|
+
# The Uniform Resource Idenifier (URI) that identifies where the
|
757
|
+
# images will be delivered.
|
758
|
+
# @return [String]
|
759
|
+
#
|
760
|
+
# @!attribute [rw] destination_region
|
761
|
+
# The AWS Region of the S3 bucket where images will be delivered. This
|
762
|
+
# `DestinationRegion` must match the Region where the stream is
|
763
|
+
# located.
|
764
|
+
# @return [String]
|
765
|
+
#
|
766
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/ImageGenerationDestinationConfig AWS API Documentation
|
767
|
+
#
|
768
|
+
class ImageGenerationDestinationConfig < Struct.new(
|
769
|
+
:uri,
|
770
|
+
:destination_region)
|
771
|
+
SENSITIVE = []
|
772
|
+
include Aws::Structure
|
773
|
+
end
|
774
|
+
|
559
775
|
# The value for this input parameter is invalid.
|
560
776
|
#
|
561
777
|
# @!attribute [rw] message
|
@@ -816,6 +1032,19 @@ module Aws::KinesisVideo
|
|
816
1032
|
include Aws::Structure
|
817
1033
|
end
|
818
1034
|
|
1035
|
+
# The Stream data retention in hours is equal to zero.
|
1036
|
+
#
|
1037
|
+
# @!attribute [rw] message
|
1038
|
+
# @return [String]
|
1039
|
+
#
|
1040
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/NoDataRetentionException AWS API Documentation
|
1041
|
+
#
|
1042
|
+
class NoDataRetentionException < Struct.new(
|
1043
|
+
:message)
|
1044
|
+
SENSITIVE = []
|
1045
|
+
include Aws::Structure
|
1046
|
+
end
|
1047
|
+
|
819
1048
|
# The caller is not authorized to perform this operation.
|
820
1049
|
#
|
821
1050
|
# @!attribute [rw] message
|
@@ -829,6 +1058,61 @@ module Aws::KinesisVideo
|
|
829
1058
|
include Aws::Structure
|
830
1059
|
end
|
831
1060
|
|
1061
|
+
# The structure that contains the notification information for the KVS
|
1062
|
+
# images delivery. If this parameter is null, the configuration will be
|
1063
|
+
# deleted from the stream.
|
1064
|
+
#
|
1065
|
+
# @note When making an API call, you may pass NotificationConfiguration
|
1066
|
+
# data as a hash:
|
1067
|
+
#
|
1068
|
+
# {
|
1069
|
+
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
1070
|
+
# destination_config: { # required
|
1071
|
+
# uri: "DestinationUri", # required
|
1072
|
+
# },
|
1073
|
+
# }
|
1074
|
+
#
|
1075
|
+
# @!attribute [rw] status
|
1076
|
+
# Indicates if a notification configuration is enabled or disabled.
|
1077
|
+
# @return [String]
|
1078
|
+
#
|
1079
|
+
# @!attribute [rw] destination_config
|
1080
|
+
# The destination information required to deliver a notification to a
|
1081
|
+
# customer.
|
1082
|
+
# @return [Types::NotificationDestinationConfig]
|
1083
|
+
#
|
1084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/NotificationConfiguration AWS API Documentation
|
1085
|
+
#
|
1086
|
+
class NotificationConfiguration < Struct.new(
|
1087
|
+
:status,
|
1088
|
+
:destination_config)
|
1089
|
+
SENSITIVE = []
|
1090
|
+
include Aws::Structure
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
# The structure that contains the information required to deliver a
|
1094
|
+
# notification to a customer.
|
1095
|
+
#
|
1096
|
+
# @note When making an API call, you may pass NotificationDestinationConfig
|
1097
|
+
# data as a hash:
|
1098
|
+
#
|
1099
|
+
# {
|
1100
|
+
# uri: "DestinationUri", # required
|
1101
|
+
# }
|
1102
|
+
#
|
1103
|
+
# @!attribute [rw] uri
|
1104
|
+
# The Uniform Resource Idenifier (URI) that identifies where the
|
1105
|
+
# images will be delivered.
|
1106
|
+
# @return [String]
|
1107
|
+
#
|
1108
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/NotificationDestinationConfig AWS API Documentation
|
1109
|
+
#
|
1110
|
+
class NotificationDestinationConfig < Struct.new(
|
1111
|
+
:uri)
|
1112
|
+
SENSITIVE = []
|
1113
|
+
include Aws::Structure
|
1114
|
+
end
|
1115
|
+
|
832
1116
|
# An object that describes the endpoint of the signaling channel
|
833
1117
|
# returned by the `GetSignalingChannelEndpoint` API.
|
834
1118
|
#
|
@@ -851,7 +1135,15 @@ module Aws::KinesisVideo
|
|
851
1135
|
include Aws::Structure
|
852
1136
|
end
|
853
1137
|
|
854
|
-
# The
|
1138
|
+
# The resource is currently not available for this operation. New
|
1139
|
+
# resources cannot be created with the same name as existing resources.
|
1140
|
+
# Also, resources cannot be updated or deleted unless they are in an
|
1141
|
+
# `ACTIVE` state.
|
1142
|
+
#
|
1143
|
+
# If this exception is returned, do not use it to determine whether the
|
1144
|
+
# requested resource already exists. Instead, it is recommended you use
|
1145
|
+
# the resource-specific describe API, for example, `DescribeStream` for
|
1146
|
+
# video streams.
|
855
1147
|
#
|
856
1148
|
# @!attribute [rw] message
|
857
1149
|
# @return [String]
|
@@ -926,7 +1218,7 @@ module Aws::KinesisVideo
|
|
926
1218
|
# }
|
927
1219
|
#
|
928
1220
|
# @!attribute [rw] message_ttl_seconds
|
929
|
-
# The period of time a signaling channel retains
|
1221
|
+
# The period of time a signaling channel retains undelivered messages
|
930
1222
|
# before they are discarded.
|
931
1223
|
# @return [Integer]
|
932
1224
|
#
|
@@ -957,8 +1249,8 @@ module Aws::KinesisVideo
|
|
957
1249
|
# @return [String]
|
958
1250
|
#
|
959
1251
|
# @!attribute [rw] kms_key_id
|
960
|
-
# The ID of the
|
961
|
-
#
|
1252
|
+
# The ID of the Key Management Service (KMS) key that Kinesis Video
|
1253
|
+
# Streams uses to encrypt data on the stream.
|
962
1254
|
# @return [String]
|
963
1255
|
#
|
964
1256
|
# @!attribute [rw] version
|
@@ -1132,7 +1424,7 @@ module Aws::KinesisVideo
|
|
1132
1424
|
class TagStreamOutput < Aws::EmptyStructure; end
|
1133
1425
|
|
1134
1426
|
# You have exceeded the limit of tags that you can associate with the
|
1135
|
-
# resource. Kinesis video
|
1427
|
+
# resource. A Kinesis video stream can support up to 50 tags.
|
1136
1428
|
#
|
1137
1429
|
# @!attribute [rw] message
|
1138
1430
|
# @return [String]
|
@@ -1264,6 +1556,107 @@ module Aws::KinesisVideo
|
|
1264
1556
|
#
|
1265
1557
|
class UpdateDataRetentionOutput < Aws::EmptyStructure; end
|
1266
1558
|
|
1559
|
+
# @note When making an API call, you may pass UpdateImageGenerationConfigurationInput
|
1560
|
+
# data as a hash:
|
1561
|
+
#
|
1562
|
+
# {
|
1563
|
+
# stream_name: "StreamName",
|
1564
|
+
# stream_arn: "ResourceARN",
|
1565
|
+
# image_generation_configuration: {
|
1566
|
+
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
1567
|
+
# image_selector_type: "SERVER_TIMESTAMP", # required, accepts SERVER_TIMESTAMP, PRODUCER_TIMESTAMP
|
1568
|
+
# destination_config: { # required
|
1569
|
+
# uri: "DestinationUri", # required
|
1570
|
+
# destination_region: "DestinationRegion", # required
|
1571
|
+
# },
|
1572
|
+
# sampling_interval: 1, # required
|
1573
|
+
# format: "JPEG", # required, accepts JPEG, PNG
|
1574
|
+
# format_config: {
|
1575
|
+
# "JPEGQuality" => "FormatConfigValue",
|
1576
|
+
# },
|
1577
|
+
# width_pixels: 1,
|
1578
|
+
# height_pixels: 1,
|
1579
|
+
# },
|
1580
|
+
# }
|
1581
|
+
#
|
1582
|
+
# @!attribute [rw] stream_name
|
1583
|
+
# The name of the stream from which to update the image generation
|
1584
|
+
# configuration. You must specify either the `StreamName` or the
|
1585
|
+
# `StreamARN`.
|
1586
|
+
# @return [String]
|
1587
|
+
#
|
1588
|
+
# @!attribute [rw] stream_arn
|
1589
|
+
# The Amazon Resource Name (ARN) of the Kinesis video stream from
|
1590
|
+
# where you want to update the image generation configuration. You
|
1591
|
+
# must specify either the `StreamName` or the `StreamARN`.
|
1592
|
+
# @return [String]
|
1593
|
+
#
|
1594
|
+
# @!attribute [rw] image_generation_configuration
|
1595
|
+
# The structure that contains the information required for the KVS
|
1596
|
+
# images delivery. If the structure is null, the configuration will be
|
1597
|
+
# deleted from the stream.
|
1598
|
+
# @return [Types::ImageGenerationConfiguration]
|
1599
|
+
#
|
1600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/UpdateImageGenerationConfigurationInput AWS API Documentation
|
1601
|
+
#
|
1602
|
+
class UpdateImageGenerationConfigurationInput < Struct.new(
|
1603
|
+
:stream_name,
|
1604
|
+
:stream_arn,
|
1605
|
+
:image_generation_configuration)
|
1606
|
+
SENSITIVE = []
|
1607
|
+
include Aws::Structure
|
1608
|
+
end
|
1609
|
+
|
1610
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/UpdateImageGenerationConfigurationOutput AWS API Documentation
|
1611
|
+
#
|
1612
|
+
class UpdateImageGenerationConfigurationOutput < Aws::EmptyStructure; end
|
1613
|
+
|
1614
|
+
# @note When making an API call, you may pass UpdateNotificationConfigurationInput
|
1615
|
+
# data as a hash:
|
1616
|
+
#
|
1617
|
+
# {
|
1618
|
+
# stream_name: "StreamName",
|
1619
|
+
# stream_arn: "ResourceARN",
|
1620
|
+
# notification_configuration: {
|
1621
|
+
# status: "ENABLED", # required, accepts ENABLED, DISABLED
|
1622
|
+
# destination_config: { # required
|
1623
|
+
# uri: "DestinationUri", # required
|
1624
|
+
# },
|
1625
|
+
# },
|
1626
|
+
# }
|
1627
|
+
#
|
1628
|
+
# @!attribute [rw] stream_name
|
1629
|
+
# The name of the stream from which to update the notification
|
1630
|
+
# configuration. You must specify either the `StreamName` or the
|
1631
|
+
# `StreamARN`.
|
1632
|
+
# @return [String]
|
1633
|
+
#
|
1634
|
+
# @!attribute [rw] stream_arn
|
1635
|
+
# The Amazon Resource Name (ARN) of the Kinesis video stream from
|
1636
|
+
# where you want to update the notification configuration. You must
|
1637
|
+
# specify either the `StreamName` or the `StreamARN`.
|
1638
|
+
# @return [String]
|
1639
|
+
#
|
1640
|
+
# @!attribute [rw] notification_configuration
|
1641
|
+
# The structure containing the information required for notifications.
|
1642
|
+
# If the structure is null, the configuration will be deleted from the
|
1643
|
+
# stream.
|
1644
|
+
# @return [Types::NotificationConfiguration]
|
1645
|
+
#
|
1646
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/UpdateNotificationConfigurationInput AWS API Documentation
|
1647
|
+
#
|
1648
|
+
class UpdateNotificationConfigurationInput < Struct.new(
|
1649
|
+
:stream_name,
|
1650
|
+
:stream_arn,
|
1651
|
+
:notification_configuration)
|
1652
|
+
SENSITIVE = []
|
1653
|
+
include Aws::Structure
|
1654
|
+
end
|
1655
|
+
|
1656
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/kinesisvideo-2017-09-30/UpdateNotificationConfigurationOutput AWS API Documentation
|
1657
|
+
#
|
1658
|
+
class UpdateNotificationConfigurationOutput < Aws::EmptyStructure; end
|
1659
|
+
|
1267
1660
|
# @note When making an API call, you may pass UpdateSignalingChannelInput
|
1268
1661
|
# data as a hash:
|
1269
1662
|
#
|
data/lib/aws-sdk-kinesisvideo.rb
CHANGED
@@ -13,9 +13,13 @@ require 'aws-sigv4'
|
|
13
13
|
|
14
14
|
require_relative 'aws-sdk-kinesisvideo/types'
|
15
15
|
require_relative 'aws-sdk-kinesisvideo/client_api'
|
16
|
+
require_relative 'aws-sdk-kinesisvideo/plugins/endpoints.rb'
|
16
17
|
require_relative 'aws-sdk-kinesisvideo/client'
|
17
18
|
require_relative 'aws-sdk-kinesisvideo/errors'
|
18
19
|
require_relative 'aws-sdk-kinesisvideo/resource'
|
20
|
+
require_relative 'aws-sdk-kinesisvideo/endpoint_parameters'
|
21
|
+
require_relative 'aws-sdk-kinesisvideo/endpoint_provider'
|
22
|
+
require_relative 'aws-sdk-kinesisvideo/endpoints'
|
19
23
|
require_relative 'aws-sdk-kinesisvideo/customizations'
|
20
24
|
|
21
25
|
# This module provides support for Amazon Kinesis Video Streams. This module is available in the
|
@@ -48,6 +52,6 @@ require_relative 'aws-sdk-kinesisvideo/customizations'
|
|
48
52
|
# @!group service
|
49
53
|
module Aws::KinesisVideo
|
50
54
|
|
51
|
-
GEM_VERSION = '1.
|
55
|
+
GEM_VERSION = '1.43.0'
|
52
56
|
|
53
57
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-kinesisvideo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.165.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.165.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -59,7 +59,11 @@ files:
|
|
59
59
|
- lib/aws-sdk-kinesisvideo/client.rb
|
60
60
|
- lib/aws-sdk-kinesisvideo/client_api.rb
|
61
61
|
- lib/aws-sdk-kinesisvideo/customizations.rb
|
62
|
+
- lib/aws-sdk-kinesisvideo/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-kinesisvideo/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-kinesisvideo/endpoints.rb
|
62
65
|
- lib/aws-sdk-kinesisvideo/errors.rb
|
66
|
+
- lib/aws-sdk-kinesisvideo/plugins/endpoints.rb
|
63
67
|
- lib/aws-sdk-kinesisvideo/resource.rb
|
64
68
|
- lib/aws-sdk-kinesisvideo/types.rb
|
65
69
|
homepage: https://github.com/aws/aws-sdk-ruby
|