IotEventsDestinationConfiguration.fromJson constructor

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

Implementation

factory IotEventsDestinationConfiguration.fromJson(
    Map<String, dynamic> json) {
  return IotEventsDestinationConfiguration(
    inputName: json['inputName'] as String,
    roleArn: json['roleArn'] as String,
  );
}