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