OBJECT
ApiUser
A programmatic user of the EchoStream API.
link GraphQL Schema definition
- type ApiUser {
- # The AppSync Endpoint used by this api user
- AWSURL! :
- # When and who created.
- AtBy! :
- # The credentials required to log into Cognito to get JWT's.
- CognitoCredentials! :
- # A human-readable description.
- String :
- # When and who modified.
- AtBy! :
- # The role.
- ApiUserRole! :
- # The Tenant.
- Tenant! :
- # The username.
- String! :
- # Deletes this.
- Boolean! :
- # Lists the changes.
- #
- # Arguments
- # endDateTime: The end date/time (inclusive) to list changes for
- # in ISO8601 format. Defaults to now.
- # exclusiveStartKey: The lastEvaluatedKey from a previous
- # ChangeResult. Used when paginating.
- # limit: Used for limiting the number of results when paginating.
- # Defaults to "all".
- # sortAscending: True for ascending results, False for descending
- # result. Defaults to True.
- # startDateTime: The start date/time (inclusive) to list changes
- # for in ISO8601 format. Defaults to the beginning of time.
- (
- AWSDateTime, :
- AWSJSON, :
- Int, :
- Boolean, :
- AWSDateTime :
- ): ChangeResult!
- # Resets the password used in credentials and returns the ApiUser.
- ApiUser! :
- # Updates and returns this APIUser
- #
- # Arguments
- # description: A human-readable description. Null is ignored.
- # role: The new role. Null is ignored.
- String, : ApiUserRole): ApiUser! ( :
- }