S3LogsConfig.fromJson constructor

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

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?,
  );
}