DescribeInboundCrossClusterSearchConnectionsResponse.fromJson constructor
DescribeInboundCrossClusterSearchConnectionsResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory DescribeInboundCrossClusterSearchConnectionsResponse.fromJson(
Map<String, dynamic> json) {
return DescribeInboundCrossClusterSearchConnectionsResponse(
crossClusterSearchConnections:
(json['CrossClusterSearchConnections'] as List?)
?.whereNotNull()
.map((e) => InboundCrossClusterSearchConnection.fromJson(
e as Map<String, dynamic>))
.toList(),
nextToken: json['NextToken'] as String?,
);
}