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 { ModifyDefaultCreditSpecificationRequest, ModifyDefaultCreditSpecificationResult } from "../models/models_6"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link ModifyDefaultCreditSpecificationCommand}. */ export interface ModifyDefaultCreditSpecificationCommandInput extends ModifyDefaultCreditSpecificationRequest { } /** * @public * * The output of {@link ModifyDefaultCreditSpecificationCommand}. */ export interface ModifyDefaultCreditSpecificationCommandOutput extends ModifyDefaultCreditSpecificationResult, __MetadataBearer { } declare const ModifyDefaultCreditSpecificationCommand_base: { new (input: ModifyDefaultCreditSpecificationCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: ModifyDefaultCreditSpecificationCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Modifies the default credit option for CPU usage of burstable performance instances. * The default credit option is set at the account level per Amazon Web Services Region, and * is specified per instance family. All new burstable performance instances in the account * launch using the default credit option.

*

* ModifyDefaultCreditSpecification is an asynchronous operation, which * works at an Amazon Web Services Region level and modifies the credit option for each * Availability Zone. All zones in a Region are updated within five minutes. But if * instances are launched during this operation, they might not get the new credit option * until the zone is updated. To verify whether the update has occurred, you can call * GetDefaultCreditSpecification and check * DefaultCreditSpecification for updates.

*

For more information, see Burstable * performance instances in the Amazon EC2 User Guide.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { EC2Client, ModifyDefaultCreditSpecificationCommand } from "@aws-sdk/client-ec2"; // ES Modules import * // const { EC2Client, ModifyDefaultCreditSpecificationCommand } = 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 = { // ModifyDefaultCreditSpecificationRequest * DryRun: true || false, * InstanceFamily: "t2" || "t3" || "t3a" || "t4g", // required * CpuCredits: "STRING_VALUE", // required * }; * const command = new ModifyDefaultCreditSpecificationCommand(input); * const response = await client.send(command); * // { // ModifyDefaultCreditSpecificationResult * // InstanceFamilyCreditSpecification: { // InstanceFamilyCreditSpecification * // InstanceFamily: "t2" || "t3" || "t3a" || "t4g", * // CpuCredits: "STRING_VALUE", * // }, * // }; * * ``` * * @param ModifyDefaultCreditSpecificationCommandInput - {@link ModifyDefaultCreditSpecificationCommandInput} * @returns {@link ModifyDefaultCreditSpecificationCommandOutput} * @see {@link ModifyDefaultCreditSpecificationCommandInput} for command's `input` shape. * @see {@link ModifyDefaultCreditSpecificationCommandOutput} 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 ModifyDefaultCreditSpecificationCommand extends ModifyDefaultCreditSpecificationCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ModifyDefaultCreditSpecificationRequest; output: ModifyDefaultCreditSpecificationResult; }; sdk: { input: ModifyDefaultCreditSpecificationCommandInput; output: ModifyDefaultCreditSpecificationCommandOutput; }; }; }