import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateTypedLinkFacetRequest, UpdateTypedLinkFacetResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateTypedLinkFacetCommand}. */ export interface UpdateTypedLinkFacetCommandInput extends UpdateTypedLinkFacetRequest { } /** * @public * * The output of {@link UpdateTypedLinkFacetCommand}. */ export interface UpdateTypedLinkFacetCommandOutput extends UpdateTypedLinkFacetResponse, __MetadataBearer { } declare const UpdateTypedLinkFacetCommand_base: { new (input: UpdateTypedLinkFacetCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateTypedLinkFacetCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Updates a TypedLinkFacet. For more information, see Typed Links.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { CloudDirectoryClient, UpdateTypedLinkFacetCommand } from "@aws-sdk/client-clouddirectory"; // ES Modules import * // const { CloudDirectoryClient, UpdateTypedLinkFacetCommand } = require("@aws-sdk/client-clouddirectory"); // CommonJS import * // import type { CloudDirectoryClientConfig } from "@aws-sdk/client-clouddirectory"; * const config = {}; // type is CloudDirectoryClientConfig * const client = new CloudDirectoryClient(config); * const input = { // UpdateTypedLinkFacetRequest * SchemaArn: "STRING_VALUE", // required * Name: "STRING_VALUE", // required * AttributeUpdates: [ // TypedLinkFacetAttributeUpdateList // required * { // TypedLinkFacetAttributeUpdate * Attribute: { // TypedLinkAttributeDefinition * Name: "STRING_VALUE", // required * Type: "STRING" || "BINARY" || "BOOLEAN" || "NUMBER" || "DATETIME" || "VARIANT", // required * DefaultValue: { // TypedAttributeValue Union: only one key present * StringValue: "STRING_VALUE", * BinaryValue: new Uint8Array(), // e.g. Buffer.from("") or new TextEncoder().encode("") * BooleanValue: true || false, * NumberValue: "STRING_VALUE", * DatetimeValue: new Date("TIMESTAMP"), * }, * IsImmutable: true || false, * Rules: { // RuleMap * "": { // Rule * Type: "BINARY_LENGTH" || "NUMBER_COMPARISON" || "STRING_FROM_SET" || "STRING_LENGTH", * Parameters: { // RuleParameterMap * "": "STRING_VALUE", * }, * }, * }, * RequiredBehavior: "REQUIRED_ALWAYS" || "NOT_REQUIRED", // required * }, * Action: "CREATE_OR_UPDATE" || "DELETE", // required * }, * ], * IdentityAttributeOrder: [ // AttributeNameList // required * "STRING_VALUE", * ], * }; * const command = new UpdateTypedLinkFacetCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateTypedLinkFacetCommandInput - {@link UpdateTypedLinkFacetCommandInput} * @returns {@link UpdateTypedLinkFacetCommandOutput} * @see {@link UpdateTypedLinkFacetCommandInput} for command's `input` shape. * @see {@link UpdateTypedLinkFacetCommandOutput} for command's `response` shape. * @see {@link CloudDirectoryClientResolvedConfig | config} for CloudDirectoryClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling ListDirectories and check your permissions.

* * @throws {@link FacetNotFoundException} (client fault) *

The specified Facet could not be found.

* * @throws {@link FacetValidationException} (client fault) *

The Facet that you provided was not well formed or could not be * validated with the schema.

* * @throws {@link InternalServiceException} (server fault) *

Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the AWS Service Health Dashboard site to see if there are any operational issues with the service.

* * @throws {@link InvalidArnException} (client fault) *

Indicates that the provided ARN value is not valid.

* * @throws {@link InvalidFacetUpdateException} (client fault) *

An attempt to modify a Facet resulted in an invalid schema * exception.

* * @throws {@link InvalidRuleException} (client fault) *

Occurs when any of the rule parameter keys or values are invalid.

* * @throws {@link LimitExceededException} (client fault) *

Indicates that limits are exceeded. See Limits for more information.

* * @throws {@link ResourceNotFoundException} (client fault) *

The specified resource could not be found.

* * @throws {@link RetryableConflictException} (client fault) *

Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.

* * @throws {@link ValidationException} (client fault) *

Indicates that your request is malformed in some manner. See the exception * message.

* * @throws {@link CloudDirectoryServiceException} *

Base exception class for all service exceptions from CloudDirectory service.

* * * @public */ export declare class UpdateTypedLinkFacetCommand extends UpdateTypedLinkFacetCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateTypedLinkFacetRequest; output: {}; }; sdk: { input: UpdateTypedLinkFacetCommandInput; output: UpdateTypedLinkFacetCommandOutput; }; }; }