aws-sdk-kinesis 1.89.0 → 1.90.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-kinesis/async_client.rb +1 -1
- data/lib/aws-sdk-kinesis/client.rb +1 -1
- data/lib/aws-sdk-kinesis/endpoint_parameters.rb +8 -8
- data/lib/aws-sdk-kinesis.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a6736085f516ca2510d94734bac5c542f0df5de503df98f8fe48484d9e3d9ebd
|
|
4
|
+
data.tar.gz: d7ca22b1bd87600d8194c9f3f356ab567995abe145494773a5d4c1d7e45b3c1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0d5d077174ecee435925a7f8a79cb0ca0636442302af64fdb122b9ff7005e56bed32cc5b51555373aa62901c547a5fa0942b1ab67ec8d400c4ab0e5a523a83d
|
|
7
|
+
data.tar.gz: 6e31b996883744ea63af66267f26cc7ad879ac1dca7d59625bd73b4bd9c534e7993b39f94e44d9e8aea8042fb17fc6fd99c05c5f90b53f4252753f599f06e920
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.90.0
|
|
@@ -13,42 +13,42 @@ module Aws::Kinesis
|
|
|
13
13
|
# @!attribute region
|
|
14
14
|
# The AWS region used to dispatch the request.
|
|
15
15
|
#
|
|
16
|
-
# @return [
|
|
16
|
+
# @return [string]
|
|
17
17
|
#
|
|
18
18
|
# @!attribute use_dual_stack
|
|
19
19
|
# When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.
|
|
20
20
|
#
|
|
21
|
-
# @return [
|
|
21
|
+
# @return [boolean]
|
|
22
22
|
#
|
|
23
23
|
# @!attribute use_fips
|
|
24
24
|
# When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.
|
|
25
25
|
#
|
|
26
|
-
# @return [
|
|
26
|
+
# @return [boolean]
|
|
27
27
|
#
|
|
28
28
|
# @!attribute endpoint
|
|
29
29
|
# Override the endpoint used to send this request
|
|
30
30
|
#
|
|
31
|
-
# @return [
|
|
31
|
+
# @return [string]
|
|
32
32
|
#
|
|
33
33
|
# @!attribute stream_arn
|
|
34
34
|
# The ARN of the Kinesis stream
|
|
35
35
|
#
|
|
36
|
-
# @return [
|
|
36
|
+
# @return [string]
|
|
37
37
|
#
|
|
38
38
|
# @!attribute operation_type
|
|
39
39
|
# Internal parameter to distinguish between Control/Data plane API and accordingly generate control/data plane endpoint
|
|
40
40
|
#
|
|
41
|
-
# @return [
|
|
41
|
+
# @return [string]
|
|
42
42
|
#
|
|
43
43
|
# @!attribute consumer_arn
|
|
44
44
|
# The ARN of the Kinesis consumer
|
|
45
45
|
#
|
|
46
|
-
# @return [
|
|
46
|
+
# @return [string]
|
|
47
47
|
#
|
|
48
48
|
# @!attribute resource_arn
|
|
49
49
|
# The ARN of the Kinesis resource
|
|
50
50
|
#
|
|
51
|
-
# @return [
|
|
51
|
+
# @return [string]
|
|
52
52
|
#
|
|
53
53
|
EndpointParameters = Struct.new(
|
|
54
54
|
:region,
|
data/lib/aws-sdk-kinesis.rb
CHANGED