CloudWatchLogsConfig.fromJson constructor
Implementation
factory CloudWatchLogsConfig.fromJson(Map<String, dynamic> json) {
return CloudWatchLogsConfig(
status: (json['status'] as String).toLogsConfigStatusType(),
groupName: json['groupName'] as String?,
streamName: json['streamName'] as String?,
);
}