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 { DeleteVerifiedAccessGroupRequest, DeleteVerifiedAccessGroupResult } from "../models/models_3"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link DeleteVerifiedAccessGroupCommand}. */ export interface DeleteVerifiedAccessGroupCommandInput extends DeleteVerifiedAccessGroupRequest { } /** * @public * * The output of {@link DeleteVerifiedAccessGroupCommand}. */ export interface DeleteVerifiedAccessGroupCommandOutput extends DeleteVerifiedAccessGroupResult, __MetadataBearer { } declare const DeleteVerifiedAccessGroupCommand_base: { new (input: DeleteVerifiedAccessGroupCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: DeleteVerifiedAccessGroupCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Delete an Amazon Web Services Verified Access group.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, DeleteVerifiedAccessGroupCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, DeleteVerifiedAccessGroupCommand } = 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 = { // DeleteVerifiedAccessGroupRequest * VerifiedAccessGroupId: "STRING_VALUE", // required * ClientToken: "STRING_VALUE", * DryRun: true || false, * }; * const command = new DeleteVerifiedAccessGroupCommand(input); * const response = await client.send(command); * // { // DeleteVerifiedAccessGroupResult * // VerifiedAccessGroup: { // VerifiedAccessGroup * // VerifiedAccessGroupId: "STRING_VALUE", * // VerifiedAccessInstanceId: "STRING_VALUE", * // Description: "STRING_VALUE", * // Owner: "STRING_VALUE", * // VerifiedAccessGroupArn: "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", * // }, * // }, * // }; * * ``` * * @param DeleteVerifiedAccessGroupCommandInput - {@link DeleteVerifiedAccessGroupCommandInput} * @returns {@link DeleteVerifiedAccessGroupCommandOutput} * @see {@link DeleteVerifiedAccessGroupCommandInput} for command's `input` shape. * @see {@link DeleteVerifiedAccessGroupCommandOutput} 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 DeleteVerifiedAccessGroupCommand extends DeleteVerifiedAccessGroupCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DeleteVerifiedAccessGroupRequest; output: DeleteVerifiedAccessGroupResult; }; sdk: { input: DeleteVerifiedAccessGroupCommandInput; output: DeleteVerifiedAccessGroupCommandOutput; }; }; }