CloudwatchAlarmAction.fromJson constructor
Implementation
factory CloudwatchAlarmAction.fromJson(Map<String, dynamic> json) {
return CloudwatchAlarmAction(
alarmName: json['alarmName'] as String,
roleArn: json['roleArn'] as String,
stateReason: json['stateReason'] as String,
stateValue: json['stateValue'] as String,
);
}