toJson method
Implementation
Map<String, dynamic> toJson() {
final logDestinationConfigs = this.logDestinationConfigs;
final resourceArn = this.resourceArn;
final redactedFields = this.redactedFields;
return {
'LogDestinationConfigs': logDestinationConfigs,
'ResourceArn': resourceArn,
if (redactedFields != null) 'RedactedFields': redactedFields,
};
}