Skip to content
View james-jory's full-sized avatar
  • AWS

Highlights

  • Pro
Block or Report

Block or report james-jory

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. segment-personalize-workshop segment-personalize-workshop Public

    AWS workshop demonstrating how to integrate Segment with Amazon Personalize to build and deliver personalized customer experiences.

    Python 37 16

  2. retail-demo-store retail-demo-store Public

    Forked from aws-samples/retail-demo-store

    AWS Retail Demo Store is a sample retail web application and workshop platform demonstrating how AWS infrastructure and services can be used to build compelling customer experiences for eCommerce, …

    Jupyter Notebook 2

  3. Delete AWS log groups using an optio... Delete AWS log groups using an optional filter expression
    1
    #!/bin/bash
    2
    
                  
    3
    # Deletes AWS log groups based on a filter expression. The optional --dry-run 
    4
    # argument can be used to test filter expressions before deleting.
    5
    
                  
  4. Deletes an Amazon Personalize datase... Deletes an Amazon Personalize dataset group, including all of its associated resources
    1
    #!/usr/bin/env python
    2
    # Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
    3
    # SPDX-License-Identifier: MIT-0
    4
    
                  
    5
    """
  5. Calculates total training hours cost... Calculates total training hours cost (for all time) for one or more Amazon Personalize solutions
    1
    '''
    2
    Calculates total training hours cost (for all time) for one or more Amazon Personalize solutions.
    3
    4
    Total training hours and costs across AWS regions as well as grand totals will be printed as output.
    5