toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final autoScalingGroups = this.autoScalingGroups;
  final ec2TagSet = this.ec2TagSet;
  final tagFilters = this.tagFilters;
  return {
    if (autoScalingGroups != null) 'autoScalingGroups': autoScalingGroups,
    if (ec2TagSet != null) 'ec2TagSet': ec2TagSet,
    if (tagFilters != null) 'tagFilters': tagFilters,
  };
}