@@ -73,10 +73,15 @@ public AuthFlowResponse(string sessionId, AuthenticationResultType authenticatio
7373 /// The analytics metadata for collecting Amazon Pinpoint metrics.
7474 /// </summary>
7575 public AnalyticsMetadataType AnalyticsMetadata { get ; set ; }
76+
77+ /// <summary>
78+ /// Additional UserContextDataType
79+ /// </summary>
80+ public UserContextDataType UserContextData { get ; set ; }
7681 }
7782
7883 /// <summary>
79- /// Class containing the necessary properities to initiate SRP authentication flow
84+ /// Class containing the necessary properties to initiate SRP authentication flow
8085 /// </summary>
8186 public class InitiateSrpAuthRequest
8287 {
@@ -104,6 +109,12 @@ public class InitiateSrpAuthRequest
104109 /// The analytics metadata for collecting Amazon Pinpoint metrics.
105110 /// </summary>
106111 public AnalyticsMetadataType AnalyticsMetadata { get ; set ; }
112+
113+ /// <summary>
114+ /// Additional UserContextDataType
115+ /// </summary>
116+ public UserContextDataType UserContextData { get ; set ; }
117+
107118 /// <summary>
108119 /// Enable custom auth flow
109120 /// https://docs.aws.amazon.com/cognito/latest/developerguide/amazon-cognito-user-pools-authentication-flow.html#Using-SRP-password-verification-in-custom-authentication-flow
@@ -112,7 +123,7 @@ public class InitiateSrpAuthRequest
112123 }
113124
114125 /// <summary>
115- /// Class containing the necessary properities to initiate custom authentication flow
126+ /// Class containing the necessary properties to initiate custom authentication flow
116127 /// </summary>
117128 public class InitiateCustomAuthRequest
118129 {
@@ -130,10 +141,15 @@ public class InitiateCustomAuthRequest
130141 /// The analytics metadata for collecting Amazon Pinpoint metrics.
131142 /// </summary>
132143 public AnalyticsMetadataType AnalyticsMetadata { get ; set ; }
144+
145+ /// <summary>
146+ /// Additional UserContextDataType
147+ /// </summary>
148+ public UserContextDataType UserContextData { get ; set ; }
133149 }
134150
135151 /// <summary>
136- /// Class containing the necessary properities to initiate either REFRESH_TOKEN or
152+ /// Class containing the necessary properties to initiate either REFRESH_TOKEN or
137153 /// REFRESH_TOKEN_AUTH authentication
138154 /// </summary>
139155 public class InitiateRefreshTokenAuthRequest
@@ -146,7 +162,7 @@ public class InitiateRefreshTokenAuthRequest
146162 }
147163
148164 /// <summary>
149- /// Class containing the necessary properities to respond to an MFA authentication challenge
165+ /// Class containing the necessary properties to respond to an MFA authentication challenge
150166 /// </summary>
151167 public class RespondToMfaRequest
152168 {
@@ -167,7 +183,7 @@ public class RespondToMfaRequest
167183 }
168184
169185 /// <summary>
170- /// Class containing the necessary properities to respond to an MFA authentication challenge
186+ /// Class containing the necessary properties to respond to an MFA authentication challenge
171187 /// </summary>
172188 public class RespondToSmsMfaRequest : RespondToMfaRequest
173189 {
@@ -178,7 +194,7 @@ public class RespondToSmsMfaRequest : RespondToMfaRequest
178194 }
179195
180196 /// <summary>
181- /// Class containing the necessary properities to respond to a new password required authentication challenge
197+ /// Class containing the necessary properties to respond to a new password required authentication challenge
182198 /// </summary>
183199 public class RespondToNewPasswordRequiredRequest
184200 {
@@ -194,7 +210,7 @@ public class RespondToNewPasswordRequiredRequest
194210 }
195211
196212 /// <summary>
197- /// Class containing the necessary properities to respond to a custom authentication challenge
213+ /// Class containing the necessary properties to respond to a custom authentication challenge
198214 /// </summary>
199215 public class RespondToCustomChallengeRequest
200216 {
@@ -217,6 +233,11 @@ public class RespondToCustomChallengeRequest
217233 /// The sessionID for the current authentication flow.
218234 /// </summary>
219235 public string SessionID { get ; set ; }
236+
237+ /// <summary>
238+ /// Additional UserContextDataType
239+ /// </summary>
240+ public UserContextDataType UserContextData { get ; set ; }
220241 }
221242
222243 /// <summary>
@@ -237,6 +258,6 @@ public class InitiateAdminNoSrpAuthRequest
237258 /// <summary>
238259 /// Optional analytics metadata for collecting Amazon Pinpoint metrics.
239260 /// </summary>
240- public AnalyticsMetadataType AnalyticsMetadata { get ; set ; }
261+ public AnalyticsMetadataType AnalyticsMetadata { get ; set ; }
241262 }
242263}
0 commit comments