aws-sdk-ivsrealtime 1.11.0 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +5 -0
 - data/VERSION +1 -1
 - data/lib/aws-sdk-ivsrealtime/client.rb +568 -5
 - data/lib/aws-sdk-ivsrealtime/client_api.rb +448 -0
 - data/lib/aws-sdk-ivsrealtime/endpoint_provider.rb +1 -1
 - data/lib/aws-sdk-ivsrealtime/endpoints.rb +168 -0
 - data/lib/aws-sdk-ivsrealtime/plugins/endpoints.rb +24 -0
 - data/lib/aws-sdk-ivsrealtime/types.rb +978 -58
 - data/lib/aws-sdk-ivsrealtime.rb +2 -2
 - metadata +2 -2
 
| 
         @@ -12,6 +12,20 @@ module Aws::IVSRealTime 
     | 
|
| 
       12 
12 
     | 
    
         
             
              # @api private
         
     | 
| 
       13 
13 
     | 
    
         
             
              module Endpoints
         
     | 
| 
       14 
14 
     | 
    
         | 
| 
      
 15 
     | 
    
         
            +
                class CreateEncoderConfiguration
         
     | 
| 
      
 16 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 17 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 18 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 19 
     | 
    
         
            +
                    end
         
     | 
| 
      
 20 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 21 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 22 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 23 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 24 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 25 
     | 
    
         
            +
                    )
         
     | 
| 
      
 26 
     | 
    
         
            +
                  end
         
     | 
| 
      
 27 
     | 
    
         
            +
                end
         
     | 
| 
      
 28 
     | 
    
         
            +
             
     | 
| 
       15 
29 
     | 
    
         
             
                class CreateParticipantToken
         
     | 
| 
       16 
30 
     | 
    
         
             
                  def self.build(context)
         
     | 
| 
       17 
31 
     | 
    
         
             
                    unless context.config.regional_endpoint
         
     | 
| 
         @@ -40,6 +54,34 @@ module Aws::IVSRealTime 
     | 
|
| 
       40 
54 
     | 
    
         
             
                  end
         
     | 
| 
       41 
55 
     | 
    
         
             
                end
         
     | 
| 
       42 
56 
     | 
    
         | 
| 
      
 57 
     | 
    
         
            +
                class CreateStorageConfiguration
         
     | 
| 
      
 58 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 59 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 60 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 61 
     | 
    
         
            +
                    end
         
     | 
| 
      
 62 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 63 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 64 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 65 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 66 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 67 
     | 
    
         
            +
                    )
         
     | 
| 
      
 68 
     | 
    
         
            +
                  end
         
     | 
| 
      
 69 
     | 
    
         
            +
                end
         
     | 
| 
      
 70 
     | 
    
         
            +
             
     | 
| 
      
 71 
     | 
    
         
            +
                class DeleteEncoderConfiguration
         
     | 
| 
      
 72 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 73 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 74 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 75 
     | 
    
         
            +
                    end
         
     | 
| 
      
 76 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 77 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 78 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 79 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 80 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 81 
     | 
    
         
            +
                    )
         
     | 
| 
      
 82 
     | 
    
         
            +
                  end
         
     | 
| 
      
 83 
     | 
    
         
            +
                end
         
     | 
| 
      
 84 
     | 
    
         
            +
             
     | 
| 
       43 
85 
     | 
    
         
             
                class DeleteStage
         
     | 
| 
       44 
86 
     | 
    
         
             
                  def self.build(context)
         
     | 
| 
       45 
87 
     | 
    
         
             
                    unless context.config.regional_endpoint
         
     | 
| 
         @@ -54,6 +96,20 @@ module Aws::IVSRealTime 
     | 
|
| 
       54 
96 
     | 
    
         
             
                  end
         
     | 
| 
       55 
97 
     | 
    
         
             
                end
         
     | 
| 
       56 
98 
     | 
    
         | 
| 
      
 99 
     | 
    
         
            +
                class DeleteStorageConfiguration
         
     | 
| 
      
 100 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 101 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 102 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 103 
     | 
    
         
            +
                    end
         
     | 
| 
      
 104 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 105 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 106 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 107 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 108 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 109 
     | 
    
         
            +
                    )
         
     | 
| 
      
 110 
     | 
    
         
            +
                  end
         
     | 
| 
      
 111 
     | 
    
         
            +
                end
         
     | 
| 
      
 112 
     | 
    
         
            +
             
     | 
| 
       57 
113 
     | 
    
         
             
                class DisconnectParticipant
         
     | 
| 
       58 
114 
     | 
    
         
             
                  def self.build(context)
         
     | 
| 
       59 
115 
     | 
    
         
             
                    unless context.config.regional_endpoint
         
     | 
| 
         @@ -68,6 +124,34 @@ module Aws::IVSRealTime 
     | 
|
| 
       68 
124 
     | 
    
         
             
                  end
         
     | 
| 
       69 
125 
     | 
    
         
             
                end
         
     | 
| 
       70 
126 
     | 
    
         | 
| 
      
 127 
     | 
    
         
            +
                class GetComposition
         
     | 
| 
      
 128 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 129 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 130 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 131 
     | 
    
         
            +
                    end
         
     | 
| 
      
 132 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 133 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 134 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 135 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 136 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 137 
     | 
    
         
            +
                    )
         
     | 
| 
      
 138 
     | 
    
         
            +
                  end
         
     | 
| 
      
 139 
     | 
    
         
            +
                end
         
     | 
| 
      
 140 
     | 
    
         
            +
             
     | 
| 
      
 141 
     | 
    
         
            +
                class GetEncoderConfiguration
         
     | 
| 
      
 142 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 143 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 144 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 145 
     | 
    
         
            +
                    end
         
     | 
| 
      
 146 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 147 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 148 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 149 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 150 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 151 
     | 
    
         
            +
                    )
         
     | 
| 
      
 152 
     | 
    
         
            +
                  end
         
     | 
| 
      
 153 
     | 
    
         
            +
                end
         
     | 
| 
      
 154 
     | 
    
         
            +
             
     | 
| 
       71 
155 
     | 
    
         
             
                class GetParticipant
         
     | 
| 
       72 
156 
     | 
    
         
             
                  def self.build(context)
         
     | 
| 
       73 
157 
     | 
    
         
             
                    unless context.config.regional_endpoint
         
     | 
| 
         @@ -110,6 +194,48 @@ module Aws::IVSRealTime 
     | 
|
| 
       110 
194 
     | 
    
         
             
                  end
         
     | 
| 
       111 
195 
     | 
    
         
             
                end
         
     | 
| 
       112 
196 
     | 
    
         | 
| 
      
 197 
     | 
    
         
            +
                class GetStorageConfiguration
         
     | 
| 
      
 198 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 199 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 200 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 201 
     | 
    
         
            +
                    end
         
     | 
| 
      
 202 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 203 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 204 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 205 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 206 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 207 
     | 
    
         
            +
                    )
         
     | 
| 
      
 208 
     | 
    
         
            +
                  end
         
     | 
| 
      
 209 
     | 
    
         
            +
                end
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
                class ListCompositions
         
     | 
| 
      
 212 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 213 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 214 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 215 
     | 
    
         
            +
                    end
         
     | 
| 
      
 216 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 217 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 218 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 219 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 220 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 221 
     | 
    
         
            +
                    )
         
     | 
| 
      
 222 
     | 
    
         
            +
                  end
         
     | 
| 
      
 223 
     | 
    
         
            +
                end
         
     | 
| 
      
 224 
     | 
    
         
            +
             
     | 
| 
      
 225 
     | 
    
         
            +
                class ListEncoderConfigurations
         
     | 
| 
      
 226 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 227 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 228 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 229 
     | 
    
         
            +
                    end
         
     | 
| 
      
 230 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 231 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 232 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 233 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 234 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 235 
     | 
    
         
            +
                    )
         
     | 
| 
      
 236 
     | 
    
         
            +
                  end
         
     | 
| 
      
 237 
     | 
    
         
            +
                end
         
     | 
| 
      
 238 
     | 
    
         
            +
             
     | 
| 
       113 
239 
     | 
    
         
             
                class ListParticipantEvents
         
     | 
| 
       114 
240 
     | 
    
         
             
                  def self.build(context)
         
     | 
| 
       115 
241 
     | 
    
         
             
                    unless context.config.regional_endpoint
         
     | 
| 
         @@ -166,6 +292,20 @@ module Aws::IVSRealTime 
     | 
|
| 
       166 
292 
     | 
    
         
             
                  end
         
     | 
| 
       167 
293 
     | 
    
         
             
                end
         
     | 
| 
       168 
294 
     | 
    
         | 
| 
      
 295 
     | 
    
         
            +
                class ListStorageConfigurations
         
     | 
| 
      
 296 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 297 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 298 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 299 
     | 
    
         
            +
                    end
         
     | 
| 
      
 300 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 301 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 302 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 303 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 304 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 305 
     | 
    
         
            +
                    )
         
     | 
| 
      
 306 
     | 
    
         
            +
                  end
         
     | 
| 
      
 307 
     | 
    
         
            +
                end
         
     | 
| 
      
 308 
     | 
    
         
            +
             
     | 
| 
       169 
309 
     | 
    
         
             
                class ListTagsForResource
         
     | 
| 
       170 
310 
     | 
    
         
             
                  def self.build(context)
         
     | 
| 
       171 
311 
     | 
    
         
             
                    unless context.config.regional_endpoint
         
     | 
| 
         @@ -180,6 +320,34 @@ module Aws::IVSRealTime 
     | 
|
| 
       180 
320 
     | 
    
         
             
                  end
         
     | 
| 
       181 
321 
     | 
    
         
             
                end
         
     | 
| 
       182 
322 
     | 
    
         | 
| 
      
 323 
     | 
    
         
            +
                class StartComposition
         
     | 
| 
      
 324 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 325 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 326 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 327 
     | 
    
         
            +
                    end
         
     | 
| 
      
 328 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 329 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 330 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 331 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 332 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 333 
     | 
    
         
            +
                    )
         
     | 
| 
      
 334 
     | 
    
         
            +
                  end
         
     | 
| 
      
 335 
     | 
    
         
            +
                end
         
     | 
| 
      
 336 
     | 
    
         
            +
             
     | 
| 
      
 337 
     | 
    
         
            +
                class StopComposition
         
     | 
| 
      
 338 
     | 
    
         
            +
                  def self.build(context)
         
     | 
| 
      
 339 
     | 
    
         
            +
                    unless context.config.regional_endpoint
         
     | 
| 
      
 340 
     | 
    
         
            +
                      endpoint = context.config.endpoint.to_s
         
     | 
| 
      
 341 
     | 
    
         
            +
                    end
         
     | 
| 
      
 342 
     | 
    
         
            +
                    Aws::IVSRealTime::EndpointParameters.new(
         
     | 
| 
      
 343 
     | 
    
         
            +
                      region: context.config.region,
         
     | 
| 
      
 344 
     | 
    
         
            +
                      use_dual_stack: context.config.use_dualstack_endpoint,
         
     | 
| 
      
 345 
     | 
    
         
            +
                      use_fips: context.config.use_fips_endpoint,
         
     | 
| 
      
 346 
     | 
    
         
            +
                      endpoint: endpoint,
         
     | 
| 
      
 347 
     | 
    
         
            +
                    )
         
     | 
| 
      
 348 
     | 
    
         
            +
                  end
         
     | 
| 
      
 349 
     | 
    
         
            +
                end
         
     | 
| 
      
 350 
     | 
    
         
            +
             
     | 
| 
       183 
351 
     | 
    
         
             
                class TagResource
         
     | 
| 
       184 
352 
     | 
    
         
             
                  def self.build(context)
         
     | 
| 
       185 
353 
     | 
    
         
             
                    unless context.config.regional_endpoint
         
     | 
| 
         @@ -56,20 +56,38 @@ module Aws::IVSRealTime 
     | 
|
| 
       56 
56 
     | 
    
         | 
| 
       57 
57 
     | 
    
         
             
                    def parameters_for_operation(context)
         
     | 
| 
       58 
58 
     | 
    
         
             
                      case context.operation_name
         
     | 
| 
      
 59 
     | 
    
         
            +
                      when :create_encoder_configuration
         
     | 
| 
      
 60 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::CreateEncoderConfiguration.build(context)
         
     | 
| 
       59 
61 
     | 
    
         
             
                      when :create_participant_token
         
     | 
| 
       60 
62 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::CreateParticipantToken.build(context)
         
     | 
| 
       61 
63 
     | 
    
         
             
                      when :create_stage
         
     | 
| 
       62 
64 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::CreateStage.build(context)
         
     | 
| 
      
 65 
     | 
    
         
            +
                      when :create_storage_configuration
         
     | 
| 
      
 66 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::CreateStorageConfiguration.build(context)
         
     | 
| 
      
 67 
     | 
    
         
            +
                      when :delete_encoder_configuration
         
     | 
| 
      
 68 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::DeleteEncoderConfiguration.build(context)
         
     | 
| 
       63 
69 
     | 
    
         
             
                      when :delete_stage
         
     | 
| 
       64 
70 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::DeleteStage.build(context)
         
     | 
| 
      
 71 
     | 
    
         
            +
                      when :delete_storage_configuration
         
     | 
| 
      
 72 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::DeleteStorageConfiguration.build(context)
         
     | 
| 
       65 
73 
     | 
    
         
             
                      when :disconnect_participant
         
     | 
| 
       66 
74 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::DisconnectParticipant.build(context)
         
     | 
| 
      
 75 
     | 
    
         
            +
                      when :get_composition
         
     | 
| 
      
 76 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::GetComposition.build(context)
         
     | 
| 
      
 77 
     | 
    
         
            +
                      when :get_encoder_configuration
         
     | 
| 
      
 78 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::GetEncoderConfiguration.build(context)
         
     | 
| 
       67 
79 
     | 
    
         
             
                      when :get_participant
         
     | 
| 
       68 
80 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::GetParticipant.build(context)
         
     | 
| 
       69 
81 
     | 
    
         
             
                      when :get_stage
         
     | 
| 
       70 
82 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::GetStage.build(context)
         
     | 
| 
       71 
83 
     | 
    
         
             
                      when :get_stage_session
         
     | 
| 
       72 
84 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::GetStageSession.build(context)
         
     | 
| 
      
 85 
     | 
    
         
            +
                      when :get_storage_configuration
         
     | 
| 
      
 86 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::GetStorageConfiguration.build(context)
         
     | 
| 
      
 87 
     | 
    
         
            +
                      when :list_compositions
         
     | 
| 
      
 88 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::ListCompositions.build(context)
         
     | 
| 
      
 89 
     | 
    
         
            +
                      when :list_encoder_configurations
         
     | 
| 
      
 90 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::ListEncoderConfigurations.build(context)
         
     | 
| 
       73 
91 
     | 
    
         
             
                      when :list_participant_events
         
     | 
| 
       74 
92 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::ListParticipantEvents.build(context)
         
     | 
| 
       75 
93 
     | 
    
         
             
                      when :list_participants
         
     | 
| 
         @@ -78,8 +96,14 @@ module Aws::IVSRealTime 
     | 
|
| 
       78 
96 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::ListStageSessions.build(context)
         
     | 
| 
       79 
97 
     | 
    
         
             
                      when :list_stages
         
     | 
| 
       80 
98 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::ListStages.build(context)
         
     | 
| 
      
 99 
     | 
    
         
            +
                      when :list_storage_configurations
         
     | 
| 
      
 100 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::ListStorageConfigurations.build(context)
         
     | 
| 
       81 
101 
     | 
    
         
             
                      when :list_tags_for_resource
         
     | 
| 
       82 
102 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::ListTagsForResource.build(context)
         
     | 
| 
      
 103 
     | 
    
         
            +
                      when :start_composition
         
     | 
| 
      
 104 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::StartComposition.build(context)
         
     | 
| 
      
 105 
     | 
    
         
            +
                      when :stop_composition
         
     | 
| 
      
 106 
     | 
    
         
            +
                        Aws::IVSRealTime::Endpoints::StopComposition.build(context)
         
     | 
| 
       83 
107 
     | 
    
         
             
                      when :tag_resource
         
     | 
| 
       84 
108 
     | 
    
         
             
                        Aws::IVSRealTime::Endpoints::TagResource.build(context)
         
     | 
| 
       85 
109 
     | 
    
         
             
                      when :untag_resource
         
     |