aws-sdk-ivsrealtime 1.25.0 → 1.27.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ivsrealtime/client.rb +343 -45
- data/lib/aws-sdk-ivsrealtime/client_api.rb +156 -1
- data/lib/aws-sdk-ivsrealtime/endpoints.rb +70 -0
- data/lib/aws-sdk-ivsrealtime/plugins/endpoints.rb +10 -0
- data/lib/aws-sdk-ivsrealtime/types.rb +463 -90
- data/lib/aws-sdk-ivsrealtime.rb +1 -1
- data/sig/client.rbs +62 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +89 -1
- metadata +4 -4
    
        data/lib/aws-sdk-ivsrealtime.rb
    CHANGED
    
    
    
        data/sig/client.rbs
    CHANGED
    
    | @@ -50,6 +50,7 @@ module Aws | |
| 50 50 | 
             
                                  ?session_token: String,
         | 
| 51 51 | 
             
                                  ?sigv4a_signing_region_set: Array[String],
         | 
| 52 52 | 
             
                                  ?stub_responses: untyped,
         | 
| 53 | 
            +
                                  ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
         | 
| 53 54 | 
             
                                  ?token_provider: untyped,
         | 
| 54 55 | 
             
                                  ?use_dualstack_endpoint: bool,
         | 
| 55 56 | 
             
                                  ?use_fips_endpoint: bool,
         | 
| @@ -90,6 +91,22 @@ module Aws | |
| 90 91 | 
             
                                                    ) -> _CreateEncoderConfigurationResponseSuccess
         | 
| 91 92 | 
             
                                                  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEncoderConfigurationResponseSuccess
         | 
| 92 93 |  | 
| 94 | 
            +
                  interface _CreateIngestConfigurationResponseSuccess
         | 
| 95 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::CreateIngestConfigurationResponse]
         | 
| 96 | 
            +
                    def ingest_configuration: () -> Types::IngestConfiguration
         | 
| 97 | 
            +
                  end
         | 
| 98 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#create_ingest_configuration-instance_method
         | 
| 99 | 
            +
                  def create_ingest_configuration: (
         | 
| 100 | 
            +
                                                     ?name: ::String,
         | 
| 101 | 
            +
                                                     ?stage_arn: ::String,
         | 
| 102 | 
            +
                                                     ?user_id: ::String,
         | 
| 103 | 
            +
                                                     ?attributes: Hash[::String, ::String],
         | 
| 104 | 
            +
                                                     ingest_protocol: ("RTMP" | "RTMPS"),
         | 
| 105 | 
            +
                                                     ?insecure_ingest: bool,
         | 
| 106 | 
            +
                                                     ?tags: Hash[::String, ::String]
         | 
| 107 | 
            +
                                                   ) -> _CreateIngestConfigurationResponseSuccess
         | 
| 108 | 
            +
                                                 | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIngestConfigurationResponseSuccess
         | 
| 109 | 
            +
             | 
| 93 110 | 
             
                  interface _CreateParticipantTokenResponseSuccess
         | 
| 94 111 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::CreateParticipantTokenResponse]
         | 
| 95 112 | 
             
                    def participant_token: () -> Types::ParticipantToken
         | 
| @@ -151,6 +168,16 @@ module Aws | |
| 151 168 | 
             
                                                    ) -> _DeleteEncoderConfigurationResponseSuccess
         | 
| 152 169 | 
             
                                                  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEncoderConfigurationResponseSuccess
         | 
| 153 170 |  | 
| 171 | 
            +
                  interface _DeleteIngestConfigurationResponseSuccess
         | 
| 172 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIngestConfigurationResponse]
         | 
| 173 | 
            +
                  end
         | 
| 174 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#delete_ingest_configuration-instance_method
         | 
| 175 | 
            +
                  def delete_ingest_configuration: (
         | 
| 176 | 
            +
                                                     arn: ::String,
         | 
| 177 | 
            +
                                                     ?force: bool
         | 
| 178 | 
            +
                                                   ) -> _DeleteIngestConfigurationResponseSuccess
         | 
| 179 | 
            +
                                                 | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIngestConfigurationResponseSuccess
         | 
| 180 | 
            +
             | 
| 154 181 | 
             
                  interface _DeletePublicKeyResponseSuccess
         | 
| 155 182 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::DeletePublicKeyResponse]
         | 
| 156 183 | 
             
                  end
         | 
| @@ -209,6 +236,16 @@ module Aws | |
| 209 236 | 
             
                                                 ) -> _GetEncoderConfigurationResponseSuccess
         | 
| 210 237 | 
             
                                               | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEncoderConfigurationResponseSuccess
         | 
| 211 238 |  | 
| 239 | 
            +
                  interface _GetIngestConfigurationResponseSuccess
         | 
| 240 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::GetIngestConfigurationResponse]
         | 
| 241 | 
            +
                    def ingest_configuration: () -> Types::IngestConfiguration
         | 
| 242 | 
            +
                  end
         | 
| 243 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#get_ingest_configuration-instance_method
         | 
| 244 | 
            +
                  def get_ingest_configuration: (
         | 
| 245 | 
            +
                                                  arn: ::String
         | 
| 246 | 
            +
                                                ) -> _GetIngestConfigurationResponseSuccess
         | 
| 247 | 
            +
                                              | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIngestConfigurationResponseSuccess
         | 
| 248 | 
            +
             | 
| 212 249 | 
             
                  interface _GetParticipantResponseSuccess
         | 
| 213 250 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::GetParticipantResponse]
         | 
| 214 251 | 
             
                    def participant: () -> Types::Participant
         | 
| @@ -300,6 +337,20 @@ module Aws | |
| 300 337 | 
             
                                                   ) -> _ListEncoderConfigurationsResponseSuccess
         | 
| 301 338 | 
             
                                                 | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEncoderConfigurationsResponseSuccess
         | 
| 302 339 |  | 
| 340 | 
            +
                  interface _ListIngestConfigurationsResponseSuccess
         | 
| 341 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::ListIngestConfigurationsResponse]
         | 
| 342 | 
            +
                    def ingest_configurations: () -> ::Array[Types::IngestConfigurationSummary]
         | 
| 343 | 
            +
                    def next_token: () -> ::String
         | 
| 344 | 
            +
                  end
         | 
| 345 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#list_ingest_configurations-instance_method
         | 
| 346 | 
            +
                  def list_ingest_configurations: (
         | 
| 347 | 
            +
                                                    ?filter_by_stage_arn: ::String,
         | 
| 348 | 
            +
                                                    ?filter_by_state: ("ACTIVE" | "INACTIVE"),
         | 
| 349 | 
            +
                                                    ?next_token: ::String,
         | 
| 350 | 
            +
                                                    ?max_results: ::Integer
         | 
| 351 | 
            +
                                                  ) -> _ListIngestConfigurationsResponseSuccess
         | 
| 352 | 
            +
                                                | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIngestConfigurationsResponseSuccess
         | 
| 353 | 
            +
             | 
| 303 354 | 
             
                  interface _ListParticipantEventsResponseSuccess
         | 
| 304 355 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::ListParticipantEventsResponse]
         | 
| 305 356 | 
             
                    def events: () -> ::Array[Types::Event]
         | 
| @@ -470,6 +521,17 @@ module Aws | |
| 470 521 | 
             
                                      ) -> _UntagResourceResponseSuccess
         | 
| 471 522 | 
             
                                    | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
         | 
| 472 523 |  | 
| 524 | 
            +
                  interface _UpdateIngestConfigurationResponseSuccess
         | 
| 525 | 
            +
                    include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIngestConfigurationResponse]
         | 
| 526 | 
            +
                    def ingest_configuration: () -> Types::IngestConfiguration
         | 
| 527 | 
            +
                  end
         | 
| 528 | 
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IVSRealTime/Client.html#update_ingest_configuration-instance_method
         | 
| 529 | 
            +
                  def update_ingest_configuration: (
         | 
| 530 | 
            +
                                                     arn: ::String,
         | 
| 531 | 
            +
                                                     ?stage_arn: ::String
         | 
| 532 | 
            +
                                                   ) -> _UpdateIngestConfigurationResponseSuccess
         | 
| 533 | 
            +
                                                 | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIngestConfigurationResponseSuccess
         | 
| 534 | 
            +
             | 
| 473 535 | 
             
                  interface _UpdateStageResponseSuccess
         | 
| 474 536 | 
             
                    include ::Seahorse::Client::_ResponseSuccess[Types::UpdateStageResponse]
         | 
| 475 537 | 
             
                    def stage: () -> Types::Stage
         | 
    
        data/sig/resource.rbs
    CHANGED
    
    | @@ -50,6 +50,7 @@ module Aws | |
| 50 50 | 
             
                                    ?session_token: String,
         | 
| 51 51 | 
             
                                    ?sigv4a_signing_region_set: Array[String],
         | 
| 52 52 | 
             
                                    ?stub_responses: untyped,
         | 
| 53 | 
            +
                                    ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
         | 
| 53 54 | 
             
                                    ?token_provider: untyped,
         | 
| 54 55 | 
             
                                    ?use_dualstack_endpoint: bool,
         | 
| 55 56 | 
             
                                    ?use_fips_endpoint: bool,
         | 
    
        data/sig/types.rbs
    CHANGED
    
    | @@ -65,6 +65,22 @@ module Aws::IVSRealTime | |
| 65 65 | 
             
                  SENSITIVE: []
         | 
| 66 66 | 
             
                end
         | 
| 67 67 |  | 
| 68 | 
            +
                class CreateIngestConfigurationRequest
         | 
| 69 | 
            +
                  attr_accessor name: ::String
         | 
| 70 | 
            +
                  attr_accessor stage_arn: ::String
         | 
| 71 | 
            +
                  attr_accessor user_id: ::String
         | 
| 72 | 
            +
                  attr_accessor attributes: ::Hash[::String, ::String]
         | 
| 73 | 
            +
                  attr_accessor ingest_protocol: ("RTMP" | "RTMPS")
         | 
| 74 | 
            +
                  attr_accessor insecure_ingest: bool
         | 
| 75 | 
            +
                  attr_accessor tags: ::Hash[::String, ::String]
         | 
| 76 | 
            +
                  SENSITIVE: []
         | 
| 77 | 
            +
                end
         | 
| 78 | 
            +
             | 
| 79 | 
            +
                class CreateIngestConfigurationResponse
         | 
| 80 | 
            +
                  attr_accessor ingest_configuration: Types::IngestConfiguration
         | 
| 81 | 
            +
                  SENSITIVE: []
         | 
| 82 | 
            +
                end
         | 
| 83 | 
            +
             | 
| 68 84 | 
             
                class CreateParticipantTokenRequest
         | 
| 69 85 | 
             
                  attr_accessor stage_arn: ::String
         | 
| 70 86 | 
             
                  attr_accessor duration: ::Integer
         | 
| @@ -113,6 +129,15 @@ module Aws::IVSRealTime | |
| 113 129 | 
             
                class DeleteEncoderConfigurationResponse < Aws::EmptyStructure
         | 
| 114 130 | 
             
                end
         | 
| 115 131 |  | 
| 132 | 
            +
                class DeleteIngestConfigurationRequest
         | 
| 133 | 
            +
                  attr_accessor arn: ::String
         | 
| 134 | 
            +
                  attr_accessor force: bool
         | 
| 135 | 
            +
                  SENSITIVE: []
         | 
| 136 | 
            +
                end
         | 
| 137 | 
            +
             | 
| 138 | 
            +
                class DeleteIngestConfigurationResponse < Aws::EmptyStructure
         | 
| 139 | 
            +
                end
         | 
| 140 | 
            +
             | 
| 116 141 | 
             
                class DeletePublicKeyRequest
         | 
| 117 142 | 
             
                  attr_accessor arn: ::String
         | 
| 118 143 | 
             
                  SENSITIVE: []
         | 
| @@ -197,7 +222,7 @@ module Aws::IVSRealTime | |
| 197 222 | 
             
                  attr_accessor participant_id: ::String
         | 
| 198 223 | 
             
                  attr_accessor event_time: ::Time
         | 
| 199 224 | 
             
                  attr_accessor remote_participant_id: ::String
         | 
| 200 | 
            -
                  attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND")
         | 
| 225 | 
            +
                  attr_accessor error_code: ("INSUFFICIENT_CAPABILITIES" | "QUOTA_EXCEEDED" | "PUBLISHER_NOT_FOUND" | "BITRATE_EXCEEDED" | "RESOLUTION_EXCEEDED" | "STREAM_DURATION_EXCEEDED" | "INVALID_AUDIO_CODEC" | "INVALID_VIDEO_CODEC" | "INVALID_PROTOCOL" | "INVALID_STREAM_KEY" | "REUSE_OF_STREAM_KEY")
         | 
| 201 226 | 
             
                  SENSITIVE: []
         | 
| 202 227 | 
             
                end
         | 
| 203 228 |  | 
| @@ -221,6 +246,16 @@ module Aws::IVSRealTime | |
| 221 246 | 
             
                  SENSITIVE: []
         | 
| 222 247 | 
             
                end
         | 
| 223 248 |  | 
| 249 | 
            +
                class GetIngestConfigurationRequest
         | 
| 250 | 
            +
                  attr_accessor arn: ::String
         | 
| 251 | 
            +
                  SENSITIVE: []
         | 
| 252 | 
            +
                end
         | 
| 253 | 
            +
             | 
| 254 | 
            +
                class GetIngestConfigurationResponse
         | 
| 255 | 
            +
                  attr_accessor ingest_configuration: Types::IngestConfiguration
         | 
| 256 | 
            +
                  SENSITIVE: []
         | 
| 257 | 
            +
                end
         | 
| 258 | 
            +
             | 
| 224 259 | 
             
                class GetParticipantRequest
         | 
| 225 260 | 
             
                  attr_accessor stage_arn: ::String
         | 
| 226 261 | 
             
                  attr_accessor session_id: ::String
         | 
| @@ -295,6 +330,31 @@ module Aws::IVSRealTime | |
| 295 330 | 
             
                  SENSITIVE: []
         | 
| 296 331 | 
             
                end
         | 
| 297 332 |  | 
| 333 | 
            +
                class IngestConfiguration
         | 
| 334 | 
            +
                  attr_accessor name: ::String
         | 
| 335 | 
            +
                  attr_accessor arn: ::String
         | 
| 336 | 
            +
                  attr_accessor ingest_protocol: ("RTMP" | "RTMPS")
         | 
| 337 | 
            +
                  attr_accessor stream_key: ::String
         | 
| 338 | 
            +
                  attr_accessor stage_arn: ::String
         | 
| 339 | 
            +
                  attr_accessor participant_id: ::String
         | 
| 340 | 
            +
                  attr_accessor state: ("ACTIVE" | "INACTIVE")
         | 
| 341 | 
            +
                  attr_accessor user_id: ::String
         | 
| 342 | 
            +
                  attr_accessor attributes: ::Hash[::String, ::String]
         | 
| 343 | 
            +
                  attr_accessor tags: ::Hash[::String, ::String]
         | 
| 344 | 
            +
                  SENSITIVE: [:stream_key]
         | 
| 345 | 
            +
                end
         | 
| 346 | 
            +
             | 
| 347 | 
            +
                class IngestConfigurationSummary
         | 
| 348 | 
            +
                  attr_accessor name: ::String
         | 
| 349 | 
            +
                  attr_accessor arn: ::String
         | 
| 350 | 
            +
                  attr_accessor ingest_protocol: ("RTMP" | "RTMPS")
         | 
| 351 | 
            +
                  attr_accessor stage_arn: ::String
         | 
| 352 | 
            +
                  attr_accessor participant_id: ::String
         | 
| 353 | 
            +
                  attr_accessor state: ("ACTIVE" | "INACTIVE")
         | 
| 354 | 
            +
                  attr_accessor user_id: ::String
         | 
| 355 | 
            +
                  SENSITIVE: []
         | 
| 356 | 
            +
                end
         | 
| 357 | 
            +
             | 
| 298 358 | 
             
                class InternalServerException
         | 
| 299 359 | 
             
                  attr_accessor exception_message: ::String
         | 
| 300 360 | 
             
                  SENSITIVE: []
         | 
| @@ -332,6 +392,20 @@ module Aws::IVSRealTime | |
| 332 392 | 
             
                  SENSITIVE: []
         | 
| 333 393 | 
             
                end
         | 
| 334 394 |  | 
| 395 | 
            +
                class ListIngestConfigurationsRequest
         | 
| 396 | 
            +
                  attr_accessor filter_by_stage_arn: ::String
         | 
| 397 | 
            +
                  attr_accessor filter_by_state: ("ACTIVE" | "INACTIVE")
         | 
| 398 | 
            +
                  attr_accessor next_token: ::String
         | 
| 399 | 
            +
                  attr_accessor max_results: ::Integer
         | 
| 400 | 
            +
                  SENSITIVE: []
         | 
| 401 | 
            +
                end
         | 
| 402 | 
            +
             | 
| 403 | 
            +
                class ListIngestConfigurationsResponse
         | 
| 404 | 
            +
                  attr_accessor ingest_configurations: ::Array[Types::IngestConfigurationSummary]
         | 
| 405 | 
            +
                  attr_accessor next_token: ::String
         | 
| 406 | 
            +
                  SENSITIVE: []
         | 
| 407 | 
            +
                end
         | 
| 408 | 
            +
             | 
| 335 409 | 
             
                class ListParticipantEventsRequest
         | 
| 336 410 | 
             
                  attr_accessor stage_arn: ::String
         | 
| 337 411 | 
             
                  attr_accessor session_id: ::String
         | 
| @@ -440,6 +514,7 @@ module Aws::IVSRealTime | |
| 440 514 | 
             
                  attr_accessor recording_s3_bucket_name: ::String
         | 
| 441 515 | 
             
                  attr_accessor recording_s3_prefix: ::String
         | 
| 442 516 | 
             
                  attr_accessor recording_state: ("STARTING" | "ACTIVE" | "STOPPING" | "STOPPED" | "FAILED" | "DISABLED")
         | 
| 517 | 
            +
                  attr_accessor protocol: ("UNKNOWN" | "WHIP" | "RTMP" | "RTMPS")
         | 
| 443 518 | 
             
                  SENSITIVE: []
         | 
| 444 519 | 
             
                end
         | 
| 445 520 |  | 
| @@ -552,6 +627,8 @@ module Aws::IVSRealTime | |
| 552 627 | 
             
                class StageEndpoints
         | 
| 553 628 | 
             
                  attr_accessor events: ::String
         | 
| 554 629 | 
             
                  attr_accessor whip: ::String
         | 
| 630 | 
            +
                  attr_accessor rtmp: ::String
         | 
| 631 | 
            +
                  attr_accessor rtmps: ::String
         | 
| 555 632 | 
             
                  SENSITIVE: []
         | 
| 556 633 | 
             
                end
         | 
| 557 634 |  | 
| @@ -633,6 +710,17 @@ module Aws::IVSRealTime | |
| 633 710 | 
             
                class UntagResourceResponse < Aws::EmptyStructure
         | 
| 634 711 | 
             
                end
         | 
| 635 712 |  | 
| 713 | 
            +
                class UpdateIngestConfigurationRequest
         | 
| 714 | 
            +
                  attr_accessor arn: ::String
         | 
| 715 | 
            +
                  attr_accessor stage_arn: ::String
         | 
| 716 | 
            +
                  SENSITIVE: []
         | 
| 717 | 
            +
                end
         | 
| 718 | 
            +
             | 
| 719 | 
            +
                class UpdateIngestConfigurationResponse
         | 
| 720 | 
            +
                  attr_accessor ingest_configuration: Types::IngestConfiguration
         | 
| 721 | 
            +
                  SENSITIVE: []
         | 
| 722 | 
            +
                end
         | 
| 723 | 
            +
             | 
| 636 724 | 
             
                class UpdateStageRequest
         | 
| 637 725 | 
             
                  attr_accessor arn: ::String
         | 
| 638 726 | 
             
                  attr_accessor name: ::String
         | 
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-ivsrealtime
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.27.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: 2024- | 
| 11 | 
            +
            date: 2024-09-09 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sdk-core
         | 
| @@ -19,7 +19,7 @@ dependencies: | |
| 19 19 | 
             
                    version: '3'
         | 
| 20 20 | 
             
                - - ">="
         | 
| 21 21 | 
             
                  - !ruby/object:Gem::Version
         | 
| 22 | 
            -
                    version: 3. | 
| 22 | 
            +
                    version: 3.203.0
         | 
| 23 23 | 
             
              type: :runtime
         | 
| 24 24 | 
             
              prerelease: false
         | 
| 25 25 | 
             
              version_requirements: !ruby/object:Gem::Requirement
         | 
| @@ -29,7 +29,7 @@ dependencies: | |
| 29 29 | 
             
                    version: '3'
         | 
| 30 30 | 
             
                - - ">="
         | 
| 31 31 | 
             
                  - !ruby/object:Gem::Version
         | 
| 32 | 
            -
                    version: 3. | 
| 32 | 
            +
                    version: 3.203.0
         | 
| 33 33 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 34 34 | 
             
              name: aws-sigv4
         | 
| 35 35 | 
             
              requirement: !ruby/object:Gem::Requirement
         |