Jump to Content

New API Documentation - Developer Preview Available

We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.

Class DescribeCompanyNetworkConfigurationCommandProtected

Deprecated

Describes the networking configuration to access the internal websites associated with the specified fleet.

Example

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

import { WorkLinkClient, DescribeCompanyNetworkConfigurationCommand } from "@aws-sdk/client-worklink"; // ES Modules import
// const { WorkLinkClient, DescribeCompanyNetworkConfigurationCommand } = require("@aws-sdk/client-worklink"); // CommonJS import
const client = new WorkLinkClient(config);
const input = { // DescribeCompanyNetworkConfigurationRequest
FleetArn: "STRING_VALUE", // required
};
const command = new DescribeCompanyNetworkConfigurationCommand(input);
const response = await client.send(command);
// { // DescribeCompanyNetworkConfigurationResponse
// VpcId: "STRING_VALUE",
// SubnetIds: [ // SubnetIds
// "STRING_VALUE",
// ],
// SecurityGroupIds: [ // SecurityGroupIds
// "STRING_VALUE",
// ],
// };

Param

DescribeCompanyNetworkConfigurationCommandInput

Returns

DescribeCompanyNetworkConfigurationCommandOutput

See

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.

Hierarchy

Constructors

Properties

Methods