CustomRoutingAcceleratorAttributes.fromJson constructor

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

Implementation

factory CustomRoutingAcceleratorAttributes.fromJson(
    Map<String, dynamic> json) {
  return CustomRoutingAcceleratorAttributes(
    flowLogsEnabled: json['FlowLogsEnabled'] as bool?,
    flowLogsS3Bucket: json['FlowLogsS3Bucket'] as String?,
    flowLogsS3Prefix: json['FlowLogsS3Prefix'] as String?,
  );
}