ShutdownEventConfiguration.fromJson constructor
Implementation
factory ShutdownEventConfiguration.fromJson(Map<String, dynamic> json) {
return ShutdownEventConfiguration(
delayUntilElbConnectionsDrained:
json['DelayUntilElbConnectionsDrained'] as bool?,
executionTimeout: json['ExecutionTimeout'] as int?,
);
}