Consider the Configuring and using the Snowball Edge Client topic, a prime example of my impact. This topic was a consistent source of user frustration. My comprehensive audit, aligned with AWS's style and content strategy, revealed:
It's helpful to understand that AWS Snowball Edge is unique: it's a physical device customers rent to move data or run compute instances without an AWS connection. This means users primarily interact with the service through the Snowball Edge Client, not the typical AWS management console.
My solution was to drastically refine the topic. I stripped away redundant command information, ensuring only core client usage and commands not better suited elsewhere remained. I personally walked through the client installation process on various operating systems, updating instructions, and had these validated by the support team.
This targeted approach—reducing noise, improving focus, and ensuring accuracy—across the Snowball Edge documentation led directly to the 30% surge in customer satisfaction.
I have contributed in a number of ways to the Simple Storage Service (S3) service documentation. In the last year, the service has grown from one to three bucket types to store objects. The documentation needed some follow-on work to include descriptions of the new bucket types and to update procedures to account for changes in the console interface to accommodate the new bucket types.
I collaborated with the service team and other members of the writing team to develop the new description of bucket types to include the new bucket types (directory and table buckets) and improve the description of the original bucket type (general purpose buckets). The description of each bucket type now clearly explains why customers would want to choose it, describes how access can be granted, and includes a link for detailed information.
To update procedures to account for the changes in the console interface, I used internal AI tools and a number of prompts to automate the work.
Using AI as a work partner was more thorough and less prone to error than other methods, such as searching the documentation for topics that needed to be updated and updating them manually or through a large-scale change like find-replace.
Quick Links:
While working at AWS, I have primarily supported two services: Snowball Edge and Simple Storage Service (S3). While supporting the Snowball Edge service, I was a solo writer and responsible for maintaining relationships with the product managers and software development managers of the service to be aware of feature releases and other service changes that affect the docs. I also was responsible for managing and triaging docs tickets for the service, scheduling docs work, and reporting on docs activities to the larger customer experience team as well as the service team.
For S3, I am a member of a docs team supporting one of the key AWS services. In this role, I am responsible for producing a wide range of docs, including API references, SDK code examples, and infrastructure-as-code framework. I also participate in the team's on-call rotation for ticket triage.
When I produced these items, I worked as an internal help desk agent and process manager for an international reinsurance corporation. As process manager, I performed technical writing tasks such as contributing information to the knowledgebase used to answer customers' questions and solve their issues, producing work instructions for help desk agents, and providing information to the rest of the company from the information technology department.
I was asked by the editors of *Support World* magazine to write an article about the help desk's experience collecting, analyzing, and acting on customer service metrics we collected as a customer satisfaction survey. I interviewed my manager, coworkers, and managers of other parts of the information technology staff for the article and worked with the publisher's editors on refining it.
The audience of the work instruction was help desk agents. It provides instructions to complete a process as part of a larger effort to solve a networking issue. Information in the knowledgebase would guide them to this process and then direct them to the next part of the effort. I produced it in Microsoft *Word* and from a template I created to automate including information in the first-page header using VBScript.
The selection of pages from a laptop user's guide I produced in the same role. At the time (approximately 2000), the company was issuing laptop computers to some employees in replacement of the desktop computers. These people were expected to use the laptop computers while in the office as well as while working remotely. However, no training in doing so was provided.
We at the help desk became aware of this as calls and questions came to us about laptops and their use. Aware of this trend and with customers' questions and issues recorded by help desk agents, I went to management with the idea to provide an introductory training course and user's guide on the use of laptop computers and working remotely. My idea was approved and I produced the guide, had it printed internally by the corporate print shop, and arranged the details and resources of conducting the courses. Over approximately the next two years, I conducted the courses bi-monthly or as demand dictated, laptop users were provided copies of the guide when their desktop computers were replaced, and help desk metrics showed a decrease in questions about basic laptop use and working remotely.
This sample contains descriptive, procedural, and troubleshooting types of information and artwork describing parts of a laptop. I produced the guide in Microsoft *Word*.
This page demonstrates a simulated REST API for resume data, fetching content from a `resume.json` file. Interact with the buttons below to make "GET" requests and see the JSON responses.
Loading resume data...
All endpoints support HTTP GET requests and return JSON data. There are no PUT or DELETE actions.
Returns the complete resume data.
{
"contactinfo": { ... },
"objective": "...",
"experience": [ ... ],
"education": { ... }
}
Returns personal contact information.
{
"name": {
"first": "Ed",
"last": "Grzetich"
},
"email": "ed.grzetich@gmail.com",
"city": "Fort Wayne",
"state": "IN",
"phonenumber": "260-310-2516",
"url": "https://grzeti.ch"
}
Returns the professional objective/summary.
"Highly experienced Content Designer and Content Strategist with a proven track record of delivering high-quality, user-centered content solutions for diverse audiences..."
Returns an array of work experience entries.
[
{
"company": "AWS",
"title": "Senior Technical Writer Tech III",
"date_start": "2022",
"duties": "Led the full content design lifecycle..."
},
{
"company": "Mastercard",
"title": "Content Analyst II",
"date_start": "2021",
"date_end": "2022",
"duties": "Developed and implemented..."
}
]
Returns the educational details.
{
"school": "Indiana University",
"degree": "Master of Arts"
}