aws-sdk-chimesdkmediapipelines 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdc33af4a7e03be921c6e623a9e4c5d9808ad4686d286c5af9976ea4d952b3f6
4
- data.tar.gz: 50ba5e6e0e3c4d01e36b0c7c71cfed35121b6ecbe0b8d17d92c435c604df6383
3
+ metadata.gz: a5b08a78282fa74bc6ae2b1a195fff9f27036675345718274e5a3f90f9019c65
4
+ data.tar.gz: 4088fdb6f53cfad8117ac647ca5537b4d4f16a37b1c46fc1e65c495a98054e52
5
5
  SHA512:
6
- metadata.gz: e4fabb32384848aeb5915f880aedd0fce86263312baf91134e420d89925f27053d584384163556a61c77c33155c12460f7cc33e876694149a86adf5b33681c79
7
- data.tar.gz: ddbb5453a8b1a41400f0af1e8b8cee312a60b9f2d662e922fb107c0c6868f86e2be973d3a73821ecbb8d53a6ced5fa0a4506f488d51fba31678bca3a3613a699
6
+ metadata.gz: aca32a89fb84e32b76478267aa4606e63dd237c61b6e5edc2f8e7beaa33d881c898e4f7ba3b468ce216c1c7912e175163f6245b5aff3141f4641e081471a9418
7
+ data.tar.gz: 194e876b476e32ffcc2cdfb186e8ffce8391ce1846f1fa689d7f05dd41bcd611c863711f042ee71ebb9b61d340521fbd773128135bfc1fedebd6714d1d686f47
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.3.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.2.0 (2022-10-25)
5
12
  ------------------
6
13
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.2.0
1
+ 1.3.0
@@ -1058,7 +1058,7 @@ module Aws::ChimeSDKMediaPipelines
1058
1058
  params: params,
1059
1059
  config: config)
1060
1060
  context[:gem_name] = 'aws-sdk-chimesdkmediapipelines'
1061
- context[:gem_version] = '1.2.0'
1061
+ context[:gem_version] = '1.3.0'
1062
1062
  Seahorse::Client::Request.new(handlers, context)
1063
1063
  end
1064
1064
 
@@ -9,105 +9,43 @@
9
9
 
10
10
  module Aws::ChimeSDKMediaPipelines
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://media-pipelines-chime-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://media-pipelines-chime-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://media-pipelines-chime.#{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://media-pipelines-chime.#{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
- dCI6eyJ1cmwiOiJodHRwczovL21lZGlhLXBpcGVsaW5lcy1jaGltZS1maXBz
77
- LntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4
78
- fSIsInByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRw
79
- b2ludCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBE
80
- dWFsU3RhY2sgYXJlIGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2Vz
81
- IG5vdCBzdXBwb3J0IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7
82
- ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7
83
- InJlZiI6IlVzZUZJUFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVz
84
- IjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2
85
- IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRp
86
- dGlvblJlc3VsdCJ9LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVl
87
- IiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1
88
- bGVzIjpbeyJjb25kaXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0
89
- cHM6Ly9tZWRpYS1waXBlbGluZXMtY2hpbWUtZmlwcy57UmVnaW9ufS57UGFy
90
- dGl0aW9uUmVzdWx0I2Ruc1N1ZmZpeH0iLCJwcm9wZXJ0aWVzIjp7fSwiaGVh
91
- ZGVycyI6e319LCJ0eXBlIjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25z
92
- IjpbXSwiZXJyb3IiOiJGSVBTIGlzIGVuYWJsZWQgYnV0IHRoaXMgcGFydGl0
93
- aW9uIGRvZXMgbm90IHN1cHBvcnQgRklQUyIsInR5cGUiOiJlcnJvciJ9XX0s
94
- eyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2Ijpb
95
- eyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIs
96
- InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
97
- LCJhcmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6
98
- IlBhcnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwi
99
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBv
100
- aW50Ijp7InVybCI6Imh0dHBzOi8vbWVkaWEtcGlwZWxpbmVzLWNoaW1lLntS
101
- ZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIs
102
- InByb3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2lu
103
- dCJ9XX0seyJjb25kaXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMg
104
- ZW5hYmxlZCBidXQgdGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBE
105
- dWFsU3RhY2siLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10s
106
- ImVuZHBvaW50Ijp7InVybCI6Imh0dHBzOi8vbWVkaWEtcGlwZWxpbmVzLWNo
107
- aW1lLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
108
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
109
- XX1dfQ==
110
-
111
- JSON
112
50
  end
113
51
  end
@@ -12,33 +12,6 @@ module Aws::ChimeSDKMediaPipelines
12
12
 
13
13
  # The configuration for the artifacts concatenation.
14
14
  #
15
- # @note When making an API call, you may pass ArtifactsConcatenationConfiguration
16
- # data as a hash:
17
- #
18
- # {
19
- # audio: { # required
20
- # state: "Enabled", # required, accepts Enabled
21
- # },
22
- # video: { # required
23
- # state: "Enabled", # required, accepts Enabled, Disabled
24
- # },
25
- # content: { # required
26
- # state: "Enabled", # required, accepts Enabled, Disabled
27
- # },
28
- # data_channel: { # required
29
- # state: "Enabled", # required, accepts Enabled, Disabled
30
- # },
31
- # transcription_messages: { # required
32
- # state: "Enabled", # required, accepts Enabled, Disabled
33
- # },
34
- # meeting_events: { # required
35
- # state: "Enabled", # required, accepts Enabled, Disabled
36
- # },
37
- # composited_video: { # required
38
- # state: "Enabled", # required, accepts Enabled, Disabled
39
- # },
40
- # }
41
- #
42
15
  # @!attribute [rw] audio
43
16
  # The configuration for the audio artifacts concatenation.
44
17
  # @return [Types::AudioConcatenationConfiguration]
@@ -84,33 +57,6 @@ module Aws::ChimeSDKMediaPipelines
84
57
 
85
58
  # The configuration for the artifacts.
86
59
  #
87
- # @note When making an API call, you may pass ArtifactsConfiguration
88
- # data as a hash:
89
- #
90
- # {
91
- # audio: { # required
92
- # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
93
- # },
94
- # video: { # required
95
- # state: "Enabled", # required, accepts Enabled, Disabled
96
- # mux_type: "VideoOnly", # accepts VideoOnly
97
- # },
98
- # content: { # required
99
- # state: "Enabled", # required, accepts Enabled, Disabled
100
- # mux_type: "ContentOnly", # accepts ContentOnly
101
- # },
102
- # composited_video: {
103
- # layout: "GridView", # accepts GridView
104
- # resolution: "HD", # accepts HD, FHD
105
- # grid_view_configuration: { # required
106
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
107
- # presenter_only_configuration: {
108
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
109
- # },
110
- # },
111
- # },
112
- # }
113
- #
114
60
  # @!attribute [rw] audio
115
61
  # The configuration for the audio artifacts.
116
62
  # @return [Types::AudioArtifactsConfiguration]
@@ -140,13 +86,6 @@ module Aws::ChimeSDKMediaPipelines
140
86
 
141
87
  # The audio artifact configuration object.
142
88
  #
143
- # @note When making an API call, you may pass AudioArtifactsConfiguration
144
- # data as a hash:
145
- #
146
- # {
147
- # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
148
- # }
149
- #
150
89
  # @!attribute [rw] mux_type
151
90
  # The MUX type of the audio artifact configuration object.
152
91
  # @return [String]
@@ -161,13 +100,6 @@ module Aws::ChimeSDKMediaPipelines
161
100
 
162
101
  # The audio artifact concatenation configuration object.
163
102
  #
164
- # @note When making an API call, you may pass AudioConcatenationConfiguration
165
- # data as a hash:
166
- #
167
- # {
168
- # state: "Enabled", # required, accepts Enabled
169
- # }
170
- #
171
103
  # @!attribute [rw] state
172
104
  # Enables the *name* object, where *name* is the name of the
173
105
  # configuration object, such as `AudioConcatenation`.
@@ -207,35 +139,6 @@ module Aws::ChimeSDKMediaPipelines
207
139
  # The configuration object of the Amazon Chime SDK meeting concatenation
208
140
  # for a specified media pipeline.
209
141
  #
210
- # @note When making an API call, you may pass ChimeSdkMeetingConcatenationConfiguration
211
- # data as a hash:
212
- #
213
- # {
214
- # artifacts_configuration: { # required
215
- # audio: { # required
216
- # state: "Enabled", # required, accepts Enabled
217
- # },
218
- # video: { # required
219
- # state: "Enabled", # required, accepts Enabled, Disabled
220
- # },
221
- # content: { # required
222
- # state: "Enabled", # required, accepts Enabled, Disabled
223
- # },
224
- # data_channel: { # required
225
- # state: "Enabled", # required, accepts Enabled, Disabled
226
- # },
227
- # transcription_messages: { # required
228
- # state: "Enabled", # required, accepts Enabled, Disabled
229
- # },
230
- # meeting_events: { # required
231
- # state: "Enabled", # required, accepts Enabled, Disabled
232
- # },
233
- # composited_video: { # required
234
- # state: "Enabled", # required, accepts Enabled, Disabled
235
- # },
236
- # },
237
- # }
238
- #
239
142
  # @!attribute [rw] artifacts_configuration
240
143
  # The configuration for the artifacts in an Amazon Chime SDK meeting
241
144
  # concatenation.
@@ -252,41 +155,6 @@ module Aws::ChimeSDKMediaPipelines
252
155
  # The configuration object of the Amazon Chime SDK meeting for a
253
156
  # specified media pipeline. `SourceType` must be `ChimeSdkMeeting`.
254
157
  #
255
- # @note When making an API call, you may pass ChimeSdkMeetingConfiguration
256
- # data as a hash:
257
- #
258
- # {
259
- # source_configuration: {
260
- # selected_video_streams: {
261
- # attendee_ids: ["GuidString"],
262
- # external_user_ids: ["ExternalUserIdType"],
263
- # },
264
- # },
265
- # artifacts_configuration: {
266
- # audio: { # required
267
- # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
268
- # },
269
- # video: { # required
270
- # state: "Enabled", # required, accepts Enabled, Disabled
271
- # mux_type: "VideoOnly", # accepts VideoOnly
272
- # },
273
- # content: { # required
274
- # state: "Enabled", # required, accepts Enabled, Disabled
275
- # mux_type: "ContentOnly", # accepts ContentOnly
276
- # },
277
- # composited_video: {
278
- # layout: "GridView", # accepts GridView
279
- # resolution: "HD", # accepts HD, FHD
280
- # grid_view_configuration: { # required
281
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
282
- # presenter_only_configuration: {
283
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
284
- # },
285
- # },
286
- # },
287
- # },
288
- # }
289
- #
290
158
  # @!attribute [rw] source_configuration
291
159
  # The source configuration for a specified media pipline.
292
160
  # @return [Types::SourceConfiguration]
@@ -306,30 +174,6 @@ module Aws::ChimeSDKMediaPipelines
306
174
 
307
175
  # The media pipeline's configuration object.
308
176
  #
309
- # @note When making an API call, you may pass ChimeSdkMeetingLiveConnectorConfiguration
310
- # data as a hash:
311
- #
312
- # {
313
- # arn: "Arn", # required
314
- # mux_type: "AudioWithCompositedVideo", # required, accepts AudioWithCompositedVideo, AudioWithActiveSpeakerVideo
315
- # composited_video: {
316
- # layout: "GridView", # accepts GridView
317
- # resolution: "HD", # accepts HD, FHD
318
- # grid_view_configuration: { # required
319
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
320
- # presenter_only_configuration: {
321
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
322
- # },
323
- # },
324
- # },
325
- # source_configuration: {
326
- # selected_video_streams: {
327
- # attendee_ids: ["GuidString"],
328
- # external_user_ids: ["ExternalUserIdType"],
329
- # },
330
- # },
331
- # }
332
- #
333
177
  # @!attribute [rw] arn
334
178
  # The configuration object's Chime SDK meeting ARN.
335
179
  # @return [String]
@@ -360,20 +204,6 @@ module Aws::ChimeSDKMediaPipelines
360
204
 
361
205
  # Describes the configuration for the composited video artifacts.
362
206
  #
363
- # @note When making an API call, you may pass CompositedVideoArtifactsConfiguration
364
- # data as a hash:
365
- #
366
- # {
367
- # layout: "GridView", # accepts GridView
368
- # resolution: "HD", # accepts HD, FHD
369
- # grid_view_configuration: { # required
370
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
371
- # presenter_only_configuration: {
372
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
373
- # },
374
- # },
375
- # }
376
- #
377
207
  # @!attribute [rw] layout
378
208
  # The layout setting, such as `GridView` in the configuration object.
379
209
  # @return [String]
@@ -400,13 +230,6 @@ module Aws::ChimeSDKMediaPipelines
400
230
  # The composited video configuration object for a specified media
401
231
  # pipeline. `SourceType` must be `ChimeSdkMeeting`.
402
232
  #
403
- # @note When making an API call, you may pass CompositedVideoConcatenationConfiguration
404
- # data as a hash:
405
- #
406
- # {
407
- # state: "Enabled", # required, accepts Enabled, Disabled
408
- # }
409
- #
410
233
  # @!attribute [rw] state
411
234
  # Enables or disables the configuration object.
412
235
  # @return [String]
@@ -421,16 +244,6 @@ module Aws::ChimeSDKMediaPipelines
421
244
 
422
245
  # The data sink of the configuration object.
423
246
  #
424
- # @note When making an API call, you may pass ConcatenationSink
425
- # data as a hash:
426
- #
427
- # {
428
- # type: "S3Bucket", # required, accepts S3Bucket
429
- # s3_bucket_sink_configuration: { # required
430
- # destination: "Arn", # required
431
- # },
432
- # }
433
- #
434
247
  # @!attribute [rw] type
435
248
  # The type of data sink in the configuration object.
436
249
  # @return [String]
@@ -451,41 +264,6 @@ module Aws::ChimeSDKMediaPipelines
451
264
  # The source type and media pipeline configuration settings in a
452
265
  # configuration object.
453
266
  #
454
- # @note When making an API call, you may pass ConcatenationSource
455
- # data as a hash:
456
- #
457
- # {
458
- # type: "MediaCapturePipeline", # required, accepts MediaCapturePipeline
459
- # media_capture_pipeline_source_configuration: { # required
460
- # media_pipeline_arn: "Arn", # required
461
- # chime_sdk_meeting_configuration: { # required
462
- # artifacts_configuration: { # required
463
- # audio: { # required
464
- # state: "Enabled", # required, accepts Enabled
465
- # },
466
- # video: { # required
467
- # state: "Enabled", # required, accepts Enabled, Disabled
468
- # },
469
- # content: { # required
470
- # state: "Enabled", # required, accepts Enabled, Disabled
471
- # },
472
- # data_channel: { # required
473
- # state: "Enabled", # required, accepts Enabled, Disabled
474
- # },
475
- # transcription_messages: { # required
476
- # state: "Enabled", # required, accepts Enabled, Disabled
477
- # },
478
- # meeting_events: { # required
479
- # state: "Enabled", # required, accepts Enabled, Disabled
480
- # },
481
- # composited_video: { # required
482
- # state: "Enabled", # required, accepts Enabled, Disabled
483
- # },
484
- # },
485
- # },
486
- # },
487
- # }
488
- #
489
267
  # @!attribute [rw] type
490
268
  # The type of concatenation source in a configuration object.
491
269
  # @return [String]
@@ -506,14 +284,6 @@ module Aws::ChimeSDKMediaPipelines
506
284
 
507
285
  # The content artifact object.
508
286
  #
509
- # @note When making an API call, you may pass ContentArtifactsConfiguration
510
- # data as a hash:
511
- #
512
- # {
513
- # state: "Enabled", # required, accepts Enabled, Disabled
514
- # mux_type: "ContentOnly", # accepts ContentOnly
515
- # }
516
- #
517
287
  # @!attribute [rw] state
518
288
  # Indicates whether the content artifact is enabled or disabled.
519
289
  # @return [String]
@@ -534,13 +304,6 @@ module Aws::ChimeSDKMediaPipelines
534
304
  # The composited content configuration object for a specified media
535
305
  # pipeline.
536
306
  #
537
- # @note When making an API call, you may pass ContentConcatenationConfiguration
538
- # data as a hash:
539
- #
540
- # {
541
- # state: "Enabled", # required, accepts Enabled, Disabled
542
- # }
543
- #
544
307
  # @!attribute [rw] state
545
308
  # Enables or disables the configuration object.
546
309
  # @return [String]
@@ -553,54 +316,6 @@ module Aws::ChimeSDKMediaPipelines
553
316
  include Aws::Structure
554
317
  end
555
318
 
556
- # @note When making an API call, you may pass CreateMediaCapturePipelineRequest
557
- # data as a hash:
558
- #
559
- # {
560
- # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
561
- # source_arn: "Arn", # required
562
- # sink_type: "S3Bucket", # required, accepts S3Bucket
563
- # sink_arn: "Arn", # required
564
- # client_request_token: "ClientRequestToken",
565
- # chime_sdk_meeting_configuration: {
566
- # source_configuration: {
567
- # selected_video_streams: {
568
- # attendee_ids: ["GuidString"],
569
- # external_user_ids: ["ExternalUserIdType"],
570
- # },
571
- # },
572
- # artifacts_configuration: {
573
- # audio: { # required
574
- # mux_type: "AudioOnly", # required, accepts AudioOnly, AudioWithActiveSpeakerVideo, AudioWithCompositedVideo
575
- # },
576
- # video: { # required
577
- # state: "Enabled", # required, accepts Enabled, Disabled
578
- # mux_type: "VideoOnly", # accepts VideoOnly
579
- # },
580
- # content: { # required
581
- # state: "Enabled", # required, accepts Enabled, Disabled
582
- # mux_type: "ContentOnly", # accepts ContentOnly
583
- # },
584
- # composited_video: {
585
- # layout: "GridView", # accepts GridView
586
- # resolution: "HD", # accepts HD, FHD
587
- # grid_view_configuration: { # required
588
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
589
- # presenter_only_configuration: {
590
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
591
- # },
592
- # },
593
- # },
594
- # },
595
- # },
596
- # tags: [
597
- # {
598
- # key: "TagKey", # required
599
- # value: "TagValue", # required
600
- # },
601
- # ],
602
- # }
603
- #
604
319
  # @!attribute [rw] source_type
605
320
  # Source type from which the media artifacts are captured. A Chime SDK
606
321
  # Meeting is the only supported source.
@@ -664,60 +379,6 @@ module Aws::ChimeSDKMediaPipelines
664
379
  include Aws::Structure
665
380
  end
666
381
 
667
- # @note When making an API call, you may pass CreateMediaConcatenationPipelineRequest
668
- # data as a hash:
669
- #
670
- # {
671
- # sources: [ # required
672
- # {
673
- # type: "MediaCapturePipeline", # required, accepts MediaCapturePipeline
674
- # media_capture_pipeline_source_configuration: { # required
675
- # media_pipeline_arn: "Arn", # required
676
- # chime_sdk_meeting_configuration: { # required
677
- # artifacts_configuration: { # required
678
- # audio: { # required
679
- # state: "Enabled", # required, accepts Enabled
680
- # },
681
- # video: { # required
682
- # state: "Enabled", # required, accepts Enabled, Disabled
683
- # },
684
- # content: { # required
685
- # state: "Enabled", # required, accepts Enabled, Disabled
686
- # },
687
- # data_channel: { # required
688
- # state: "Enabled", # required, accepts Enabled, Disabled
689
- # },
690
- # transcription_messages: { # required
691
- # state: "Enabled", # required, accepts Enabled, Disabled
692
- # },
693
- # meeting_events: { # required
694
- # state: "Enabled", # required, accepts Enabled, Disabled
695
- # },
696
- # composited_video: { # required
697
- # state: "Enabled", # required, accepts Enabled, Disabled
698
- # },
699
- # },
700
- # },
701
- # },
702
- # },
703
- # ],
704
- # sinks: [ # required
705
- # {
706
- # type: "S3Bucket", # required, accepts S3Bucket
707
- # s3_bucket_sink_configuration: { # required
708
- # destination: "Arn", # required
709
- # },
710
- # },
711
- # ],
712
- # client_request_token: "ClientRequestToken",
713
- # tags: [
714
- # {
715
- # key: "TagKey", # required
716
- # value: "TagValue", # required
717
- # },
718
- # ],
719
- # }
720
- #
721
382
  # @!attribute [rw] sources
722
383
  # An object that specifies the sources for the media concatenation
723
384
  # pipeline.
@@ -766,54 +427,6 @@ module Aws::ChimeSDKMediaPipelines
766
427
  include Aws::Structure
767
428
  end
768
429
 
769
- # @note When making an API call, you may pass CreateMediaLiveConnectorPipelineRequest
770
- # data as a hash:
771
- #
772
- # {
773
- # sources: [ # required
774
- # {
775
- # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
776
- # chime_sdk_meeting_live_connector_configuration: { # required
777
- # arn: "Arn", # required
778
- # mux_type: "AudioWithCompositedVideo", # required, accepts AudioWithCompositedVideo, AudioWithActiveSpeakerVideo
779
- # composited_video: {
780
- # layout: "GridView", # accepts GridView
781
- # resolution: "HD", # accepts HD, FHD
782
- # grid_view_configuration: { # required
783
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
784
- # presenter_only_configuration: {
785
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
786
- # },
787
- # },
788
- # },
789
- # source_configuration: {
790
- # selected_video_streams: {
791
- # attendee_ids: ["GuidString"],
792
- # external_user_ids: ["ExternalUserIdType"],
793
- # },
794
- # },
795
- # },
796
- # },
797
- # ],
798
- # sinks: [ # required
799
- # {
800
- # sink_type: "RTMP", # required, accepts RTMP
801
- # rtmp_configuration: { # required
802
- # url: "SensitiveString", # required
803
- # audio_channels: "Stereo", # accepts Stereo, Mono
804
- # audio_sample_rate: "AudioSampleRateOption",
805
- # },
806
- # },
807
- # ],
808
- # client_request_token: "ClientRequestToken",
809
- # tags: [
810
- # {
811
- # key: "TagKey", # required
812
- # value: "TagValue", # required
813
- # },
814
- # ],
815
- # }
816
- #
817
430
  # @!attribute [rw] sources
818
431
  # The media pipeline's data sources.
819
432
  # @return [Array<Types::LiveConnectorSourceConfiguration>]
@@ -858,13 +471,6 @@ module Aws::ChimeSDKMediaPipelines
858
471
 
859
472
  # The content configuration object's data channel.
860
473
  #
861
- # @note When making an API call, you may pass DataChannelConcatenationConfiguration
862
- # data as a hash:
863
- #
864
- # {
865
- # state: "Enabled", # required, accepts Enabled, Disabled
866
- # }
867
- #
868
474
  # @!attribute [rw] state
869
475
  # Enables or disables the configuration object.
870
476
  # @return [String]
@@ -877,13 +483,6 @@ module Aws::ChimeSDKMediaPipelines
877
483
  include Aws::Structure
878
484
  end
879
485
 
880
- # @note When making an API call, you may pass DeleteMediaCapturePipelineRequest
881
- # data as a hash:
882
- #
883
- # {
884
- # media_pipeline_id: "GuidString", # required
885
- # }
886
- #
887
486
  # @!attribute [rw] media_pipeline_id
888
487
  # The ID of the media pipeline being deleted.
889
488
  # @return [String]
@@ -896,13 +495,6 @@ module Aws::ChimeSDKMediaPipelines
896
495
  include Aws::Structure
897
496
  end
898
497
 
899
- # @note When making an API call, you may pass DeleteMediaPipelineRequest
900
- # data as a hash:
901
- #
902
- # {
903
- # media_pipeline_id: "GuidString", # required
904
- # }
905
- #
906
498
  # @!attribute [rw] media_pipeline_id
907
499
  # The ID of the media pipeline to delete.
908
500
  # @return [String]
@@ -938,13 +530,6 @@ module Aws::ChimeSDKMediaPipelines
938
530
  include Aws::Structure
939
531
  end
940
532
 
941
- # @note When making an API call, you may pass GetMediaCapturePipelineRequest
942
- # data as a hash:
943
- #
944
- # {
945
- # media_pipeline_id: "GuidString", # required
946
- # }
947
- #
948
533
  # @!attribute [rw] media_pipeline_id
949
534
  # The ID of the pipeline that you want to get.
950
535
  # @return [String]
@@ -969,13 +554,6 @@ module Aws::ChimeSDKMediaPipelines
969
554
  include Aws::Structure
970
555
  end
971
556
 
972
- # @note When making an API call, you may pass GetMediaPipelineRequest
973
- # data as a hash:
974
- #
975
- # {
976
- # media_pipeline_id: "GuidString", # required
977
- # }
978
- #
979
557
  # @!attribute [rw] media_pipeline_id
980
558
  # The ID of the pipeline that you want to get.
981
559
  # @return [String]
@@ -1002,16 +580,6 @@ module Aws::ChimeSDKMediaPipelines
1002
580
 
1003
581
  # Specifies the type of grid layout.
1004
582
  #
1005
- # @note When making an API call, you may pass GridViewConfiguration
1006
- # data as a hash:
1007
- #
1008
- # {
1009
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
1010
- # presenter_only_configuration: {
1011
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
1012
- # },
1013
- # }
1014
- #
1015
583
  # @!attribute [rw] content_share_layout
1016
584
  # Defines the layout of the video tiles when content sharing is
1017
585
  # enabled.
@@ -1030,14 +598,6 @@ module Aws::ChimeSDKMediaPipelines
1030
598
  include Aws::Structure
1031
599
  end
1032
600
 
1033
- # @note When making an API call, you may pass ListMediaCapturePipelinesRequest
1034
- # data as a hash:
1035
- #
1036
- # {
1037
- # next_token: "String",
1038
- # max_results: 1,
1039
- # }
1040
- #
1041
601
  # @!attribute [rw] next_token
1042
602
  # The token used to retrieve the next page of results.
1043
603
  # @return [String]
@@ -1073,14 +633,6 @@ module Aws::ChimeSDKMediaPipelines
1073
633
  include Aws::Structure
1074
634
  end
1075
635
 
1076
- # @note When making an API call, you may pass ListMediaPipelinesRequest
1077
- # data as a hash:
1078
- #
1079
- # {
1080
- # next_token: "String",
1081
- # max_results: 1,
1082
- # }
1083
- #
1084
636
  # @!attribute [rw] next_token
1085
637
  # The token used to retrieve the next page of results.
1086
638
  # @return [String]
@@ -1116,13 +668,6 @@ module Aws::ChimeSDKMediaPipelines
1116
668
  include Aws::Structure
1117
669
  end
1118
670
 
1119
- # @note When making an API call, you may pass ListTagsForResourceRequest
1120
- # data as a hash:
1121
- #
1122
- # {
1123
- # resource_arn: "AmazonResourceName", # required
1124
- # }
1125
- #
1126
671
  # @!attribute [rw] resource_arn
1127
672
  # The ARN of the media pipeline associated with any tags. The ARN
1128
673
  # consists of the pipeline's region, resource ID, and pipeline ID.
@@ -1150,15 +695,6 @@ module Aws::ChimeSDKMediaPipelines
1150
695
 
1151
696
  # The media pipeline's RTMP configuration object.
1152
697
  #
1153
- # @note When making an API call, you may pass LiveConnectorRTMPConfiguration
1154
- # data as a hash:
1155
- #
1156
- # {
1157
- # url: "SensitiveString", # required
1158
- # audio_channels: "Stereo", # accepts Stereo, Mono
1159
- # audio_sample_rate: "AudioSampleRateOption",
1160
- # }
1161
- #
1162
698
  # @!attribute [rw] url
1163
699
  # The URL of the RTMP configuration.
1164
700
  # @return [String]
@@ -1184,18 +720,6 @@ module Aws::ChimeSDKMediaPipelines
1184
720
 
1185
721
  # The media pipeline's sink configuration settings.
1186
722
  #
1187
- # @note When making an API call, you may pass LiveConnectorSinkConfiguration
1188
- # data as a hash:
1189
- #
1190
- # {
1191
- # sink_type: "RTMP", # required, accepts RTMP
1192
- # rtmp_configuration: { # required
1193
- # url: "SensitiveString", # required
1194
- # audio_channels: "Stereo", # accepts Stereo, Mono
1195
- # audio_sample_rate: "AudioSampleRateOption",
1196
- # },
1197
- # }
1198
- #
1199
723
  # @!attribute [rw] sink_type
1200
724
  # The sink configuration's sink type.
1201
725
  # @return [String]
@@ -1215,33 +739,6 @@ module Aws::ChimeSDKMediaPipelines
1215
739
 
1216
740
  # The data source configuration object of a streaming media pipeline.
1217
741
  #
1218
- # @note When making an API call, you may pass LiveConnectorSourceConfiguration
1219
- # data as a hash:
1220
- #
1221
- # {
1222
- # source_type: "ChimeSdkMeeting", # required, accepts ChimeSdkMeeting
1223
- # chime_sdk_meeting_live_connector_configuration: { # required
1224
- # arn: "Arn", # required
1225
- # mux_type: "AudioWithCompositedVideo", # required, accepts AudioWithCompositedVideo, AudioWithActiveSpeakerVideo
1226
- # composited_video: {
1227
- # layout: "GridView", # accepts GridView
1228
- # resolution: "HD", # accepts HD, FHD
1229
- # grid_view_configuration: { # required
1230
- # content_share_layout: "PresenterOnly", # required, accepts PresenterOnly, Horizontal, Vertical
1231
- # presenter_only_configuration: {
1232
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
1233
- # },
1234
- # },
1235
- # },
1236
- # source_configuration: {
1237
- # selected_video_streams: {
1238
- # attendee_ids: ["GuidString"],
1239
- # external_user_ids: ["ExternalUserIdType"],
1240
- # },
1241
- # },
1242
- # },
1243
- # }
1244
- #
1245
742
  # @!attribute [rw] source_type
1246
743
  # The source configuration's media source type.
1247
744
  # @return [String]
@@ -1324,38 +821,6 @@ module Aws::ChimeSDKMediaPipelines
1324
821
 
1325
822
  # The source configuration object of a media capture pipeline.
1326
823
  #
1327
- # @note When making an API call, you may pass MediaCapturePipelineSourceConfiguration
1328
- # data as a hash:
1329
- #
1330
- # {
1331
- # media_pipeline_arn: "Arn", # required
1332
- # chime_sdk_meeting_configuration: { # required
1333
- # artifacts_configuration: { # required
1334
- # audio: { # required
1335
- # state: "Enabled", # required, accepts Enabled
1336
- # },
1337
- # video: { # required
1338
- # state: "Enabled", # required, accepts Enabled, Disabled
1339
- # },
1340
- # content: { # required
1341
- # state: "Enabled", # required, accepts Enabled, Disabled
1342
- # },
1343
- # data_channel: { # required
1344
- # state: "Enabled", # required, accepts Enabled, Disabled
1345
- # },
1346
- # transcription_messages: { # required
1347
- # state: "Enabled", # required, accepts Enabled, Disabled
1348
- # },
1349
- # meeting_events: { # required
1350
- # state: "Enabled", # required, accepts Enabled, Disabled
1351
- # },
1352
- # composited_video: { # required
1353
- # state: "Enabled", # required, accepts Enabled, Disabled
1354
- # },
1355
- # },
1356
- # },
1357
- # }
1358
- #
1359
824
  # @!attribute [rw] media_pipeline_arn
1360
825
  # The media pipeline ARN in the configuration object of a media
1361
826
  # capture pipeline.
@@ -1529,13 +994,6 @@ module Aws::ChimeSDKMediaPipelines
1529
994
 
1530
995
  # The configuration object for an event concatenation pipeline.
1531
996
  #
1532
- # @note When making an API call, you may pass MeetingEventsConcatenationConfiguration
1533
- # data as a hash:
1534
- #
1535
- # {
1536
- # state: "Enabled", # required, accepts Enabled, Disabled
1537
- # }
1538
- #
1539
997
  # @!attribute [rw] state
1540
998
  # Enables or disables the configuration object.
1541
999
  # @return [String]
@@ -1574,13 +1032,6 @@ module Aws::ChimeSDKMediaPipelines
1574
1032
 
1575
1033
  # Defines the configuration for a presenter only video tile.
1576
1034
  #
1577
- # @note When making an API call, you may pass PresenterOnlyConfiguration
1578
- # data as a hash:
1579
- #
1580
- # {
1581
- # presenter_position: "TopLeft", # accepts TopLeft, TopRight, BottomLeft, BottomRight
1582
- # }
1583
- #
1584
1035
  # @!attribute [rw] presenter_position
1585
1036
  # Defines the position of the presenter video tile. Default:
1586
1037
  # `TopRight`.
@@ -1619,13 +1070,6 @@ module Aws::ChimeSDKMediaPipelines
1619
1070
 
1620
1071
  # The configuration settings for the S3 bucket.
1621
1072
  #
1622
- # @note When making an API call, you may pass S3BucketSinkConfiguration
1623
- # data as a hash:
1624
- #
1625
- # {
1626
- # destination: "Arn", # required
1627
- # }
1628
- #
1629
1073
  # @!attribute [rw] destination
1630
1074
  # The destination URL of the S3 bucket.
1631
1075
  # @return [String]
@@ -1641,14 +1085,6 @@ module Aws::ChimeSDKMediaPipelines
1641
1085
  # The video streams for a specified media pipeline. The total number of
1642
1086
  # video streams can't exceed 25.
1643
1087
  #
1644
- # @note When making an API call, you may pass SelectedVideoStreams
1645
- # data as a hash:
1646
- #
1647
- # {
1648
- # attendee_ids: ["GuidString"],
1649
- # external_user_ids: ["ExternalUserIdType"],
1650
- # }
1651
- #
1652
1088
  # @!attribute [rw] attendee_ids
1653
1089
  # The attendee IDs of the streams selected for a media pipeline.
1654
1090
  # @return [Array<String>]
@@ -1714,16 +1150,6 @@ module Aws::ChimeSDKMediaPipelines
1714
1150
 
1715
1151
  # Source configuration for a specified media pipeline.
1716
1152
  #
1717
- # @note When making an API call, you may pass SourceConfiguration
1718
- # data as a hash:
1719
- #
1720
- # {
1721
- # selected_video_streams: {
1722
- # attendee_ids: ["GuidString"],
1723
- # external_user_ids: ["ExternalUserIdType"],
1724
- # },
1725
- # }
1726
- #
1727
1153
  # @!attribute [rw] selected_video_streams
1728
1154
  # The selected video streams for a specified media pipeline. The
1729
1155
  # number of video streams can't exceed 25.
@@ -1739,14 +1165,6 @@ module Aws::ChimeSDKMediaPipelines
1739
1165
 
1740
1166
  # A key/value pair that grants users access to meeting resources.
1741
1167
  #
1742
- # @note When making an API call, you may pass Tag
1743
- # data as a hash:
1744
- #
1745
- # {
1746
- # key: "TagKey", # required
1747
- # value: "TagValue", # required
1748
- # }
1749
- #
1750
1168
  # @!attribute [rw] key
1751
1169
  # The key half of a tag.
1752
1170
  # @return [String]
@@ -1764,19 +1182,6 @@ module Aws::ChimeSDKMediaPipelines
1764
1182
  include Aws::Structure
1765
1183
  end
1766
1184
 
1767
- # @note When making an API call, you may pass TagResourceRequest
1768
- # data as a hash:
1769
- #
1770
- # {
1771
- # resource_arn: "AmazonResourceName", # required
1772
- # tags: [ # required
1773
- # {
1774
- # key: "TagKey", # required
1775
- # value: "TagValue", # required
1776
- # },
1777
- # ],
1778
- # }
1779
- #
1780
1185
  # @!attribute [rw] resource_arn
1781
1186
  # The ARN of the media pipeline associated with any tags. The ARN
1782
1187
  # consists of the pipeline's endpoint region, resource ID, and
@@ -1825,13 +1230,6 @@ module Aws::ChimeSDKMediaPipelines
1825
1230
 
1826
1231
  # The configuration object for concatenating transcription messages.
1827
1232
  #
1828
- # @note When making an API call, you may pass TranscriptionMessagesConcatenationConfiguration
1829
- # data as a hash:
1830
- #
1831
- # {
1832
- # state: "Enabled", # required, accepts Enabled, Disabled
1833
- # }
1834
- #
1835
1233
  # @!attribute [rw] state
1836
1234
  # Enables or disables the configuration object.
1837
1235
  # @return [String]
@@ -1867,14 +1265,6 @@ module Aws::ChimeSDKMediaPipelines
1867
1265
  include Aws::Structure
1868
1266
  end
1869
1267
 
1870
- # @note When making an API call, you may pass UntagResourceRequest
1871
- # data as a hash:
1872
- #
1873
- # {
1874
- # resource_arn: "AmazonResourceName", # required
1875
- # tag_keys: ["TagKey"], # required
1876
- # }
1877
- #
1878
1268
  # @!attribute [rw] resource_arn
1879
1269
  # The ARN of the pipeline that you want to untag.
1880
1270
  # @return [String]
@@ -1898,14 +1288,6 @@ module Aws::ChimeSDKMediaPipelines
1898
1288
 
1899
1289
  # The video artifact configuration object.
1900
1290
  #
1901
- # @note When making an API call, you may pass VideoArtifactsConfiguration
1902
- # data as a hash:
1903
- #
1904
- # {
1905
- # state: "Enabled", # required, accepts Enabled, Disabled
1906
- # mux_type: "VideoOnly", # accepts VideoOnly
1907
- # }
1908
- #
1909
1291
  # @!attribute [rw] state
1910
1292
  # Indicates whether the video artifact is enabled or disabled.
1911
1293
  # @return [String]
@@ -1925,13 +1307,6 @@ module Aws::ChimeSDKMediaPipelines
1925
1307
 
1926
1308
  # The configuration object of a video contacatentation pipeline.
1927
1309
  #
1928
- # @note When making an API call, you may pass VideoConcatenationConfiguration
1929
- # data as a hash:
1930
- #
1931
- # {
1932
- # state: "Enabled", # required, accepts Enabled, Disabled
1933
- # }
1934
- #
1935
1310
  # @!attribute [rw] state
1936
1311
  # Enables or disables the configuration object.
1937
1312
  # @return [String]
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-chimesdkmediapipelines/customizations'
52
52
  # @!group service
53
53
  module Aws::ChimeSDKMediaPipelines
54
54
 
55
- GEM_VERSION = '1.2.0'
55
+ GEM_VERSION = '1.3.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-chimesdkmediapipelines
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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