Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ruifeng-zheng-sp committed Oct 7, 2024
1 parent d682271 commit 245a67f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/connector-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ export interface Context {
assumeAwsRole(assumeAwsRoleRequest: AssumeAwsRoleRequest): Promise<AssumeAwsRoleResponse>;
}
export class AssumeAwsRoleRequest {
arnRole: string;
roleArn: string;
externalId : string;
roleSessionName :string;
constructor(externalArnRole: string, externalId: string, roleSessionName: string) {
this.arnRole = externalArnRole;
constructor(roleArn: string, externalId: string, roleSessionName: string) {
this.roleArn = roleArn;
this.externalId = externalId;
this.roleSessionName = roleSessionName;
}
Expand Down

0 comments on commit 245a67f

Please sign in to comment.