aws-sdk-transcribestreamingservice 1.18.0 → 1.19.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: e3b892780a1b12c2874dcb899f6bcf4c6708a911ae19e7d5e7cd3175e63a2b8a
4
- data.tar.gz: 42907f747be112c6c74b9332a1aecd6d932af2c4c57411cfe916b02f6818b51e
3
+ metadata.gz: d9f4368f0819cd7e1a94202e61fbc5587dd8fe525b3f0f27c42e796fdaaee77c
4
+ data.tar.gz: c9d1db0914a0b1cfe474fa4add794d4f7cd81592b491dd00075b66451ca3aacf
5
5
  SHA512:
6
- metadata.gz: ec75dbefad6aaac5e8ac2d2a6856a42c7ec8d2670f58bfff906b7f818d346904e9fa82b2442c59e643e254d77f2a6f5bcccbb2034308a6100d3b7ea0d3e22a49
7
- data.tar.gz: 7f393917b5c18ac237be5748a0646e20b6c5382cabfa2a112df79082588f4534afc85fe93486019704a5ebe85b7969d4d4a65b1d4ff957da7c579893b98942cb
6
+ metadata.gz: 8db5df6a07c61ed34cfe9f32be55eda84617d43a0645e3cf97003aa0aee1ff1bdd578380db5e2455457c0239d1227233f10ca9fd61332706d948127022ce9ef5
7
+ data.tar.gz: c041d6bb663ae862f63a7beb430fd6c1798ecf74b6658ed0cf0229c6197106512b66a344996f09a4c06e78f720d4e2e85c62bcacc76b3dda22641f270689b1e9
@@ -46,9 +46,9 @@ require_relative 'aws-sdk-transcribestreamingservice/event_streams'
46
46
  #
47
47
  # See {Errors} for more information.
48
48
  #
49
- # @service
49
+ # @!group service
50
50
  module Aws::TranscribeStreamingService
51
51
 
52
- GEM_VERSION = '1.18.0'
52
+ GEM_VERSION = '1.19.0'
53
53
 
54
54
  end
@@ -68,13 +68,28 @@ module Aws::TranscribeStreamingService
68
68
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
69
69
  # credentials.
70
70
  #
71
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
72
+ # shared file, such as `~/.aws/config`.
73
+ #
74
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
75
+ #
76
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
77
+ # assume a role after providing credentials via the web.
78
+ #
79
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
80
+ # access token generated from `aws login`.
81
+ #
82
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
83
+ # process that outputs to stdout.
84
+ #
71
85
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
72
86
  # from an EC2 IMDS on an EC2 instance.
73
87
  #
74
- # * `Aws::SharedCredentials` - Used for loading credentials from a
75
- # shared file, such as `~/.aws/config`.
88
+ # * `Aws::ECSCredentials` - Used for loading credentials from
89
+ # instances running in ECS.
76
90
  #
77
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
91
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
92
+ # from the Cognito Identity service.
78
93
  #
79
94
  # When `:credentials` are not configured directly, the following
80
95
  # locations will be searched for credentials:
@@ -84,10 +99,10 @@ module Aws::TranscribeStreamingService
84
99
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
85
100
  # * `~/.aws/credentials`
86
101
  # * `~/.aws/config`
87
- # * EC2 IMDS instance profile - When used by default, the timeouts are
88
- # very aggressive. Construct and pass an instance of
89
- # `Aws::InstanceProfileCredentails` to enable retries and extended
90
- # timeouts.
102
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
103
+ # are very aggressive. Construct and pass an instance of
104
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
105
+ # enable retries and extended timeouts.
91
106
  #
92
107
  # @option options [required, String] :region
93
108
  # The AWS region to connect to. The configured `:region` is
@@ -485,7 +500,7 @@ module Aws::TranscribeStreamingService
485
500
  http_response: Seahorse::Client::Http::AsyncResponse.new,
486
501
  config: config)
487
502
  context[:gem_name] = 'aws-sdk-transcribestreamingservice'
488
- context[:gem_version] = '1.18.0'
503
+ context[:gem_version] = '1.19.0'
489
504
  Seahorse::Client::Request.new(handlers, context)
490
505
  end
491
506
 
@@ -87,13 +87,28 @@ module Aws::TranscribeStreamingService
87
87
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
88
88
  # credentials.
89
89
  #
90
+ # * `Aws::SharedCredentials` - Used for loading static credentials from a
91
+ # shared file, such as `~/.aws/config`.
92
+ #
93
+ # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
94
+ #
95
+ # * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
96
+ # assume a role after providing credentials via the web.
97
+ #
98
+ # * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
99
+ # access token generated from `aws login`.
100
+ #
101
+ # * `Aws::ProcessCredentials` - Used for loading credentials from a
102
+ # process that outputs to stdout.
103
+ #
90
104
  # * `Aws::InstanceProfileCredentials` - Used for loading credentials
91
105
  # from an EC2 IMDS on an EC2 instance.
92
106
  #
93
- # * `Aws::SharedCredentials` - Used for loading credentials from a
94
- # shared file, such as `~/.aws/config`.
107
+ # * `Aws::ECSCredentials` - Used for loading credentials from
108
+ # instances running in ECS.
95
109
  #
96
- # * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
110
+ # * `Aws::CognitoIdentityCredentials` - Used for loading credentials
111
+ # from the Cognito Identity service.
97
112
  #
98
113
  # When `:credentials` are not configured directly, the following
99
114
  # locations will be searched for credentials:
@@ -103,10 +118,10 @@ module Aws::TranscribeStreamingService
103
118
  # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
104
119
  # * `~/.aws/credentials`
105
120
  # * `~/.aws/config`
106
- # * EC2 IMDS instance profile - When used by default, the timeouts are
107
- # very aggressive. Construct and pass an instance of
108
- # `Aws::InstanceProfileCredentails` to enable retries and extended
109
- # timeouts.
121
+ # * EC2/ECS IMDS instance profile - When used by default, the timeouts
122
+ # are very aggressive. Construct and pass an instance of
123
+ # `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
124
+ # enable retries and extended timeouts.
110
125
  #
111
126
  # @option options [required, String] :region
112
127
  # The AWS region to connect to. The configured `:region` is
@@ -336,7 +351,7 @@ module Aws::TranscribeStreamingService
336
351
  params: params,
337
352
  config: config)
338
353
  context[:gem_name] = 'aws-sdk-transcribestreamingservice'
339
- context[:gem_version] = '1.18.0'
354
+ context[:gem_version] = '1.19.0'
340
355
  Seahorse::Client::Request.new(handlers, context)
341
356
  end
342
357
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transcribestreamingservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.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: 2020-08-19 00:00:00.000000000 Z
11
+ date: 2020-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core