AwAssumeRoleAuthenticationDetailsProperties type

AWS cloud account connector based assume role, the role enables delegating access to your AWS resources. The role is composed of role Amazon Resource Name (ARN) and external ID. For more details, refer to Creating a Role to Delegate Permissions to an IAM User (write only)

type AwAssumeRoleAuthenticationDetailsProperties =
  AuthenticationDetailsProperties & {
    accountId?: string
    authenticationType: "awsAssumeRole"
    awsAssumeRoleArn: string
    awsExternalId: string
  }