AssociateTargetsWithJobResponse.fromJson constructor

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

Implementation

factory AssociateTargetsWithJobResponse.fromJson(Map<String, dynamic> json) {
  return AssociateTargetsWithJobResponse(
    description: json['description'] as String?,
    jobArn: json['jobArn'] as String?,
    jobId: json['jobId'] as String?,
  );
}