Jump to Content

This API Documentation is now deprecated

We are excited to announce our new API Documentation.

Class AssociateWebsiteAuthorizationProviderCommandProtected

Deprecated

Associates a website authorization provider with a specified fleet. This is used to authorize users against associated websites in the company network.

Example

Use a bare-bones client and the command you need to make an API call.

import { WorkLinkClient, AssociateWebsiteAuthorizationProviderCommand } from "@aws-sdk/client-worklink"; // ES Modules import
// const { WorkLinkClient, AssociateWebsiteAuthorizationProviderCommand } = require("@aws-sdk/client-worklink"); // CommonJS import
const client = new WorkLinkClient(config);
const input = { // AssociateWebsiteAuthorizationProviderRequest
FleetArn: "STRING_VALUE", // required
AuthorizationProviderType: "SAML", // required
DomainName: "STRING_VALUE",
};
const command = new AssociateWebsiteAuthorizationProviderCommand(input);
const response = await client.send(command);
// { // AssociateWebsiteAuthorizationProviderResponse
// AuthorizationProviderId: "STRING_VALUE",
// };

Param

AssociateWebsiteAuthorizationProviderCommandInput

Returns

AssociateWebsiteAuthorizationProviderCommandOutput

See

Throws

InternalServerErrorException (server fault)

The service is temporarily unavailable.

Throws

InvalidRequestException (client fault)

The request is not valid.

Throws

ResourceAlreadyExistsException (client fault)

The resource already exists.

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.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods