hl-CRUD-operations/python/hl_boto_get.py [19:27]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
args_parser = argparse.ArgumentParser()
args_parser.add_argument(
    "data_store_endpoint", 
    help="The HealthLake Data Store Endpoint including the resource path. \
        Example: https://healthlake.<AWS Region>.amazonaws.com/datastore/<FHIR DATA STORE ID/r4/")
args_parser.add_argument(
    "resource_path", 
    help="The resource path. Example: Patient/<PATIENT ID>")
args_parser.add_argument(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hl-CRUD-operations/python/hl_boto_put.py [21:29]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
args_parser = argparse.ArgumentParser()
args_parser.add_argument(
    "data_store_endpoint", 
    help="The HealthLake Data Store Endpoint including the resource path. \
        Example: https://healthlake.<AWS Region>.amazonaws.com/datastore/<FHIR DATA STORE ID/r4/")
args_parser.add_argument(
    "resource_path", 
    help="The resource path. Example: Patient/<PATIENT ID>")
args_parser.add_argument(
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



