aws-sdk-ivs 1.24.0 → 1.25.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: 772921b5122d5ac9fe658606312a1952e12ccc2f580f1f61575c1e99fa8c52d9
4
- data.tar.gz: f19e10d0f4b27d27d2cd30b011b8d191ebcb2a26520c02859e5123ee77ca66e0
3
+ metadata.gz: b19909d1d191c3f913db51f3fd303d90583a0a2a2a92deb3287d33509005c475
4
+ data.tar.gz: 2e4fc07bef70b46a69b67b75f0c902bdc250f9804fadea9d58196fc66075a7a4
5
5
  SHA512:
6
- metadata.gz: 74d1b103f161319524af11e9ed4ad7950eb0b0a1dae18216cbd6a91339535cc8304032c87aba03dcdeb34076b2ddf20c5f5b2be127fae38574f3b5c7ffdd57a6
7
- data.tar.gz: 7d597e85ddd39538079cb6ec9dd296009f0c3018505355142c4b2ce37b8f1c8b3b40d76681fa162b2e444b8b7540429ed88d428df07a89bf2ca3de89252e1dc3
6
+ metadata.gz: aa2c88e14d0029723d4833c1a43fc528f85394fec6188b444f24f7a66dfdc09a6e0d1825ba161ce5e265e6837c069373a8f266e93d982f3c34e7f3af50bf55df
7
+ data.tar.gz: aac8d418c0a0c0ece8ae44b6d6686487daa3d04439c5161f6d129fb11de060dabe705a7dfdb898ec76978812b0518fb0dd68d6b17fe1e2bb1069e2154e55bdd4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.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.24.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.25.0
@@ -1659,7 +1659,7 @@ module Aws::IVS
1659
1659
  params: params,
1660
1660
  config: config)
1661
1661
  context[:gem_name] = 'aws-sdk-ivs'
1662
- context[:gem_version] = '1.24.0'
1662
+ context[:gem_version] = '1.25.0'
1663
1663
  Seahorse::Client::Request.new(handlers, context)
1664
1664
  end
1665
1665
 
@@ -9,103 +9,43 @@
9
9
 
10
10
  module Aws::IVS
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://ivs-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://ivs-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://ivs.#{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://ivs.#{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
- dCI6eyJ1cmwiOiJodHRwczovL2l2cy1maXBzLntSZWdpb259LntQYXJ0aXRp
77
- b25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9
78
- LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25kaXRp
79
- b25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJlIGVuYWJs
80
- ZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IG9uZSBv
81
- ciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMiOlt7ImZu
82
- IjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJUFMifSx0
83
- cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
84
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0
85
- QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBw
86
- b3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
87
- dGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25z
88
- IjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9pdnMtZmlwcy57UmVn
89
- aW9ufS57UGFydGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVz
90
- Ijp7fSwiaGVhZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJj
91
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRo
92
- aXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJl
93
- cnJvciJ9XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
94
- LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBl
95
- IjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
96
- YW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3Yi
97
- Olt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFj
98
- ayJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
99
- W10sImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vaXZzLntSZWdpb259LntQ
100
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
101
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
102
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBi
103
- dXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2si
104
- LCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50
105
- Ijp7InVybCI6Imh0dHBzOi8vaXZzLntSZWdpb259LntQYXJ0aXRpb25SZXN1
106
- bHQjZG5zU3VmZml4fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0s
107
- InR5cGUiOiJlbmRwb2ludCJ9XX1dfQ==
108
-
109
- JSON
110
50
  end
111
51
  end
@@ -78,13 +78,6 @@ module Aws::IVS
78
78
  include Aws::Structure
79
79
  end
80
80
 
81
- # @note When making an API call, you may pass BatchGetChannelRequest
82
- # data as a hash:
83
- #
84
- # {
85
- # arns: ["ChannelArn"], # required
86
- # }
87
- #
88
81
  # @!attribute [rw] arns
89
82
  # Array of ARNs, one per channel.
90
83
  # @return [Array<String>]
@@ -113,13 +106,6 @@ module Aws::IVS
113
106
  include Aws::Structure
114
107
  end
115
108
 
116
- # @note When making an API call, you may pass BatchGetStreamKeyRequest
117
- # data as a hash:
118
- #
119
- # {
120
- # arns: ["StreamKeyArn"], # required
121
- # }
122
- #
123
109
  # @!attribute [rw] arns
124
110
  # Array of ARNs, one per channel.
125
111
  # @return [Array<String>]
@@ -310,20 +296,6 @@ module Aws::IVS
310
296
  include Aws::Structure
311
297
  end
312
298
 
313
- # @note When making an API call, you may pass CreateChannelRequest
314
- # data as a hash:
315
- #
316
- # {
317
- # authorized: false,
318
- # latency_mode: "NORMAL", # accepts NORMAL, LOW
319
- # name: "ChannelName",
320
- # recording_configuration_arn: "ChannelRecordingConfigurationArn",
321
- # tags: {
322
- # "TagKey" => "TagValue",
323
- # },
324
- # type: "BASIC", # accepts BASIC, STANDARD
325
- # }
326
- #
327
299
  # @!attribute [rw] authorized
328
300
  # Whether the channel is private (enabled for playback authorization).
329
301
  # Default: `false`.
@@ -406,26 +378,6 @@ module Aws::IVS
406
378
  include Aws::Structure
407
379
  end
408
380
 
409
- # @note When making an API call, you may pass CreateRecordingConfigurationRequest
410
- # data as a hash:
411
- #
412
- # {
413
- # destination_configuration: { # required
414
- # s3: {
415
- # bucket_name: "S3DestinationBucketName", # required
416
- # },
417
- # },
418
- # name: "RecordingConfigurationName",
419
- # recording_reconnect_window_seconds: 1,
420
- # tags: {
421
- # "TagKey" => "TagValue",
422
- # },
423
- # thumbnail_configuration: {
424
- # recording_mode: "DISABLED", # accepts DISABLED, INTERVAL
425
- # target_interval_seconds: 1,
426
- # },
427
- # }
428
- #
429
381
  # @!attribute [rw] destination_configuration
430
382
  # A complex type that contains a destination configuration for where
431
383
  # recorded video will be stored.
@@ -485,16 +437,6 @@ module Aws::IVS
485
437
  include Aws::Structure
486
438
  end
487
439
 
488
- # @note When making an API call, you may pass CreateStreamKeyRequest
489
- # data as a hash:
490
- #
491
- # {
492
- # channel_arn: "ChannelArn", # required
493
- # tags: {
494
- # "TagKey" => "TagValue",
495
- # },
496
- # }
497
- #
498
440
  # @!attribute [rw] channel_arn
499
441
  # ARN of the channel for which to create the stream key.
500
442
  # @return [String]
@@ -532,13 +474,6 @@ module Aws::IVS
532
474
  include Aws::Structure
533
475
  end
534
476
 
535
- # @note When making an API call, you may pass DeleteChannelRequest
536
- # data as a hash:
537
- #
538
- # {
539
- # arn: "ChannelArn", # required
540
- # }
541
- #
542
477
  # @!attribute [rw] arn
543
478
  # ARN of the channel to be deleted.
544
479
  # @return [String]
@@ -551,13 +486,6 @@ module Aws::IVS
551
486
  include Aws::Structure
552
487
  end
553
488
 
554
- # @note When making an API call, you may pass DeletePlaybackKeyPairRequest
555
- # data as a hash:
556
- #
557
- # {
558
- # arn: "PlaybackKeyPairArn", # required
559
- # }
560
- #
561
489
  # @!attribute [rw] arn
562
490
  # ARN of the key pair to be deleted.
563
491
  # @return [String]
@@ -574,13 +502,6 @@ module Aws::IVS
574
502
  #
575
503
  class DeletePlaybackKeyPairResponse < Aws::EmptyStructure; end
576
504
 
577
- # @note When making an API call, you may pass DeleteRecordingConfigurationRequest
578
- # data as a hash:
579
- #
580
- # {
581
- # arn: "RecordingConfigurationArn", # required
582
- # }
583
- #
584
505
  # @!attribute [rw] arn
585
506
  # ARN of the recording configuration to be deleted.
586
507
  # @return [String]
@@ -593,13 +514,6 @@ module Aws::IVS
593
514
  include Aws::Structure
594
515
  end
595
516
 
596
- # @note When making an API call, you may pass DeleteStreamKeyRequest
597
- # data as a hash:
598
- #
599
- # {
600
- # arn: "StreamKeyArn", # required
601
- # }
602
- #
603
517
  # @!attribute [rw] arn
604
518
  # ARN of the stream key to be deleted.
605
519
  # @return [String]
@@ -617,15 +531,6 @@ module Aws::IVS
617
531
  # For recording, you define one and only one type of destination
618
532
  # configuration.
619
533
  #
620
- # @note When making an API call, you may pass DestinationConfiguration
621
- # data as a hash:
622
- #
623
- # {
624
- # s3: {
625
- # bucket_name: "S3DestinationBucketName", # required
626
- # },
627
- # }
628
- #
629
534
  # @!attribute [rw] s3
630
535
  # An S3 destination configuration where recorded videos will be
631
536
  # stored.
@@ -639,13 +544,6 @@ module Aws::IVS
639
544
  include Aws::Structure
640
545
  end
641
546
 
642
- # @note When making an API call, you may pass GetChannelRequest
643
- # data as a hash:
644
- #
645
- # {
646
- # arn: "ChannelArn", # required
647
- # }
648
- #
649
547
  # @!attribute [rw] arn
650
548
  # ARN of the channel for which the configuration is to be retrieved.
651
549
  # @return [String]
@@ -669,13 +567,6 @@ module Aws::IVS
669
567
  include Aws::Structure
670
568
  end
671
569
 
672
- # @note When making an API call, you may pass GetPlaybackKeyPairRequest
673
- # data as a hash:
674
- #
675
- # {
676
- # arn: "PlaybackKeyPairArn", # required
677
- # }
678
- #
679
570
  # @!attribute [rw] arn
680
571
  # ARN of the key pair to be returned.
681
572
  # @return [String]
@@ -702,13 +593,6 @@ module Aws::IVS
702
593
  include Aws::Structure
703
594
  end
704
595
 
705
- # @note When making an API call, you may pass GetRecordingConfigurationRequest
706
- # data as a hash:
707
- #
708
- # {
709
- # arn: "RecordingConfigurationArn", # required
710
- # }
711
- #
712
596
  # @!attribute [rw] arn
713
597
  # ARN of the recording configuration to be retrieved.
714
598
  # @return [String]
@@ -735,13 +619,6 @@ module Aws::IVS
735
619
  include Aws::Structure
736
620
  end
737
621
 
738
- # @note When making an API call, you may pass GetStreamKeyRequest
739
- # data as a hash:
740
- #
741
- # {
742
- # arn: "StreamKeyArn", # required
743
- # }
744
- #
745
622
  # @!attribute [rw] arn
746
623
  # ARN for the stream key to be retrieved.
747
624
  # @return [String]
@@ -768,13 +645,6 @@ module Aws::IVS
768
645
  include Aws::Structure
769
646
  end
770
647
 
771
- # @note When making an API call, you may pass GetStreamRequest
772
- # data as a hash:
773
- #
774
- # {
775
- # channel_arn: "ChannelArn", # required
776
- # }
777
- #
778
648
  # @!attribute [rw] channel_arn
779
649
  # Channel ARN for stream to be accessed.
780
650
  # @return [String]
@@ -798,14 +668,6 @@ module Aws::IVS
798
668
  include Aws::Structure
799
669
  end
800
670
 
801
- # @note When making an API call, you may pass GetStreamSessionRequest
802
- # data as a hash:
803
- #
804
- # {
805
- # channel_arn: "ChannelArn", # required
806
- # stream_id: "StreamId",
807
- # }
808
- #
809
671
  # @!attribute [rw] channel_arn
810
672
  # ARN of the channel resource
811
673
  # @return [String]
@@ -837,17 +699,6 @@ module Aws::IVS
837
699
  include Aws::Structure
838
700
  end
839
701
 
840
- # @note When making an API call, you may pass ImportPlaybackKeyPairRequest
841
- # data as a hash:
842
- #
843
- # {
844
- # name: "PlaybackKeyPairName",
845
- # public_key_material: "PlaybackPublicKeyMaterial", # required
846
- # tags: {
847
- # "TagKey" => "TagValue",
848
- # },
849
- # }
850
- #
851
702
  # @!attribute [rw] name
852
703
  # Playback-key-pair name. The value does not need to be unique.
853
704
  # @return [String]
@@ -921,16 +772,6 @@ module Aws::IVS
921
772
  include Aws::Structure
922
773
  end
923
774
 
924
- # @note When making an API call, you may pass ListChannelsRequest
925
- # data as a hash:
926
- #
927
- # {
928
- # filter_by_name: "ChannelName",
929
- # filter_by_recording_configuration_arn: "ChannelRecordingConfigurationArn",
930
- # max_results: 1,
931
- # next_token: "PaginationToken",
932
- # }
933
- #
934
775
  # @!attribute [rw] filter_by_name
935
776
  # Filters the channel list to match the specified name.
936
777
  # @return [String]
@@ -978,14 +819,6 @@ module Aws::IVS
978
819
  include Aws::Structure
979
820
  end
980
821
 
981
- # @note When making an API call, you may pass ListPlaybackKeyPairsRequest
982
- # data as a hash:
983
- #
984
- # {
985
- # max_results: 1,
986
- # next_token: "PaginationToken",
987
- # }
988
- #
989
822
  # @!attribute [rw] max_results
990
823
  # Maximum number of key pairs to return. Default: your service quota
991
824
  # or 100, whichever is smaller.
@@ -1023,14 +856,6 @@ module Aws::IVS
1023
856
  include Aws::Structure
1024
857
  end
1025
858
 
1026
- # @note When making an API call, you may pass ListRecordingConfigurationsRequest
1027
- # data as a hash:
1028
- #
1029
- # {
1030
- # max_results: 1,
1031
- # next_token: "PaginationToken",
1032
- # }
1033
- #
1034
859
  # @!attribute [rw] max_results
1035
860
  # Maximum number of recording configurations to return. Default: your
1036
861
  # service quota or 100, whichever is smaller.
@@ -1068,15 +893,6 @@ module Aws::IVS
1068
893
  include Aws::Structure
1069
894
  end
1070
895
 
1071
- # @note When making an API call, you may pass ListStreamKeysRequest
1072
- # data as a hash:
1073
- #
1074
- # {
1075
- # channel_arn: "ChannelArn", # required
1076
- # max_results: 1,
1077
- # next_token: "PaginationToken",
1078
- # }
1079
- #
1080
896
  # @!attribute [rw] channel_arn
1081
897
  # Channel ARN used to filter the list.
1082
898
  # @return [String]
@@ -1118,15 +934,6 @@ module Aws::IVS
1118
934
  include Aws::Structure
1119
935
  end
1120
936
 
1121
- # @note When making an API call, you may pass ListStreamSessionsRequest
1122
- # data as a hash:
1123
- #
1124
- # {
1125
- # channel_arn: "ChannelArn", # required
1126
- # max_results: 1,
1127
- # next_token: "PaginationToken",
1128
- # }
1129
- #
1130
937
  # @!attribute [rw] channel_arn
1131
938
  # Channel ARN used to filter the list.
1132
939
  # @return [String]
@@ -1168,17 +975,6 @@ module Aws::IVS
1168
975
  include Aws::Structure
1169
976
  end
1170
977
 
1171
- # @note When making an API call, you may pass ListStreamsRequest
1172
- # data as a hash:
1173
- #
1174
- # {
1175
- # filter_by: {
1176
- # health: "HEALTHY", # accepts HEALTHY, STARVING, UNKNOWN
1177
- # },
1178
- # max_results: 1,
1179
- # next_token: "PaginationToken",
1180
- # }
1181
- #
1182
978
  # @!attribute [rw] filter_by
1183
979
  # Filters the stream list to match the specified criterion.
1184
980
  # @return [Types::StreamFilters]
@@ -1220,13 +1016,6 @@ module Aws::IVS
1220
1016
  include Aws::Structure
1221
1017
  end
1222
1018
 
1223
- # @note When making an API call, you may pass ListTagsForResourceRequest
1224
- # data as a hash:
1225
- #
1226
- # {
1227
- # resource_arn: "ResourceArn", # required
1228
- # }
1229
- #
1230
1019
  # @!attribute [rw] resource_arn
1231
1020
  # The ARN of the resource to be retrieved. The ARN must be
1232
1021
  # URL-encoded.
@@ -1332,14 +1121,6 @@ module Aws::IVS
1332
1121
  include Aws::Structure
1333
1122
  end
1334
1123
 
1335
- # @note When making an API call, you may pass PutMetadataRequest
1336
- # data as a hash:
1337
- #
1338
- # {
1339
- # channel_arn: "ChannelArn", # required
1340
- # metadata: "StreamMetadata", # required
1341
- # }
1342
- #
1343
1124
  # @!attribute [rw] channel_arn
1344
1125
  # ARN of the channel into which metadata is inserted. This channel
1345
1126
  # must have an active stream.
@@ -1477,13 +1258,6 @@ module Aws::IVS
1477
1258
  # A complex type that describes an S3 location where recorded videos
1478
1259
  # will be stored.
1479
1260
  #
1480
- # @note When making an API call, you may pass S3DestinationConfiguration
1481
- # data as a hash:
1482
- #
1483
- # {
1484
- # bucket_name: "S3DestinationBucketName", # required
1485
- # }
1486
- #
1487
1261
  # @!attribute [rw] bucket_name
1488
1262
  # Location (S3 bucket name) where recorded videos will be stored.
1489
1263
  # @return [String]
@@ -1508,13 +1282,6 @@ module Aws::IVS
1508
1282
  include Aws::Structure
1509
1283
  end
1510
1284
 
1511
- # @note When making an API call, you may pass StopStreamRequest
1512
- # data as a hash:
1513
- #
1514
- # {
1515
- # channel_arn: "ChannelArn", # required
1516
- # }
1517
- #
1518
1285
  # @!attribute [rw] channel_arn
1519
1286
  # ARN of the channel for which the stream is to be stopped.
1520
1287
  # @return [String]
@@ -1614,13 +1381,6 @@ module Aws::IVS
1614
1381
 
1615
1382
  # Object specifying the stream attribute on which to filter.
1616
1383
  #
1617
- # @note When making an API call, you may pass StreamFilters
1618
- # data as a hash:
1619
- #
1620
- # {
1621
- # health: "HEALTHY", # accepts HEALTHY, STARVING, UNKNOWN
1622
- # }
1623
- #
1624
1384
  # @!attribute [rw] health
1625
1385
  # The stream’s health.
1626
1386
  # @return [String]
@@ -1849,16 +1609,6 @@ module Aws::IVS
1849
1609
  include Aws::Structure
1850
1610
  end
1851
1611
 
1852
- # @note When making an API call, you may pass TagResourceRequest
1853
- # data as a hash:
1854
- #
1855
- # {
1856
- # resource_arn: "ResourceArn", # required
1857
- # tags: { # required
1858
- # "TagKey" => "TagValue",
1859
- # },
1860
- # }
1861
- #
1862
1612
  # @!attribute [rw] resource_arn
1863
1613
  # ARN of the resource for which tags are to be added or updated. The
1864
1614
  # ARN must be URL-encoded.
@@ -1904,14 +1654,6 @@ module Aws::IVS
1904
1654
  # An object representing a configuration of thumbnails for recorded
1905
1655
  # video.
1906
1656
  #
1907
- # @note When making an API call, you may pass ThumbnailConfiguration
1908
- # data as a hash:
1909
- #
1910
- # {
1911
- # recording_mode: "DISABLED", # accepts DISABLED, INTERVAL
1912
- # target_interval_seconds: 1,
1913
- # }
1914
- #
1915
1657
  # @!attribute [rw] recording_mode
1916
1658
  # Thumbnail recording mode. Default: `INTERVAL`.
1917
1659
  # @return [String]
@@ -1943,14 +1685,6 @@ module Aws::IVS
1943
1685
  include Aws::Structure
1944
1686
  end
1945
1687
 
1946
- # @note When making an API call, you may pass UntagResourceRequest
1947
- # data as a hash:
1948
- #
1949
- # {
1950
- # resource_arn: "ResourceArn", # required
1951
- # tag_keys: ["TagKey"], # required
1952
- # }
1953
- #
1954
1688
  # @!attribute [rw] resource_arn
1955
1689
  # ARN of the resource for which tags are to be removed. The ARN must
1956
1690
  # be URL-encoded.
@@ -1980,18 +1714,6 @@ module Aws::IVS
1980
1714
  #
1981
1715
  class UntagResourceResponse < Aws::EmptyStructure; end
1982
1716
 
1983
- # @note When making an API call, you may pass UpdateChannelRequest
1984
- # data as a hash:
1985
- #
1986
- # {
1987
- # arn: "ChannelArn", # required
1988
- # authorized: false,
1989
- # latency_mode: "NORMAL", # accepts NORMAL, LOW
1990
- # name: "ChannelName",
1991
- # recording_configuration_arn: "ChannelRecordingConfigurationArn",
1992
- # type: "BASIC", # accepts BASIC, STANDARD
1993
- # }
1994
- #
1995
1717
  # @!attribute [rw] arn
1996
1718
  # ARN of the channel to be updated.
1997
1719
  # @return [String]
data/lib/aws-sdk-ivs.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-ivs/customizations'
52
52
  # @!group service
53
53
  module Aws::IVS
54
54
 
55
- GEM_VERSION = '1.24.0'
55
+ GEM_VERSION = '1.25.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ivs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.0
4
+ version: 1.25.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