VpcConnectionProperties.fromJson constructor

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

Implementation

factory VpcConnectionProperties.fromJson(Map<String, dynamic> json) {
  return VpcConnectionProperties(
    vpcConnectionArn: json['VpcConnectionArn'] as String,
  );
}