NetworkFirewallMissingExpectedRTViolation.fromJson constructor
NetworkFirewallMissingExpectedRTViolation.fromJson(
- Map<String, dynamic> json
)
Implementation
factory NetworkFirewallMissingExpectedRTViolation.fromJson(
Map<String, dynamic> json) {
return NetworkFirewallMissingExpectedRTViolation(
availabilityZone: json['AvailabilityZone'] as String?,
currentRouteTable: json['CurrentRouteTable'] as String?,
expectedRouteTable: json['ExpectedRouteTable'] as String?,
vpc: json['VPC'] as String?,
violationTarget: json['ViolationTarget'] as String?,
);
}