Class ChangeGuideNetworkSettingsCommandProtected

This operation is only available to specific accounts.

Example

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

import { GuidesClient, ChangeGuideNetworkSettingsCommand } from "@stedi/sdk-client-guides"; // ES Modules import
// const { GuidesClient, ChangeGuideNetworkSettingsCommand } = require("@stedi/sdk-client-guides"); // CommonJS import
const client = new GuidesClient(config);
const input = { // ChangeGuideNetworkSettingsInput
id: "STRING_VALUE", // required
isVisibleInNetwork: true || false, // required
managedBy: "stedi" || "customer", // required
direction: "INBOUND" || "OUTBOUND" || "BOTH",
group: "STRING_VALUE",
isa: { // ISA
id: "STRING_VALUE",
qualifier: "STRING_VALUE",
},
gs: { // GS
id: "STRING_VALUE",
},
};
const command = new ChangeGuideNetworkSettingsCommand(input);
const response = await client.send(command);
// { // ChangeGuideNetworkSettingsOutput
// id: "STRING_VALUE", // required
// isVisibleInNetwork: true || false, // required
// managedBy: "stedi" || "customer", // required
// direction: "INBOUND" || "OUTBOUND" || "BOTH",
// group: "STRING_VALUE",
// isa: { // ISA
// id: "STRING_VALUE",
// qualifier: "STRING_VALUE",
// },
// gs: { // GS
// id: "STRING_VALUE",
// },
// };

Param

ChangeGuideNetworkSettingsCommandInput

Returns

ChangeGuideNetworkSettingsCommandOutput

See

Throws

InternalFailureException (server fault) The server response when an unexpected error occurred while processing request.

Throws

ThrottlingException (client fault) The server response when usage plan or account-level throttling limits exceeded.

Throws

ValidationException (client fault) A standard error for input validation failures. This should be thrown by services when a member of the input structure falls outside of the modeled or documented constraints.

Throws

AccessDeniedException (client fault) The server response for authorization failure.

Throws

UnauthorizedException (client fault) The server response when the authorizer failed to authenticate the caller.

Throws

ResourceConflictException (client fault) The server could not process the request because of conflict in the current state of the resource.

Throws

BadRequestException (client fault) The server cannot process the request due to an apparent client error.

Throws

ResourceNotFoundException (client fault) The server response when the specified resource cannot be found after an API request passes authentication and authorization.

Throws

GuidesServiceException

Base exception class for all service exceptions from Guides service.

Hierarchy

Constructors

Properties

Methods

Constructors

Properties

Methods

  • Returns EndpointParameterInstructions