Class: Aws::CognitoIdentityProvider::Types::AdminUpdateAuthEventFeedbackRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CognitoIdentityProvider::Types::AdminUpdateAuthEventFeedbackRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cognitoidentityprovider/types.rb
Overview
Note:
When making an API call, you may pass AdminUpdateAuthEventFeedbackRequest data as a hash:
{
user_pool_id: "UserPoolIdType", # required
username: "UsernameType", # required
event_id: "EventIdType", # required
feedback_value: "Valid", # required, accepts Valid, Invalid
}
Constant Summary collapse
- SENSITIVE =
[:username]
Instance Attribute Summary collapse
-
#event_id ⇒ String
The authentication event ID.
-
#feedback_value ⇒ String
The authentication event feedback value.
-
#user_pool_id ⇒ String
The user pool ID.
-
#username ⇒ String
The user pool username.
Instance Attribute Details
#event_id ⇒ String
The authentication event ID.
2029 2030 2031 2032 2033 2034 2035 2036 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2029 class AdminUpdateAuthEventFeedbackRequest < Struct.new( :user_pool_id, :username, :event_id, :feedback_value) SENSITIVE = [:username] include Aws::Structure end |
#feedback_value ⇒ String
The authentication event feedback value.
2029 2030 2031 2032 2033 2034 2035 2036 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2029 class AdminUpdateAuthEventFeedbackRequest < Struct.new( :user_pool_id, :username, :event_id, :feedback_value) SENSITIVE = [:username] include Aws::Structure end |
#user_pool_id ⇒ String
The user pool ID.
2029 2030 2031 2032 2033 2034 2035 2036 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2029 class AdminUpdateAuthEventFeedbackRequest < Struct.new( :user_pool_id, :username, :event_id, :feedback_value) SENSITIVE = [:username] include Aws::Structure end |
#username ⇒ String
The user pool username.
2029 2030 2031 2032 2033 2034 2035 2036 |
# File 'lib/aws-sdk-cognitoidentityprovider/types.rb', line 2029 class AdminUpdateAuthEventFeedbackRequest < Struct.new( :user_pool_id, :username, :event_id, :feedback_value) SENSITIVE = [:username] include Aws::Structure end |