Identitystore
This page documents function available when using the Identitystore
module, created with @service Identitystore
.
Index
Main.Identitystore.describe_group
Main.Identitystore.describe_user
Main.Identitystore.list_groups
Main.Identitystore.list_users
Documentation
Main.Identitystore.describe_group
— Methoddescribe_group(group_id, identity_store_id)
describe_group(group_id, identity_store_id, params::Dict{String,<:Any})
Retrieves the group metadata and attributes from GroupId in an identity store.
Arguments
group_id
: The identifier for a group in the identity store.identity_store_id
: The globally unique identifier for the identity store, such as d-1234567890. In this example, d- is a fixed prefix, and 1234567890 is a randomly generated string which contains number and lower case letters. This value is generated at the time that a new identity store is created.
Main.Identitystore.describe_user
— Methoddescribe_user(identity_store_id, user_id)
describe_user(identity_store_id, user_id, params::Dict{String,<:Any})
Retrieves the user metadata and attributes from UserId in an identity store.
Arguments
identity_store_id
: The globally unique identifier for the identity store, such as d-1234567890. In this example, d- is a fixed prefix, and 1234567890 is a randomly generated string which contains number and lower case letters. This value is generated at the time that a new identity store is created.user_id
: The identifier for a user in the identity store.
Main.Identitystore.list_groups
— Methodlist_groups(identity_store_id)
list_groups(identity_store_id, params::Dict{String,<:Any})
Lists the attribute name and value of the group that you specified in the search. We only support DisplayName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including GroupId and group DisplayName in the response.
Arguments
identity_store_id
: The globally unique identifier for the identity store, such as d-1234567890. In this example, d- is a fixed prefix, and 1234567890 is a randomly generated string which contains number and lower case letters. This value is generated at the time that a new identity store is created.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Filters"
: A list of Filter objects, which is used in the ListUsers and ListGroups request."MaxResults"
: The maximum number of results to be returned per request, which is used in the ListUsers and ListGroups request to specify how many results to return in one page. The length limit is 50 characters."NextToken"
: The pagination token used for the ListUsers and ListGroups APIs. This value is generated by the identity store service and is returned in the API response if the total results are more than the size of one page, and when this token is used in the API request to search for the next page.
Main.Identitystore.list_users
— Methodlist_users(identity_store_id)
list_users(identity_store_id, params::Dict{String,<:Any})
Lists the attribute name and value of the user that you specified in the search. We only support UserName as a valid filter attribute path currently, and filter is required. This API returns minimum attributes, including UserId and UserName in the response.
Arguments
identity_store_id
: The globally unique identifier for the identity store, such as d-1234567890. In this example, d- is a fixed prefix, and 1234567890 is a randomly generated string which contains number and lower case letters. This value is generated at the time that a new identity store is created.
Optional Parameters
Optional parameters can be passed as a params::Dict{String,<:Any}
. Valid keys are:
"Filters"
: A list of Filter objects, which is used in the ListUsers and ListGroups request."MaxResults"
: The maximum number of results to be returned per request, which is used in the ListUsers and ListGroups request to specify how many results to return in one page. The length limit is 50 characters."NextToken"
: The pagination token used for the ListUsers and ListGroups APIs. This value is generated by the identity store service and is returned in the API response if the total results are more than the size of one page, and when this token is used in the API request to search for the next page.