toJson method
Implementation
Map<String, dynamic> toJson() {
final monitoringOutputs = this.monitoringOutputs;
final kmsKeyId = this.kmsKeyId;
return {
'MonitoringOutputs': monitoringOutputs,
if (kmsKeyId != null) 'KmsKeyId': kmsKeyId,
};
}