CreateFeatureGroupResponse.fromJson constructor

CreateFeatureGroupResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CreateFeatureGroupResponse.fromJson(Map<String, dynamic> json) {
  return CreateFeatureGroupResponse(
    featureGroupArn: json['FeatureGroupArn'] as String,
  );
}