AutoMLOutputDataConfig.fromJson constructor

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

Implementation

factory AutoMLOutputDataConfig.fromJson(Map<String, dynamic> json) {
  return AutoMLOutputDataConfig(
    s3OutputPath: json['S3OutputPath'] as String,
    kmsKeyId: json['KmsKeyId'] as String?,
  );
}