CopyAction.fromJson constructor
Implementation
factory CopyAction.fromJson(Map<String, dynamic> json) {
  return CopyAction(
    destinationBackupVaultArn: json['DestinationBackupVaultArn'] as String,
    lifecycle: json['Lifecycle'] != null
        ? Lifecycle.fromJson(json['Lifecycle'] as Map<String, dynamic>)
        : null,
  );
}