Bird
Raised Fist0
Amazon Leadership Principles

Earn Trust - What It Means and What Interviewers Listen For - Amazon LP STAR Walkthrough

Choose your preparation mode4 modes available

Start learning this pattern below

Jump into concepts and practice - no test required

or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Scenario Overview
While working as an SDE2, I noticed a 0.3% webhook drop rate in the Platform team's payment notification service. This service was not my team’s responsibility, no ticket existed, and nobody had asked me to investigate. The drop caused delayed payment confirmations impacting merchant trust and revenue flow. I took initiative to diagnose and fix the issue proactively, collaborating cross-team without formal assignment.

In this scenario, the candidate noticed a 0.3% webhook drop rate in a service outside their team with no ticket or assignment. They took ownership by investigating logs, reproducing the issue, and writing a fix. Transparent communication and consensus building with the Platform team earned trust. The fix reduced drop rate to zero, recovering $8K/week and influencing team standards. Key takeaways: explicit ownership proof by stating scope boundary, using 'I' statements to show individual contribution, and quantifying impact with business translation.

Target: 30s
S
Strong Example
While working as an SDE2, I noticed a 0.3% webhook drop rate in the Platform team's payment notification service. This drop caused delayed payment confirmations impacting merchant trust and revenue flow.
"I noticed""0.3% drop rate""Platform team's service"
Coaching

Keep Situation concise and focused on the problem context and impact. Avoid lengthy system architecture explanations that lose interviewer interest.

Common Mistake

Spending 90 seconds on system architecture before reaching the problem - interviewer loses interest.

Target: 20s
T
Strong Example
This service was not my team’s responsibility, no ticket existed, and nobody had asked me to investigate. I needed to identify the root cause and fix the webhook drop proactively.
"not my team""no ticket""nobody had asked"
Coaching

Explicitly state scope boundary and lack of assignment to prove ownership. This prevents interviewer from assuming it was assigned work.

Common Mistake

Jumping to investigation without stating scope boundary; ownership proof absent.

Target: 90s
A
Strong Example
I pulled the webhook delivery logs to analyze failure patterns. I traced the failure to a race condition in the retry logic. I reproduced the issue locally to confirm the root cause. I wrote a minimal fix to serialize retries properly. I added a dead letter queue alert to catch future drops early. I communicated transparently with the Platform team about my findings and proposed fix. I submitted a ready-to-merge PR to their repo and built consensus by addressing their feedback promptly.
"I pulled""I traced""I reproduced""I wrote""I added""I communicated transparently""I submitted""I built consensus"
Coaching

Use 'I' for every sentence to clearly show individual contribution. Avoid 'we' to prevent obscuring ownership. Include communication and consensus building as part of Earn Trust.

Common Mistake

Using 'we' language such as 'we figured out the root cause together' which hides individual contribution.

Target: 20s
R
Strong Example
The webhook drop rate dropped from 0.3% to zero. The post-mortem estimated this fix recovered $8K per week in merchant revenue. The Platform team adopted my dead letter queue alert pattern as a standard in their webhook template, improving overall system reliability.
"0.3% drop rate to zero""$8K recovered per week""adopted my pattern as standard"
Coaching

Include metric delta, business impact, and second-order effect to demonstrate full impact.

Common Mistake

Ending with vague statements like 'team was happy' without quantification.

Target: 15s
Strong Example
"proactively monitoring""shared alerting dashboard""lack of shared SLO""organizational gap"
Coaching

Provide specific, story-related learning or systemic insight rather than generic communication lessons.

Common Mistake

Generic reflection like 'I learned communication is important' which tells interviewer nothing specific.

SDE2 Reflection
In retrospect, I realized that proactively monitoring cross-team webhook health is critical. I proposed a shared alerting dashboard to improve visibility and reduce future blind spots.
Senior Reflection
The real root cause was the lack of a shared webhook reliability SLO across teams, creating zero shared visibility into payment health. Addressing this organizational gap is key to systemic reliability improvements.
How did you ensure the Platform team trusted your fix since it wasn’t your team’s code?
Probes: Cross-team trust building and communication
Weak

"I did escalate it - I sent them a Slack message and they handled it."

Sending Slack = routing responsibility, not ownership. Confirms candidate handed off problem without owning solution.

Strong

"I flagged the issue to their tech lead for visibility but brought a complete fix with tests and monitoring. I addressed their feedback promptly to build consensus and trust. Escalating without a solution adds weeks of delay at their sprint velocity."

"I brought a solution, not just a problem."
What if the Platform team had rejected your fix? How would you handle that?
Probes: Handling rejection and persistence in cross-team collaboration
Weak

"I would just escalate to my manager to push it through."

Passing responsibility upward shows lack of ownership and inability to earn trust directly.

Strong

"I would engage directly with their engineers to understand concerns, iterate on the fix, and transparently communicate trade-offs until we reached consensus. If needed, I’d propose a joint design review to align on the best approach."

"I engaged directly and iterated to build consensus."
Why didn’t you wait for a ticket or assignment before acting?
Probes: Proactive ownership and bias for action
Weak

"I didn’t want to wait because I thought it was urgent."

Vague justification without ownership or impact framing; sounds like impatience, not ownership.

Strong

"I noticed the drop was silently impacting revenue and merchant trust. Since no one had ownership or ticket, I took initiative to fix it proactively to prevent further loss and build cross-team trust."

"I acted without being asked to prevent ongoing impact."
How did you measure the impact of your fix quantitatively?
Probes: Data-driven impact measurement
Weak

"The drop rate improved and the team was happy."

No metric delta or business translation; vague and unconvincing.

Strong

"I tracked webhook delivery logs before and after fix, confirming drop rate went from 0.3% to zero. The post-mortem estimated this recovered $8K/week in merchant revenue, showing clear business impact."

"I quantified impact with metrics and business translation."
Weak Answer
I noticed the webhook drop and escalated it to the Platform team by sending a Slack message. They handled the fix. After that, the drop rate improved and the team was happy with the result.
  • "escalated it by sending a Slack message" shows routing, not ownership
  • "They handled the fix" hides candidate contribution
  • "The drop rate improved" lacks quantification
  • "team was happy" is vague impact
  • No explicit scope boundary or proactive action stated
Bar Raiser ThinksSounds competent but fails on ownership and impact; leaning No Hire for Earn Trust.
Which phrase best demonstrates ownership in the Action step?
Using 'I' statements clearly shows individual ownership and contribution, which is critical for Earn Trust at Amazon. 'We' or manager involvement dilutes ownership.
What is the top disqualifier phrase in Earn Trust stories at Amazon?
This phrase signals lack of ownership and initiative, as the candidate only acted due to manager prompting, which is a disqualifier for Earn Trust.
Which result statement best meets Amazon’s bar for impact?
Amazon expects metric delta, business translation, and second-order effect in results to fully demonstrate impact and Earn Trust.
Bias for Action

Lead with the urgency and proactive initiative: I noticed silent revenue loss and acted without assignment to fix it quickly.

Emphasize

Speed of diagnosis and fix, acting without waiting for tickets or assignment.

Downplay

Lengthy consensus building or organizational insights.

Dive Deep

Focus on the technical root cause analysis: I traced logs, reproduced the race condition, and wrote a minimal fix.

Emphasize

Technical investigation steps and reproducing the bug locally.

Downplay

Cross-team communication details.

Earn Trust

Highlight transparent communication and consensus building: I communicated findings openly and incorporated feedback to build trust.

Emphasize

Transparent communication, admitting complexity, and building consensus.

Downplay

Purely technical details without collaboration.

SDE 1

Focus on technical fix and basic ownership: noticing issue, investigating logs, fixing bug, and informing team.

Reflection: I learned how to debug cross-service issues and the importance of monitoring alerts.
Bar Basic ownership and technical competence with some communication.
Keep to 2 minutes.
Senior SDE

Add organizational thinking and trade-offs: explain systemic root cause beyond code, cross-team SLO gaps, and propose process improvements.

Reflection: The root cause was lack of shared webhook reliability SLO across teams, causing zero shared visibility into payment health.
Bar Clear articulation of trade-offs, systemic insight, and leadership in cross-team collaboration.
2.5-3 minutes.

Practice

(1/5)
1. During a project, a team member openly admitted a mistake that caused a delay and immediately proposed a plan to fix it while keeping stakeholders informed. Which LP does this primarily demonstrate?
easy
A. Bias for Action
B. Earn Trust
C. Deliver Results
D. Dive Deep

Solution

  1. Step 1: Identify the behavior -- admitting mistakes openly and proposing fixes.
  2. Step 2: Recognize the leadership principle -- this builds credibility and transparency, key to Earn Trust.
  3. Step 3: Differentiate from similar LPs -- Bias for Action focuses on speed, Deliver Results on outcomes, Dive Deep on analysis; none emphasize openness and trust as directly.
Hint: Admitting mistakes openly signals Earn Trust.
Common Mistakes:
2. I was asked by my manager to investigate a customer complaint about delayed shipments. I worked with the team, and we improved the process. The team was happy with the changes. What is the PRIMARY weakness in this answer?
easy
A. Slightly vague action steps
B. Weak reflection on lessons learned
C. No second-order effect described
D. Manager-assigned initiation -- no self-start

Solution

  1. Step 1: Identify who initiated the action -- the candidate states 'I was asked by my manager,' indicating no self-initiation.
  2. Step 2: Recognize this as a fatal flaw for Earn Trust -- ownership and proactivity are critical.
  3. Step 3: Differentiate from secondary issues -- weak reflection and vague actions are fixable but not primary.
Hint: Manager asks = ownership signal destroyed.
Common Mistakes:
3. Which LP/signal does this sentence primarily demonstrate? "I proactively reached out to the client to clarify their concerns before they escalated the issue."
medium
A. Earn Trust
B. Customer Obsession
C. Bias for Action
D. Dive Deep

Solution

  1. Step 1: Identify the behavior -- proactive communication to build confidence.
  2. Step 2: Recognize this builds credibility and trust with the client, core to Earn Trust.
  3. Step 3: Differentiate from Customer Obsession -- which focuses on customer needs but not necessarily trust-building actions.
Hint: Proactive client outreach signals Earn Trust.
Common Mistakes:
4. What does the phrase "My manager asked me to handle the client issue" signal to the interviewer?
medium
A. Shows good communication with management
B. Reflects strong team collaboration
C. Indicates task assignment -- ownership signal destroyed
D. Demonstrates effective delegation

Solution

  1. Step 1: Identify the phrase -- 'My manager asked me' implies no self-initiation.
  2. Step 2: Recognize this destroys the ownership signal critical for Earn Trust.
  3. Step 3: Differentiate from other plausible but incorrect interpretations -- communication or collaboration are secondary and do not address ownership.
Hint: Manager asks = ownership lost, trust weakened.
Common Mistakes:
5. In response to a recurring quality issue, I gathered data, identified root causes, and proposed solutions. We collectively decided on the best approach, and I led the implementation, resulting in a 30% reduction in defects. I also shared the learnings with other teams to prevent similar problems. Which element of this answer is the disqualifier?
hard
A. We collectively decided on the best approach
B. I led the implementation
C. Resulted in a 30% reduction in defects
D. Shared learnings with other teams

Solution

  1. Step 1: Identify who initiated decisions -- 'We collectively decided' dilutes individual ownership.
  2. Step 2: Recognize this subtle disqualifier undermines Earn Trust by hiding personal accountability.
  3. Step 3: Differentiate from strong elements -- leading implementation, quantifiable results, and knowledge sharing all support Earn Trust.
Hint: "We collectively decided" hides ownership, subtle disqualifier.
Common Mistakes: