AwsEc2SecurityGroupUserIdGroupPair.fromJson constructor

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

Implementation

factory AwsEc2SecurityGroupUserIdGroupPair.fromJson(
    Map<String, dynamic> json) {
  return AwsEc2SecurityGroupUserIdGroupPair(
    groupId: json['GroupId'] as String?,
    groupName: json['GroupName'] as String?,
    peeringStatus: json['PeeringStatus'] as String?,
    userId: json['UserId'] as String?,
    vpcId: json['VpcId'] as String?,
    vpcPeeringConnectionId: json['VpcPeeringConnectionId'] as String?,
  );
}