aws-sdk-appflow 1.93.0 → 1.94.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-appflow/client.rb +25 -3
- data/lib/aws-sdk-appflow/client_api.rb +5 -1
- data/lib/aws-sdk-appflow/types.rb +17 -4
- data/lib/aws-sdk-appflow.rb +1 -1
- data/sig/params.rbs +20 -10
- data/sig/types.rbs +4 -2
- 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: 5b7fa74dbe9c58787bf09b3e34a76953be38bab31dbbaffe2c34f90b12c41c6c
|
|
4
|
+
data.tar.gz: 17a8d8e3a1e255d16f64ac6d5a42160435de8c3fca22bec89707f1a38060ec5d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f0a170cbeb3531e013f12c5e86702084b12358a88695c775d150aece412cd289aa579eb16d6a2e91edb0e9f955a5913a1ffdeaf3a37e787720abd2298ef1aed1
|
|
7
|
+
data.tar.gz: 2dbe3670353adff088b7f75801d38b6e8c6a882c77404cfbdd296a224bfd1c581f7bca3f03abd79ddd283b2f6c340e7ba427456565a81a216b527769b28182cb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.94.0 (2026-09-08)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon AppFlow now supports key pair (RSA private key) authentication for the Snowflake connector. You can provide a privateKey in SnowflakeConnectorProfileCredentials, and password is no longer required. This is a non-breaking, additive change available via the AWS SDK and CLI.
|
|
8
|
+
|
|
4
9
|
1.93.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.94.0
|
|
@@ -721,6 +721,7 @@ module Aws::Appflow
|
|
|
721
721
|
# o_auth_request: {
|
|
722
722
|
# auth_code: "AuthCode",
|
|
723
723
|
# redirect_uri: "RedirectUri",
|
|
724
|
+
# code_verifier: "CodeVerifier",
|
|
724
725
|
# },
|
|
725
726
|
# },
|
|
726
727
|
# honeycode: {
|
|
@@ -729,6 +730,7 @@ module Aws::Appflow
|
|
|
729
730
|
# o_auth_request: {
|
|
730
731
|
# auth_code: "AuthCode",
|
|
731
732
|
# redirect_uri: "RedirectUri",
|
|
733
|
+
# code_verifier: "CodeVerifier",
|
|
732
734
|
# },
|
|
733
735
|
# },
|
|
734
736
|
# infor_nexus: {
|
|
@@ -744,6 +746,7 @@ module Aws::Appflow
|
|
|
744
746
|
# o_auth_request: {
|
|
745
747
|
# auth_code: "AuthCode",
|
|
746
748
|
# redirect_uri: "RedirectUri",
|
|
749
|
+
# code_verifier: "CodeVerifier",
|
|
747
750
|
# },
|
|
748
751
|
# },
|
|
749
752
|
# redshift: {
|
|
@@ -756,6 +759,7 @@ module Aws::Appflow
|
|
|
756
759
|
# o_auth_request: {
|
|
757
760
|
# auth_code: "AuthCode",
|
|
758
761
|
# redirect_uri: "RedirectUri",
|
|
762
|
+
# code_verifier: "CodeVerifier",
|
|
759
763
|
# },
|
|
760
764
|
# client_credentials_arn: "ClientCredentialsArn",
|
|
761
765
|
# o_auth_2_grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE, JWT_BEARER
|
|
@@ -772,6 +776,7 @@ module Aws::Appflow
|
|
|
772
776
|
# o_auth_request: {
|
|
773
777
|
# auth_code: "AuthCode",
|
|
774
778
|
# redirect_uri: "RedirectUri",
|
|
779
|
+
# code_verifier: "CodeVerifier",
|
|
775
780
|
# },
|
|
776
781
|
# },
|
|
777
782
|
# },
|
|
@@ -785,11 +790,13 @@ module Aws::Appflow
|
|
|
785
790
|
# o_auth_request: {
|
|
786
791
|
# auth_code: "AuthCode",
|
|
787
792
|
# redirect_uri: "RedirectUri",
|
|
793
|
+
# code_verifier: "CodeVerifier",
|
|
788
794
|
# },
|
|
789
795
|
# },
|
|
790
796
|
# snowflake: {
|
|
791
797
|
# username: "Username", # required
|
|
792
|
-
# password: "Password",
|
|
798
|
+
# password: "Password",
|
|
799
|
+
# private_key: "PrivateKey",
|
|
793
800
|
# },
|
|
794
801
|
# trendmicro: {
|
|
795
802
|
# api_secret_key: "ApiSecretKey", # required
|
|
@@ -805,6 +812,7 @@ module Aws::Appflow
|
|
|
805
812
|
# o_auth_request: {
|
|
806
813
|
# auth_code: "AuthCode",
|
|
807
814
|
# redirect_uri: "RedirectUri",
|
|
815
|
+
# code_verifier: "CodeVerifier",
|
|
808
816
|
# },
|
|
809
817
|
# },
|
|
810
818
|
# sapo_data: {
|
|
@@ -820,6 +828,7 @@ module Aws::Appflow
|
|
|
820
828
|
# o_auth_request: {
|
|
821
829
|
# auth_code: "AuthCode",
|
|
822
830
|
# redirect_uri: "RedirectUri",
|
|
831
|
+
# code_verifier: "CodeVerifier",
|
|
823
832
|
# },
|
|
824
833
|
# },
|
|
825
834
|
# },
|
|
@@ -837,6 +846,7 @@ module Aws::Appflow
|
|
|
837
846
|
# o_auth_request: {
|
|
838
847
|
# auth_code: "AuthCode",
|
|
839
848
|
# redirect_uri: "RedirectUri",
|
|
849
|
+
# code_verifier: "CodeVerifier",
|
|
840
850
|
# },
|
|
841
851
|
# },
|
|
842
852
|
# api_key: {
|
|
@@ -856,6 +866,7 @@ module Aws::Appflow
|
|
|
856
866
|
# o_auth_request: {
|
|
857
867
|
# auth_code: "AuthCode",
|
|
858
868
|
# redirect_uri: "RedirectUri",
|
|
869
|
+
# code_verifier: "CodeVerifier",
|
|
859
870
|
# },
|
|
860
871
|
# client_credentials_arn: "ClientCredentialsArn",
|
|
861
872
|
# },
|
|
@@ -2765,6 +2776,7 @@ module Aws::Appflow
|
|
|
2765
2776
|
# o_auth_request: {
|
|
2766
2777
|
# auth_code: "AuthCode",
|
|
2767
2778
|
# redirect_uri: "RedirectUri",
|
|
2779
|
+
# code_verifier: "CodeVerifier",
|
|
2768
2780
|
# },
|
|
2769
2781
|
# },
|
|
2770
2782
|
# honeycode: {
|
|
@@ -2773,6 +2785,7 @@ module Aws::Appflow
|
|
|
2773
2785
|
# o_auth_request: {
|
|
2774
2786
|
# auth_code: "AuthCode",
|
|
2775
2787
|
# redirect_uri: "RedirectUri",
|
|
2788
|
+
# code_verifier: "CodeVerifier",
|
|
2776
2789
|
# },
|
|
2777
2790
|
# },
|
|
2778
2791
|
# infor_nexus: {
|
|
@@ -2788,6 +2801,7 @@ module Aws::Appflow
|
|
|
2788
2801
|
# o_auth_request: {
|
|
2789
2802
|
# auth_code: "AuthCode",
|
|
2790
2803
|
# redirect_uri: "RedirectUri",
|
|
2804
|
+
# code_verifier: "CodeVerifier",
|
|
2791
2805
|
# },
|
|
2792
2806
|
# },
|
|
2793
2807
|
# redshift: {
|
|
@@ -2800,6 +2814,7 @@ module Aws::Appflow
|
|
|
2800
2814
|
# o_auth_request: {
|
|
2801
2815
|
# auth_code: "AuthCode",
|
|
2802
2816
|
# redirect_uri: "RedirectUri",
|
|
2817
|
+
# code_verifier: "CodeVerifier",
|
|
2803
2818
|
# },
|
|
2804
2819
|
# client_credentials_arn: "ClientCredentialsArn",
|
|
2805
2820
|
# o_auth_2_grant_type: "CLIENT_CREDENTIALS", # accepts CLIENT_CREDENTIALS, AUTHORIZATION_CODE, JWT_BEARER
|
|
@@ -2816,6 +2831,7 @@ module Aws::Appflow
|
|
|
2816
2831
|
# o_auth_request: {
|
|
2817
2832
|
# auth_code: "AuthCode",
|
|
2818
2833
|
# redirect_uri: "RedirectUri",
|
|
2834
|
+
# code_verifier: "CodeVerifier",
|
|
2819
2835
|
# },
|
|
2820
2836
|
# },
|
|
2821
2837
|
# },
|
|
@@ -2829,11 +2845,13 @@ module Aws::Appflow
|
|
|
2829
2845
|
# o_auth_request: {
|
|
2830
2846
|
# auth_code: "AuthCode",
|
|
2831
2847
|
# redirect_uri: "RedirectUri",
|
|
2848
|
+
# code_verifier: "CodeVerifier",
|
|
2832
2849
|
# },
|
|
2833
2850
|
# },
|
|
2834
2851
|
# snowflake: {
|
|
2835
2852
|
# username: "Username", # required
|
|
2836
|
-
# password: "Password",
|
|
2853
|
+
# password: "Password",
|
|
2854
|
+
# private_key: "PrivateKey",
|
|
2837
2855
|
# },
|
|
2838
2856
|
# trendmicro: {
|
|
2839
2857
|
# api_secret_key: "ApiSecretKey", # required
|
|
@@ -2849,6 +2867,7 @@ module Aws::Appflow
|
|
|
2849
2867
|
# o_auth_request: {
|
|
2850
2868
|
# auth_code: "AuthCode",
|
|
2851
2869
|
# redirect_uri: "RedirectUri",
|
|
2870
|
+
# code_verifier: "CodeVerifier",
|
|
2852
2871
|
# },
|
|
2853
2872
|
# },
|
|
2854
2873
|
# sapo_data: {
|
|
@@ -2864,6 +2883,7 @@ module Aws::Appflow
|
|
|
2864
2883
|
# o_auth_request: {
|
|
2865
2884
|
# auth_code: "AuthCode",
|
|
2866
2885
|
# redirect_uri: "RedirectUri",
|
|
2886
|
+
# code_verifier: "CodeVerifier",
|
|
2867
2887
|
# },
|
|
2868
2888
|
# },
|
|
2869
2889
|
# },
|
|
@@ -2881,6 +2901,7 @@ module Aws::Appflow
|
|
|
2881
2901
|
# o_auth_request: {
|
|
2882
2902
|
# auth_code: "AuthCode",
|
|
2883
2903
|
# redirect_uri: "RedirectUri",
|
|
2904
|
+
# code_verifier: "CodeVerifier",
|
|
2884
2905
|
# },
|
|
2885
2906
|
# },
|
|
2886
2907
|
# api_key: {
|
|
@@ -2900,6 +2921,7 @@ module Aws::Appflow
|
|
|
2900
2921
|
# o_auth_request: {
|
|
2901
2922
|
# auth_code: "AuthCode",
|
|
2902
2923
|
# redirect_uri: "RedirectUri",
|
|
2924
|
+
# code_verifier: "CodeVerifier",
|
|
2903
2925
|
# },
|
|
2904
2926
|
# client_credentials_arn: "ClientCredentialsArn",
|
|
2905
2927
|
# },
|
|
@@ -3359,7 +3381,7 @@ module Aws::Appflow
|
|
|
3359
3381
|
tracer: tracer
|
|
3360
3382
|
)
|
|
3361
3383
|
context[:gem_name] = 'aws-sdk-appflow'
|
|
3362
|
-
context[:gem_version] = '1.
|
|
3384
|
+
context[:gem_version] = '1.94.0'
|
|
3363
3385
|
Seahorse::Client::Request.new(handlers, context)
|
|
3364
3386
|
end
|
|
3365
3387
|
|
|
@@ -56,6 +56,7 @@ module Aws::Appflow
|
|
|
56
56
|
ClientSecret = Shapes::StringShape.new(name: 'ClientSecret')
|
|
57
57
|
ClientToken = Shapes::StringShape.new(name: 'ClientToken')
|
|
58
58
|
ClusterIdentifier = Shapes::StringShape.new(name: 'ClusterIdentifier')
|
|
59
|
+
CodeVerifier = Shapes::StringShape.new(name: 'CodeVerifier')
|
|
59
60
|
ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
|
|
60
61
|
ConnectionMode = Shapes::StringShape.new(name: 'ConnectionMode')
|
|
61
62
|
ConnectorAuthenticationException = Shapes::StructureShape.new(name: 'ConnectorAuthenticationException')
|
|
@@ -279,6 +280,7 @@ module Aws::Appflow
|
|
|
279
280
|
PrivateConnectionProvisioningFailureMessage = Shapes::StringShape.new(name: 'PrivateConnectionProvisioningFailureMessage')
|
|
280
281
|
PrivateConnectionProvisioningState = Shapes::StructureShape.new(name: 'PrivateConnectionProvisioningState')
|
|
281
282
|
PrivateConnectionProvisioningStatus = Shapes::StringShape.new(name: 'PrivateConnectionProvisioningStatus')
|
|
283
|
+
PrivateKey = Shapes::StringShape.new(name: 'PrivateKey')
|
|
282
284
|
PrivateLinkServiceName = Shapes::StringShape.new(name: 'PrivateLinkServiceName')
|
|
283
285
|
ProfilePropertiesMap = Shapes::MapShape.new(name: 'ProfilePropertiesMap')
|
|
284
286
|
ProfilePropertyKey = Shapes::StringShape.new(name: 'ProfilePropertyKey')
|
|
@@ -591,6 +593,7 @@ module Aws::Appflow
|
|
|
591
593
|
|
|
592
594
|
ConnectorOAuthRequest.add_member(:auth_code, Shapes::ShapeRef.new(shape: AuthCode, location_name: "authCode"))
|
|
593
595
|
ConnectorOAuthRequest.add_member(:redirect_uri, Shapes::ShapeRef.new(shape: RedirectUri, location_name: "redirectUri"))
|
|
596
|
+
ConnectorOAuthRequest.add_member(:code_verifier, Shapes::ShapeRef.new(shape: CodeVerifier, location_name: "codeVerifier"))
|
|
594
597
|
ConnectorOAuthRequest.struct_class = Types::ConnectorOAuthRequest
|
|
595
598
|
|
|
596
599
|
ConnectorOperator.add_member(:amplitude, Shapes::ShapeRef.new(shape: AmplitudeConnectorOperator, location_name: "Amplitude"))
|
|
@@ -1381,7 +1384,8 @@ module Aws::Appflow
|
|
|
1381
1384
|
SlackSourceProperties.struct_class = Types::SlackSourceProperties
|
|
1382
1385
|
|
|
1383
1386
|
SnowflakeConnectorProfileCredentials.add_member(:username, Shapes::ShapeRef.new(shape: Username, required: true, location_name: "username"))
|
|
1384
|
-
SnowflakeConnectorProfileCredentials.add_member(:password, Shapes::ShapeRef.new(shape: Password,
|
|
1387
|
+
SnowflakeConnectorProfileCredentials.add_member(:password, Shapes::ShapeRef.new(shape: Password, location_name: "password"))
|
|
1388
|
+
SnowflakeConnectorProfileCredentials.add_member(:private_key, Shapes::ShapeRef.new(shape: PrivateKey, location_name: "privateKey"))
|
|
1385
1389
|
SnowflakeConnectorProfileCredentials.struct_class = Types::SnowflakeConnectorProfileCredentials
|
|
1386
1390
|
|
|
1387
1391
|
SnowflakeConnectorProfileProperties.add_member(:warehouse, Shapes::ShapeRef.new(shape: Warehouse, required: true, location_name: "warehouse"))
|
|
@@ -757,12 +757,18 @@ module Aws::Appflow
|
|
|
757
757
|
# after authorization has been granted.
|
|
758
758
|
# @return [String]
|
|
759
759
|
#
|
|
760
|
+
# @!attribute [rw] code_verifier
|
|
761
|
+
# The code verifier used in the PKCE (Proof Key for Code Exchange)
|
|
762
|
+
# OAuth flow.
|
|
763
|
+
# @return [String]
|
|
764
|
+
#
|
|
760
765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/ConnectorOAuthRequest AWS API Documentation
|
|
761
766
|
#
|
|
762
767
|
class ConnectorOAuthRequest < Struct.new(
|
|
763
768
|
:auth_code,
|
|
764
|
-
:redirect_uri
|
|
765
|
-
|
|
769
|
+
:redirect_uri,
|
|
770
|
+
:code_verifier)
|
|
771
|
+
SENSITIVE = [:code_verifier]
|
|
766
772
|
include Aws::Structure
|
|
767
773
|
end
|
|
768
774
|
|
|
@@ -4940,12 +4946,19 @@ module Aws::Appflow
|
|
|
4940
4946
|
# The password that corresponds to the user name.
|
|
4941
4947
|
# @return [String]
|
|
4942
4948
|
#
|
|
4949
|
+
# @!attribute [rw] private_key
|
|
4950
|
+
# The RSA private key used for key pair authentication with Snowflake.
|
|
4951
|
+
# Provide this instead of a password when your Snowflake account uses
|
|
4952
|
+
# key pair authentication.
|
|
4953
|
+
# @return [String]
|
|
4954
|
+
#
|
|
4943
4955
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appflow-2020-08-23/SnowflakeConnectorProfileCredentials AWS API Documentation
|
|
4944
4956
|
#
|
|
4945
4957
|
class SnowflakeConnectorProfileCredentials < Struct.new(
|
|
4946
4958
|
:username,
|
|
4947
|
-
:password
|
|
4948
|
-
|
|
4959
|
+
:password,
|
|
4960
|
+
:private_key)
|
|
4961
|
+
SENSITIVE = [:password, :private_key]
|
|
4949
4962
|
include Aws::Structure
|
|
4950
4963
|
end
|
|
4951
4964
|
|
data/lib/aws-sdk-appflow.rb
CHANGED
data/sig/params.rbs
CHANGED
|
@@ -112,7 +112,8 @@ module Aws
|
|
|
112
112
|
refresh_token: ::String?,
|
|
113
113
|
o_auth_request: {
|
|
114
114
|
auth_code: ::String?,
|
|
115
|
-
redirect_uri: ::String
|
|
115
|
+
redirect_uri: ::String?,
|
|
116
|
+
code_verifier: ::String?
|
|
116
117
|
}?
|
|
117
118
|
}
|
|
118
119
|
|
|
@@ -121,7 +122,8 @@ module Aws
|
|
|
121
122
|
refresh_token: ::String?,
|
|
122
123
|
o_auth_request: {
|
|
123
124
|
auth_code: ::String?,
|
|
124
|
-
redirect_uri: ::String
|
|
125
|
+
redirect_uri: ::String?,
|
|
126
|
+
code_verifier: ::String?
|
|
125
127
|
}?
|
|
126
128
|
}
|
|
127
129
|
|
|
@@ -131,7 +133,8 @@ module Aws
|
|
|
131
133
|
access_token: ::String?,
|
|
132
134
|
o_auth_request: {
|
|
133
135
|
auth_code: ::String?,
|
|
134
|
-
redirect_uri: ::String
|
|
136
|
+
redirect_uri: ::String?,
|
|
137
|
+
code_verifier: ::String?
|
|
135
138
|
}?
|
|
136
139
|
}
|
|
137
140
|
|
|
@@ -140,7 +143,8 @@ module Aws
|
|
|
140
143
|
refresh_token: ::String?,
|
|
141
144
|
o_auth_request: {
|
|
142
145
|
auth_code: ::String?,
|
|
143
|
-
redirect_uri: ::String
|
|
146
|
+
redirect_uri: ::String?,
|
|
147
|
+
code_verifier: ::String?
|
|
144
148
|
}?,
|
|
145
149
|
client_credentials_arn: ::String?,
|
|
146
150
|
o_auth_2_grant_type: ("CLIENT_CREDENTIALS" | "AUTHORIZATION_CODE" | "JWT_BEARER")?,
|
|
@@ -154,7 +158,8 @@ module Aws
|
|
|
154
158
|
refresh_token: ::String?,
|
|
155
159
|
o_auth_request: {
|
|
156
160
|
auth_code: ::String?,
|
|
157
|
-
redirect_uri: ::String
|
|
161
|
+
redirect_uri: ::String?,
|
|
162
|
+
code_verifier: ::String?
|
|
158
163
|
}?
|
|
159
164
|
}
|
|
160
165
|
|
|
@@ -170,7 +175,8 @@ module Aws
|
|
|
170
175
|
access_token: ::String?,
|
|
171
176
|
o_auth_request: {
|
|
172
177
|
auth_code: ::String?,
|
|
173
|
-
redirect_uri: ::String
|
|
178
|
+
redirect_uri: ::String?,
|
|
179
|
+
code_verifier: ::String?
|
|
174
180
|
}?
|
|
175
181
|
}
|
|
176
182
|
|
|
@@ -180,7 +186,8 @@ module Aws
|
|
|
180
186
|
access_token: ::String?,
|
|
181
187
|
o_auth_request: {
|
|
182
188
|
auth_code: ::String?,
|
|
183
|
-
redirect_uri: ::String
|
|
189
|
+
redirect_uri: ::String?,
|
|
190
|
+
code_verifier: ::String?
|
|
184
191
|
}?
|
|
185
192
|
}
|
|
186
193
|
|
|
@@ -191,7 +198,8 @@ module Aws
|
|
|
191
198
|
refresh_token: ::String?,
|
|
192
199
|
o_auth_request: {
|
|
193
200
|
auth_code: ::String?,
|
|
194
|
-
redirect_uri: ::String
|
|
201
|
+
redirect_uri: ::String?,
|
|
202
|
+
code_verifier: ::String?
|
|
195
203
|
}?
|
|
196
204
|
}
|
|
197
205
|
|
|
@@ -225,7 +233,8 @@ module Aws
|
|
|
225
233
|
refresh_token: ::String?,
|
|
226
234
|
o_auth_request: {
|
|
227
235
|
auth_code: ::String?,
|
|
228
|
-
redirect_uri: ::String
|
|
236
|
+
redirect_uri: ::String?,
|
|
237
|
+
code_verifier: ::String?
|
|
229
238
|
}?,
|
|
230
239
|
client_credentials_arn: ::String?
|
|
231
240
|
}
|
|
@@ -263,7 +272,8 @@ module Aws
|
|
|
263
272
|
slack: Params::slack_connector_profile_credentials?,
|
|
264
273
|
snowflake: {
|
|
265
274
|
username: ::String,
|
|
266
|
-
password: ::String
|
|
275
|
+
password: ::String?,
|
|
276
|
+
private_key: ::String?
|
|
267
277
|
}?,
|
|
268
278
|
trendmicro: {
|
|
269
279
|
api_secret_key: ::String
|
data/sig/types.rbs
CHANGED
|
@@ -188,7 +188,8 @@ module Aws::Appflow
|
|
|
188
188
|
class ConnectorOAuthRequest
|
|
189
189
|
attr_accessor auth_code: ::String
|
|
190
190
|
attr_accessor redirect_uri: ::String
|
|
191
|
-
|
|
191
|
+
attr_accessor code_verifier: ::String
|
|
192
|
+
SENSITIVE: [:code_verifier]
|
|
192
193
|
end
|
|
193
194
|
|
|
194
195
|
class ConnectorOperator
|
|
@@ -1197,7 +1198,8 @@ module Aws::Appflow
|
|
|
1197
1198
|
class SnowflakeConnectorProfileCredentials
|
|
1198
1199
|
attr_accessor username: ::String
|
|
1199
1200
|
attr_accessor password: ::String
|
|
1200
|
-
|
|
1201
|
+
attr_accessor private_key: ::String
|
|
1202
|
+
SENSITIVE: [:password, :private_key]
|
|
1201
1203
|
end
|
|
1202
1204
|
|
|
1203
1205
|
class SnowflakeConnectorProfileProperties
|