EndpointConfiguration.fromJson constructor
Implementation
factory EndpointConfiguration.fromJson(Map<String, dynamic> json) {
return EndpointConfiguration(
types: (json['types'] as List?)
?.whereNotNull()
.map((e) => (e as String).toEndpointType())
.toList(),
vpcEndpointIds: (json['vpcEndpointIds'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
);
}