CancelMaintenanceWindowExecutionResult.fromJson constructor

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

Implementation

factory CancelMaintenanceWindowExecutionResult.fromJson(
    Map<String, dynamic> json) {
  return CancelMaintenanceWindowExecutionResult(
    windowExecutionId: json['WindowExecutionId'] as String?,
  );
}