PutLoggingConfigurationResponse.fromJson constructor
Implementation
factory PutLoggingConfigurationResponse.fromJson(Map<String, dynamic> json) {
return PutLoggingConfigurationResponse(
loggingConfiguration: json['LoggingConfiguration'] != null
? LoggingConfiguration.fromJson(
json['LoggingConfiguration'] as Map<String, dynamic>)
: null,
);
}