toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final launchTemplateSpecification = this.launchTemplateSpecification;
  final overrides = this.overrides;
  return {
    if (launchTemplateSpecification != null)
      'LaunchTemplateSpecification': launchTemplateSpecification,
    if (overrides != null) 'Overrides': overrides,
  };
}