public static void describeFeatureGroups()

in Java/src/main/java/com/example/customername/FeatureGroupOperations.java [126:131]


    public static void describeFeatureGroups(SageMakerClient sageMakerClient, List < FeatureGroupSummary > featureGroupNames) {

        for(FeatureGroupSummary item: featureGroupNames){
            describeFeatureGroup(sageMakerClient, item.featureGroupName());
        }
    }