Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@

def hello_medical_imaging(medical_imaging_client):
"""
Use the AWS SDK for Python (Boto3) to create an Amazon HealthImaging
Use the AWS SDK for Python (Boto3) to create an AWS HealthImaging
client and list the data stores in your account.
This example uses the default settings specified in your shared credentials
and config files.

:param medical_imaging_client: A Boto3 Amazon HealthImaging Client object.
:param medical_imaging_client: A Boto3 AWS HealthImaging Client object.
"""
print("Hello, Amazon Health Imaging! Let's list some of your data stores:\n")
try:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@


class MedicalImagingWrapper:
"""Encapsulates Amazon HealthImaging functionality."""
"""Encapsulates AWS HealthImaging functionality."""

def __init__(self, medical_imaging_client, s3_client):
"""
Expand Down
Loading