lambda/java/src/main/java/com/amazonaws/workshop/WorkshopUtils.java [14:22]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            TableSchema.builder(PodcastEpisode.class)
                    .newItemSupplier(PodcastEpisode::new)
                    .addAttribute(String.class, a -> a.name("id")
                            .getter(PodcastEpisode::getId)
                            .setter(PodcastEpisode::setId)
                            .tags(primaryPartitionKey()))
                    .addAttribute(String.class, a -> a.name("title")
                            .getter(PodcastEpisode::getTitle)
                            .setter(PodcastEpisode::setTitle))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lambda/java/src/main/java/com/amazonaws/workshop/WorkshopUtils.java [35:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            TableSchema.builder(PodcastEpisode.class)
                    .newItemSupplier(PodcastEpisode::new)
                    .addAttribute(String.class, a -> a.name("id")
                            .getter(PodcastEpisode::getId)
                            .setter(PodcastEpisode::setId)
                            .tags(primaryPartitionKey()))
                    .addAttribute(String.class, a -> a.name("title")
                            .getter(PodcastEpisode::getTitle)
                            .setter(PodcastEpisode::setTitle))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



