mirror of
https://github.com/aws-actions/configure-aws-credentials.git
synced 2026-06-08 22:47:08 +00:00
17 lines
607 B
TypeScript
Generated
17 lines
607 B
TypeScript
Generated
import type { CredentialsClient } from './CredentialsClient';
|
|
export interface assumeRoleParams {
|
|
credentialsClient: CredentialsClient;
|
|
roleToAssume: string;
|
|
roleDuration: number;
|
|
roleSessionName: string;
|
|
roleSkipSessionTagging?: boolean;
|
|
sourceAccountId?: string;
|
|
roleExternalId?: string;
|
|
webIdentityTokenFile?: string;
|
|
webIdentityToken?: string;
|
|
inlineSessionPolicy?: string;
|
|
managedSessionPolicies?: {
|
|
arn: string;
|
|
}[];
|
|
}
|
|
export declare function assumeRole(params: assumeRoleParams): Promise<import("@aws-sdk/client-sts").AssumeRoleCommandOutput>;
|