toJson method
Implementation
Map<String, dynamic> toJson() {
final securityGroupIds = this.securityGroupIds;
final subnetIds = this.subnetIds;
final vpcId = this.vpcId;
return {
if (securityGroupIds != null) 'SecurityGroupIds': securityGroupIds,
if (subnetIds != null) 'SubnetIds': subnetIds,
if (vpcId != null) 'VpcId': vpcId,
};
}