import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DisassociateEnvironmentOperationsRoleMessage } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DisassociateEnvironmentOperationsRoleCommand}. */ export interface DisassociateEnvironmentOperationsRoleCommandInput extends DisassociateEnvironmentOperationsRoleMessage { } /** * @public * * The output of {@link DisassociateEnvironmentOperationsRoleCommand}. */ export interface DisassociateEnvironmentOperationsRoleCommandOutput extends __MetadataBearer { } declare const DisassociateEnvironmentOperationsRoleCommand_base: { new (input: DisassociateEnvironmentOperationsRoleCommandInput): import("@smithy/core/client").CommandImpl; new (input: DisassociateEnvironmentOperationsRoleCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** * *

The operations role feature of Elastic Beanstalk is in beta release and is subject to change.

*
*

Disassociate the operations role from an environment. After this call is made, Elastic Beanstalk uses the caller's permissions for permissions to downstream * services during subsequent calls acting on this environment.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { ElasticBeanstalkClient, DisassociateEnvironmentOperationsRoleCommand } from "@aws-sdk/client-elastic-beanstalk"; // ES Modules import * // const { ElasticBeanstalkClient, DisassociateEnvironmentOperationsRoleCommand } = require("@aws-sdk/client-elastic-beanstalk"); // CommonJS import * // import type { ElasticBeanstalkClientConfig } from "@aws-sdk/client-elastic-beanstalk"; * const config = {}; // type is ElasticBeanstalkClientConfig * const client = new ElasticBeanstalkClient(config); * const input = { // DisassociateEnvironmentOperationsRoleMessage * EnvironmentName: "STRING_VALUE", // required * }; * const command = new DisassociateEnvironmentOperationsRoleCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param DisassociateEnvironmentOperationsRoleCommandInput - {@link DisassociateEnvironmentOperationsRoleCommandInput} * @returns {@link DisassociateEnvironmentOperationsRoleCommandOutput} * @see {@link DisassociateEnvironmentOperationsRoleCommandInput} for command's `input` shape. * @see {@link DisassociateEnvironmentOperationsRoleCommandOutput} for command's `response` shape. * @see {@link ElasticBeanstalkClientResolvedConfig | config} for ElasticBeanstalkClient's `config` shape. * * @throws {@link InsufficientPrivilegesException} (client fault) *

The specified account does not have sufficient privileges for one or more Amazon Web Services services.

* * @throws {@link ElasticBeanstalkSyntheticServiceException} *

Base exception class for all service exceptions from ElasticBeanstalk service.

* * * @public */ export declare class DisassociateEnvironmentOperationsRoleCommand extends DisassociateEnvironmentOperationsRoleCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DisassociateEnvironmentOperationsRoleMessage; output: {}; }; sdk: { input: DisassociateEnvironmentOperationsRoleCommandInput; output: DisassociateEnvironmentOperationsRoleCommandOutput; }; }; }