ShutdownEventConfiguration.fromJson constructor

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

Implementation

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