feat: optional policy inputs when assuming role

This commit is contained in:
peterwoodworth
2023-06-21 15:08:37 -07:00
parent 2cee35f9a9
commit 10024331f6
2 changed files with 13 additions and 1 deletions
+2
View File
@@ -9,5 +9,7 @@ export interface assumeRoleParams {
roleExternalId?: string;
webIdentityTokenFile?: string;
webIdentityToken?: string;
inlineSessionPolicy?: string;
managedSessionPolicies?: any[];
}
export declare function assumeRole(params: assumeRoleParams): Promise<import("@aws-sdk/client-sts").AssumeRoleCommandOutput>;