Class: Aws::IoTEvents::Types::SSOIdentity
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoTEvents::Types::SSOIdentity
- Defined in:
- gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb
Overview
Note:
When making an API call, you may pass SSOIdentity data as a hash:
{
identity_store_id: "IdentityStoreId", # required
user_id: "SSOReferenceId",
}
Contains information about your identity source in AWS Single Sign-On. For more information, see the AWS Single Sign-On User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#identity_store_id ⇒ String
The ID of the AWS SSO identity store.
-
#user_id ⇒ String
The user ID.
Instance Attribute Details
#identity_store_id ⇒ String
The ID of the AWS SSO identity store.
5331 5332 5333 5334 5335 5336 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 5331 class SSOIdentity < Struct.new( :identity_store_id, :user_id) SENSITIVE = [] include Aws::Structure end |
#user_id ⇒ String
The user ID.
5331 5332 5333 5334 5335 5336 |
# File 'gems/aws-sdk-iotevents/lib/aws-sdk-iotevents/types.rb', line 5331 class SSOIdentity < Struct.new( :identity_store_id, :user_id) SENSITIVE = [] include Aws::Structure end |