We are excited to announce our new API Documentation.
Protected
Signs the user out from all of their devices. The user can sign in again if they have valid credentials.
Use a bare-bones client and the command you need to make an API call.
import { WorkLinkClient, SignOutUserCommand } from "@aws-sdk/client-worklink"; // ES Modules import// const { WorkLinkClient, SignOutUserCommand } = require("@aws-sdk/client-worklink"); // CommonJS importconst client = new WorkLinkClient(config);const input = { // SignOutUserRequest FleetArn: "STRING_VALUE", // required Username: "STRING_VALUE", // required};const command = new SignOutUserCommand(input);const response = await client.send(command);// {};
SignOutUserCommandInput
SignOutUserCommandOutput
input
response
config
InternalServerErrorException (server fault)
The service is temporarily unavailable.
InvalidRequestException (client fault)
The request is not valid.
ResourceNotFoundException (client fault)
The requested resource was not found.
TooManyRequestsException (client fault)
The number of requests exceeds the limit.
UnauthorizedException (client fault)
You are not authorized to perform this action.
WorkLinkServiceException
Base exception class for all service exceptions from WorkLink service.
Readonly
Static
Deprecated
Signs the user out from all of their devices. The user can sign in again if they have valid credentials.
Example
Use a bare-bones client and the command you need to make an API call.
Param
SignOutUserCommandInput
Returns
SignOutUserCommandOutput
See
input
shape.response
shape.config
shape.Throws
InternalServerErrorException (server fault)
The service is temporarily unavailable.
Throws
InvalidRequestException (client fault)
The request is not valid.
Throws
ResourceNotFoundException (client fault)
The requested resource was not found.
Throws
TooManyRequestsException (client fault)
The number of requests exceeds the limit.
Throws
UnauthorizedException (client fault)
You are not authorized to perform this action.
Throws
WorkLinkServiceException
Base exception class for all service exceptions from WorkLink service.