import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { EC2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EC2Client"; import type { ModifyVerifiedAccessEndpointRequest, ModifyVerifiedAccessEndpointResult } from "../models/models_7"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ModifyVerifiedAccessEndpointCommand}. */ export interface ModifyVerifiedAccessEndpointCommandInput extends ModifyVerifiedAccessEndpointRequest { } /** * @public * * The output of {@link ModifyVerifiedAccessEndpointCommand}. */ export interface ModifyVerifiedAccessEndpointCommandOutput extends ModifyVerifiedAccessEndpointResult, __MetadataBearer { } declare const ModifyVerifiedAccessEndpointCommand_base: { new (input: ModifyVerifiedAccessEndpointCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ModifyVerifiedAccessEndpointCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Modifies the configuration of the specified Amazon Web Services Verified Access endpoint.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, ModifyVerifiedAccessEndpointCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, ModifyVerifiedAccessEndpointCommand } = require("@aws-sdk/client-ec2"); // CommonJS import * // import type { EC2ClientConfig } from "@aws-sdk/client-ec2"; * const config = {}; // type is EC2ClientConfig * const client = new EC2Client(config); * const input = { // ModifyVerifiedAccessEndpointRequest * VerifiedAccessEndpointId: "STRING_VALUE", // required * VerifiedAccessGroupId: "STRING_VALUE", * LoadBalancerOptions: { // ModifyVerifiedAccessEndpointLoadBalancerOptions * SubnetIds: [ // ModifyVerifiedAccessEndpointSubnetIdList * "STRING_VALUE", * ], * Protocol: "http" || "https" || "tcp", * Port: Number("int"), * PortRanges: [ // ModifyVerifiedAccessEndpointPortRangeList * { // ModifyVerifiedAccessEndpointPortRange * FromPort: Number("int"), * ToPort: Number("int"), * }, * ], * }, * NetworkInterfaceOptions: { // ModifyVerifiedAccessEndpointEniOptions * Protocol: "http" || "https" || "tcp", * Port: Number("int"), * PortRanges: [ * { * FromPort: Number("int"), * ToPort: Number("int"), * }, * ], * }, * Description: "STRING_VALUE", * ClientToken: "STRING_VALUE", * DryRun: true || false, * RdsOptions: { // ModifyVerifiedAccessEndpointRdsOptions * SubnetIds: [ * "STRING_VALUE", * ], * Port: Number("int"), * RdsEndpoint: "STRING_VALUE", * }, * CidrOptions: { // ModifyVerifiedAccessEndpointCidrOptions * PortRanges: [ * { * FromPort: Number("int"), * ToPort: Number("int"), * }, * ], * }, * }; * const command = new ModifyVerifiedAccessEndpointCommand(input); * const response = await client.send(command); * // { // ModifyVerifiedAccessEndpointResult * // VerifiedAccessEndpoint: { // VerifiedAccessEndpoint * // VerifiedAccessInstanceId: "STRING_VALUE", * // VerifiedAccessGroupId: "STRING_VALUE", * // VerifiedAccessEndpointId: "STRING_VALUE", * // ApplicationDomain: "STRING_VALUE", * // EndpointType: "load-balancer" || "network-interface" || "rds" || "cidr", * // AttachmentType: "vpc", * // DomainCertificateArn: "STRING_VALUE", * // EndpointDomain: "STRING_VALUE", * // DeviceValidationDomain: "STRING_VALUE", * // SecurityGroupIds: [ // SecurityGroupIdList * // "STRING_VALUE", * // ], * // LoadBalancerOptions: { // VerifiedAccessEndpointLoadBalancerOptions * // Protocol: "http" || "https" || "tcp", * // Port: Number("int"), * // LoadBalancerArn: "STRING_VALUE", * // SubnetIds: [ // VerifiedAccessEndpointSubnetIdList * // "STRING_VALUE", * // ], * // PortRanges: [ // VerifiedAccessEndpointPortRangeList * // { // VerifiedAccessEndpointPortRange * // FromPort: Number("int"), * // ToPort: Number("int"), * // }, * // ], * // }, * // NetworkInterfaceOptions: { // VerifiedAccessEndpointEniOptions * // NetworkInterfaceId: "STRING_VALUE", * // Protocol: "http" || "https" || "tcp", * // Port: Number("int"), * // PortRanges: [ * // { * // FromPort: Number("int"), * // ToPort: Number("int"), * // }, * // ], * // }, * // Status: { // VerifiedAccessEndpointStatus * // Code: "pending" || "active" || "updating" || "deleting" || "deleted", * // Message: "STRING_VALUE", * // }, * // Description: "STRING_VALUE", * // CreationTime: "STRING_VALUE", * // LastUpdatedTime: "STRING_VALUE", * // DeletionTime: "STRING_VALUE", * // Tags: [ // TagList * // { // Tag * // Key: "STRING_VALUE", * // Value: "STRING_VALUE", * // }, * // ], * // SseSpecification: { // VerifiedAccessSseSpecificationResponse * // CustomerManagedKeyEnabled: true || false, * // KmsKeyArn: "STRING_VALUE", * // }, * // RdsOptions: { // VerifiedAccessEndpointRdsOptions * // Protocol: "http" || "https" || "tcp", * // Port: Number("int"), * // RdsDbInstanceArn: "STRING_VALUE", * // RdsDbClusterArn: "STRING_VALUE", * // RdsDbProxyArn: "STRING_VALUE", * // RdsEndpoint: "STRING_VALUE", * // SubnetIds: [ * // "STRING_VALUE", * // ], * // }, * // CidrOptions: { // VerifiedAccessEndpointCidrOptions * // Cidr: "STRING_VALUE", * // PortRanges: [ * // { * // FromPort: Number("int"), * // ToPort: Number("int"), * // }, * // ], * // Protocol: "http" || "https" || "tcp", * // SubnetIds: [ * // "STRING_VALUE", * // ], * // }, * // }, * // }; * * ``` * * @param ModifyVerifiedAccessEndpointCommandInput - {@link ModifyVerifiedAccessEndpointCommandInput} * @returns {@link ModifyVerifiedAccessEndpointCommandOutput} * @see {@link ModifyVerifiedAccessEndpointCommandInput} for command's `input` shape. * @see {@link ModifyVerifiedAccessEndpointCommandOutput} for command's `response` shape. * @see {@link EC2ClientResolvedConfig | config} for EC2Client's `config` shape. * * @throws {@link EC2ServiceException} *

Base exception class for all service exceptions from EC2 service.

* * * @public */ export declare class ModifyVerifiedAccessEndpointCommand extends ModifyVerifiedAccessEndpointCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyVerifiedAccessEndpointRequest; output: ModifyVerifiedAccessEndpointResult; }; sdk: { input: ModifyVerifiedAccessEndpointCommandInput; output: ModifyVerifiedAccessEndpointCommandOutput; }; }; }