aws-sdk-kinesisvideoarchivedmedia 1.45.0 → 1.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 374078db3244e79d39d562d856ff77fee52b14a71de6d7fc0dfee6f13120f3c7
4
- data.tar.gz: 2f86ec2da0d0fce2e976a1011ad088f49bfc0ca030742eccc8dcf10fe19374ab
3
+ metadata.gz: 42c076bbc034f0ec3c6bb80dc9c5046657fc44cba40320f1205f7d2de62af7ca
4
+ data.tar.gz: 9a6c926f12eddfe4f43c01503e058f73813eda706277c2161552c5f826e9064b
5
5
  SHA512:
6
- metadata.gz: d770866d4e62a73db5de61d7b4d1a28056d5d1e4b4fd9ca4499c52067022b82f685dd384080a2f1d796da75b69e1f993343ede4f96beac5df65d1adb2c6a61ca
7
- data.tar.gz: 4b4054a84792c675b8f0a0f387e6049bb3252d36c4ad0ff8f43645264f397983f940fd5c70ea3b1a727e7b0ed5a09454d80df1a3daa7935058dd17f75841a39f
6
+ metadata.gz: 11919c88f6a01569f64dbf02dea8dc172a9ff85407ab76e5c92efb49b6a34dba39600fa22fb999c19b9bd5ff1f165b1a7d417717a0c97f260b654c8e64badbc2
7
+ data.tar.gz: d86d3acf193de7ff2e4d25fc19a84af340420856974b127d7621b6d7aecdd5ce175a621d55ac04f9825ffd53ee12a9e9635a216018720209b3fa2eec1af96b66
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2023-01-18)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ * Issue - Replace runtime endpoint resolution approach with generated ruby code.
10
+
4
11
  1.45.0 (2022-10-25)
5
12
  ------------------
6
13
 
@@ -235,4 +242,4 @@ Unreleased Changes
235
242
  1.0.0 (2017-11-29)
236
243
  ------------------
237
244
 
238
- * Feature - Initial release of `aws-sdk-kinesisvideoarchivedmedia`.
245
+ * Feature - Initial release of `aws-sdk-kinesisvideoarchivedmedia`.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.46.0
@@ -1492,7 +1492,7 @@ module Aws::KinesisVideoArchivedMedia
1492
1492
  params: params,
1493
1493
  config: config)
1494
1494
  context[:gem_name] = 'aws-sdk-kinesisvideoarchivedmedia'
1495
- context[:gem_version] = '1.45.0'
1495
+ context[:gem_version] = '1.46.0'
1496
1496
  Seahorse::Client::Request.new(handlers, context)
1497
1497
  end
1498
1498
 
@@ -9,104 +9,43 @@
9
9
 
10
10
  module Aws::KinesisVideoArchivedMedia
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
18
+ if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
19
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
20
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
21
+ end
22
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
23
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
24
+ end
25
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
26
+ end
27
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
28
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
29
+ return Aws::Endpoints::Endpoint.new(url: "https://kinesisvideo-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
30
+ end
31
+ raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
32
+ end
33
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
34
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ return Aws::Endpoints::Endpoint.new(url: "https://kinesisvideo-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
36
+ end
37
+ raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
38
+ end
39
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
40
+ if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
41
+ return Aws::Endpoints::Endpoint.new(url: "https://kinesisvideo.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
42
+ end
43
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
44
+ end
45
+ return Aws::Endpoints::Endpoint.new(url: "https://kinesisvideo.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
21
46
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- end
47
+ raise ArgumentError, 'No endpoint could be resolved'
24
48
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
49
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
33
- dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
34
- cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
35
- dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
36
- ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
37
- ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
38
- ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
39
- aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
40
- OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
41
- UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
42
- dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
43
- UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
44
- dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
45
- ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
46
- IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
47
- aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
48
- bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
49
- ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
50
- Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
51
- cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
52
- InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
53
- aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
54
- cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
55
- InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
56
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
57
- UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
58
- SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
59
- eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
60
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
61
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
62
- ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
63
- b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
64
- fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
65
- RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
66
- ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
67
- ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
68
- ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
69
- dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
70
- dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
71
- Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
72
- In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
73
- YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
74
- YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
75
- cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
76
- dCI6eyJ1cmwiOiJodHRwczovL2tpbmVzaXN2aWRlby1maXBzLntSZWdpb259
77
- LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3Bl
78
- cnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0s
79
- eyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sg
80
- YXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBw
81
- b3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlv
82
- bnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVz
83
- ZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
84
- aXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7
85
- ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3Vs
86
- dCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMi
87
- Olt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJj
88
- b25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9raW5l
89
- c2lzdmlkZW8tZmlwcy57UmVnaW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1
90
- ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoi
91
- ZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBT
92
- IGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBv
93
- cnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJm
94
- biI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3Rh
95
- Y2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
96
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
97
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
98
- LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxl
99
- cyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBz
100
- Oi8va2luZXNpc3ZpZGVvLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVh
101
- bFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7
102
- fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJy
103
- b3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24g
104
- ZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19
105
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8v
106
- a2luZXNpc3ZpZGVvLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3Vm
107
- Zml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJl
108
- bmRwb2ludCJ9XX1dfQ==
109
-
110
- JSON
111
50
  end
112
51
  end
@@ -40,17 +40,6 @@ module Aws::KinesisVideoArchivedMedia
40
40
  # range and very different points in time, only the oldest ingested
41
41
  # collection of fragments are returned.
42
42
  #
43
- # @note When making an API call, you may pass ClipFragmentSelector
44
- # data as a hash:
45
- #
46
- # {
47
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # required, accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
48
- # timestamp_range: { # required
49
- # start_timestamp: Time.now, # required
50
- # end_timestamp: Time.now, # required
51
- # },
52
- # }
53
- #
54
43
  # @!attribute [rw] fragment_selector_type
55
44
  # The origin of the timestamps to use (Server or Producer).
56
45
  # @return [String]
@@ -70,14 +59,6 @@ module Aws::KinesisVideoArchivedMedia
70
59
 
71
60
  # The range of timestamps for which to return fragments.
72
61
  #
73
- # @note When making an API call, you may pass ClipTimestampRange
74
- # data as a hash:
75
- #
76
- # {
77
- # start_timestamp: Time.now, # required
78
- # end_timestamp: Time.now, # required
79
- # }
80
- #
81
62
  # @!attribute [rw] start_timestamp
82
63
  # The starting timestamp in the range of timestamps for which to
83
64
  # return fragments.
@@ -115,17 +96,6 @@ module Aws::KinesisVideoArchivedMedia
115
96
  # Contains the range of timestamps for the requested media, and the
116
97
  # source of the timestamps.
117
98
  #
118
- # @note When making an API call, you may pass DASHFragmentSelector
119
- # data as a hash:
120
- #
121
- # {
122
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
123
- # timestamp_range: {
124
- # start_timestamp: Time.now,
125
- # end_timestamp: Time.now,
126
- # },
127
- # }
128
- #
129
99
  # @!attribute [rw] fragment_selector_type
130
100
  # The source of the timestamps for the requested media.
131
101
  #
@@ -182,14 +152,6 @@ module Aws::KinesisVideoArchivedMedia
182
152
  # Fragments that start before the start time and continue past it are
183
153
  # not included in the session.
184
154
  #
185
- # @note When making an API call, you may pass DASHTimestampRange
186
- # data as a hash:
187
- #
188
- # {
189
- # start_timestamp: Time.now,
190
- # end_timestamp: Time.now,
191
- # }
192
- #
193
155
  # @!attribute [rw] start_timestamp
194
156
  # The start of the timestamp range for the requested media.
195
157
  #
@@ -290,17 +252,6 @@ module Aws::KinesisVideoArchivedMedia
290
252
  # of 00:00:04 would return the fragments with start times of 00:00:02
291
253
  # and 00:00:04.
292
254
  #
293
- # @note When making an API call, you may pass FragmentSelector
294
- # data as a hash:
295
- #
296
- # {
297
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # required, accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
298
- # timestamp_range: { # required
299
- # start_timestamp: Time.now, # required
300
- # end_timestamp: Time.now, # required
301
- # },
302
- # }
303
- #
304
255
  # @!attribute [rw] fragment_selector_type
305
256
  # The origin of the timestamps to use (Server or Producer).
306
257
  # @return [String]
@@ -318,21 +269,6 @@ module Aws::KinesisVideoArchivedMedia
318
269
  include Aws::Structure
319
270
  end
320
271
 
321
- # @note When making an API call, you may pass GetClipInput
322
- # data as a hash:
323
- #
324
- # {
325
- # stream_name: "StreamName",
326
- # stream_arn: "ResourceARN",
327
- # clip_fragment_selector: { # required
328
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # required, accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
329
- # timestamp_range: { # required
330
- # start_timestamp: Time.now, # required
331
- # end_timestamp: Time.now, # required
332
- # },
333
- # },
334
- # }
335
- #
336
272
  # @!attribute [rw] stream_name
337
273
  # The name of the stream for which to retrieve the media clip.
338
274
  #
@@ -385,26 +321,6 @@ module Aws::KinesisVideoArchivedMedia
385
321
  include Aws::Structure
386
322
  end
387
323
 
388
- # @note When making an API call, you may pass GetDASHStreamingSessionURLInput
389
- # data as a hash:
390
- #
391
- # {
392
- # stream_name: "StreamName",
393
- # stream_arn: "ResourceARN",
394
- # playback_mode: "LIVE", # accepts LIVE, LIVE_REPLAY, ON_DEMAND
395
- # display_fragment_timestamp: "ALWAYS", # accepts ALWAYS, NEVER
396
- # display_fragment_number: "ALWAYS", # accepts ALWAYS, NEVER
397
- # dash_fragment_selector: {
398
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
399
- # timestamp_range: {
400
- # start_timestamp: Time.now,
401
- # end_timestamp: Time.now,
402
- # },
403
- # },
404
- # expires: 1,
405
- # max_manifest_fragment_results: 1,
406
- # }
407
- #
408
324
  # @!attribute [rw] stream_name
409
325
  # The name of the stream for which to retrieve the MPEG-DASH manifest
410
326
  # URL.
@@ -587,27 +503,6 @@ module Aws::KinesisVideoArchivedMedia
587
503
  include Aws::Structure
588
504
  end
589
505
 
590
- # @note When making an API call, you may pass GetHLSStreamingSessionURLInput
591
- # data as a hash:
592
- #
593
- # {
594
- # stream_name: "StreamName",
595
- # stream_arn: "ResourceARN",
596
- # playback_mode: "LIVE", # accepts LIVE, LIVE_REPLAY, ON_DEMAND
597
- # hls_fragment_selector: {
598
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
599
- # timestamp_range: {
600
- # start_timestamp: Time.now,
601
- # end_timestamp: Time.now,
602
- # },
603
- # },
604
- # container_format: "FRAGMENTED_MP4", # accepts FRAGMENTED_MP4, MPEG_TS
605
- # discontinuity_mode: "ALWAYS", # accepts ALWAYS, NEVER, ON_DISCONTINUITY
606
- # display_fragment_timestamp: "ALWAYS", # accepts ALWAYS, NEVER
607
- # expires: 1,
608
- # max_media_playlist_fragment_results: 1,
609
- # }
610
- #
611
506
  # @!attribute [rw] stream_name
612
507
  # The name of the stream for which to retrieve the HLS master playlist
613
508
  # URL.
@@ -826,26 +721,6 @@ module Aws::KinesisVideoArchivedMedia
826
721
  include Aws::Structure
827
722
  end
828
723
 
829
- # @note When making an API call, you may pass GetImagesInput
830
- # data as a hash:
831
- #
832
- # {
833
- # stream_name: "StreamName",
834
- # stream_arn: "ResourceARN",
835
- # image_selector_type: "PRODUCER_TIMESTAMP", # required, accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
836
- # start_timestamp: Time.now, # required
837
- # end_timestamp: Time.now, # required
838
- # sampling_interval: 1, # required
839
- # format: "JPEG", # required, accepts JPEG, PNG
840
- # format_config: {
841
- # "JPEGQuality" => "FormatConfigValue",
842
- # },
843
- # width_pixels: 1,
844
- # height_pixels: 1,
845
- # max_results: 1,
846
- # next_token: "NextToken",
847
- # }
848
- #
849
724
  # @!attribute [rw] stream_name
850
725
  # The name of the stream from which to retrieve the images. You must
851
726
  # specify either the `StreamName` or the `StreamARN`.
@@ -976,15 +851,6 @@ module Aws::KinesisVideoArchivedMedia
976
851
  include Aws::Structure
977
852
  end
978
853
 
979
- # @note When making an API call, you may pass GetMediaForFragmentListInput
980
- # data as a hash:
981
- #
982
- # {
983
- # stream_name: "StreamName",
984
- # stream_arn: "ResourceARN",
985
- # fragments: ["FragmentNumberString"], # required
986
- # }
987
- #
988
854
  # @!attribute [rw] stream_name
989
855
  # The name of the stream from which to retrieve fragment media.
990
856
  # Specify either this parameter or the `StreamARN` parameter.
@@ -1059,17 +925,6 @@ module Aws::KinesisVideoArchivedMedia
1059
925
  # Contains the range of timestamps for the requested media, and the
1060
926
  # source of the timestamps.
1061
927
  #
1062
- # @note When making an API call, you may pass HLSFragmentSelector
1063
- # data as a hash:
1064
- #
1065
- # {
1066
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
1067
- # timestamp_range: {
1068
- # start_timestamp: Time.now,
1069
- # end_timestamp: Time.now,
1070
- # },
1071
- # }
1072
- #
1073
928
  # @!attribute [rw] fragment_selector_type
1074
929
  # The source of the timestamps for the requested media.
1075
930
  #
@@ -1121,14 +976,6 @@ module Aws::KinesisVideoArchivedMedia
1121
976
  #
1122
977
  # This value should not be present if `PlaybackType` is `LIVE`.
1123
978
  #
1124
- # @note When making an API call, you may pass HLSTimestampRange
1125
- # data as a hash:
1126
- #
1127
- # {
1128
- # start_timestamp: Time.now,
1129
- # end_timestamp: Time.now,
1130
- # }
1131
- #
1132
979
  # @!attribute [rw] start_timestamp
1133
980
  # The start of the timestamp range for the requested media.
1134
981
  #
@@ -1254,23 +1101,6 @@ module Aws::KinesisVideoArchivedMedia
1254
1101
  include Aws::Structure
1255
1102
  end
1256
1103
 
1257
- # @note When making an API call, you may pass ListFragmentsInput
1258
- # data as a hash:
1259
- #
1260
- # {
1261
- # stream_name: "StreamName",
1262
- # stream_arn: "ResourceARN",
1263
- # max_results: 1,
1264
- # next_token: "NextToken",
1265
- # fragment_selector: {
1266
- # fragment_selector_type: "PRODUCER_TIMESTAMP", # required, accepts PRODUCER_TIMESTAMP, SERVER_TIMESTAMP
1267
- # timestamp_range: { # required
1268
- # start_timestamp: Time.now, # required
1269
- # end_timestamp: Time.now, # required
1270
- # },
1271
- # },
1272
- # }
1273
- #
1274
1104
  # @!attribute [rw] stream_name
1275
1105
  # The name of the stream from which to retrieve a fragment list.
1276
1106
  # Specify either this parameter or the `StreamARN` parameter.
@@ -1397,14 +1227,6 @@ module Aws::KinesisVideoArchivedMedia
1397
1227
 
1398
1228
  # The range of timestamps for which to return fragments.
1399
1229
  #
1400
- # @note When making an API call, you may pass TimestampRange
1401
- # data as a hash:
1402
- #
1403
- # {
1404
- # start_timestamp: Time.now, # required
1405
- # end_timestamp: Time.now, # required
1406
- # }
1407
- #
1408
1230
  # @!attribute [rw] start_timestamp
1409
1231
  # The starting timestamp in the range of timestamps for which to
1410
1232
  # return fragments.
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-kinesisvideoarchivedmedia/customizations'
52
52
  # @!group service
53
53
  module Aws::KinesisVideoArchivedMedia
54
54
 
55
- GEM_VERSION = '1.45.0'
55
+ GEM_VERSION = '1.46.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesisvideoarchivedmedia
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.45.0
4
+ version: 1.46.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-10-25 00:00:00.000000000 Z
11
+ date: 2023-01-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core