toJson method

Map<String, dynamic> toJson()

Implementation

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