S3LogsConfig.fromJson constructor
Implementation
factory S3LogsConfig.fromJson(Map<String, dynamic> json) {
return S3LogsConfig(
status: (json['status'] as String).toLogsConfigStatusType(),
encryptionDisabled: json['encryptionDisabled'] as bool?,
location: json['location'] as String?,
);
}